68 lines
2.4 KiB
PHP
68 lines
2.4 KiB
PHP
|
<?php
|
||
|
require_once __DIR__ . '/../_v4/includes.php';
|
||
|
|
||
|
define('FWH_STYLE', FWH_2020);
|
||
|
|
||
|
echo html_doctype();
|
||
|
?>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<?=html_charset();?>
|
||
|
<title>Nintendo Friend Codes</title>
|
||
|
<?=html_stylesheet('2020.css');?>
|
||
|
<?=html_meta();?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="wrapper">
|
||
|
<?=html_sidebar();?>
|
||
|
<div class="nintendo">
|
||
|
<div class="nintendo-notice">
|
||
|
<p>List of my Nintendo friend codes so I don't have to dig them up every time. Please use these codes only if we know each other.</p>
|
||
|
<p>If you're adding me on 3DS you'll have to send me your friend code as well, use the contact links in the sidebar to do so.</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="nintendo-fc nintendo-fc-switch" id="switch">
|
||
|
<div class="nintendo-fc-title">
|
||
|
<h2>Nintendo Switch</h2>
|
||
|
</div>
|
||
|
<div class="nintendo-fc-code">
|
||
|
<code>SW-7446-8163-4902</code>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="nintendo-fc nintendo-fc-3ds" id="n3ds">
|
||
|
<div class="nintendo-fc-title">
|
||
|
<h2>Nintendo 3DS</h2>
|
||
|
</div>
|
||
|
<div class="nintendo-fc-code">
|
||
|
<code>4013-0352-0648</code>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="nintendo-fc nintendo-fc-wiiu" id="wiiu">
|
||
|
<div class="nintendo-fc-title">
|
||
|
<h2>Nintendo Wii U</h2>
|
||
|
</div>
|
||
|
<div class="nintendo-fc-code">
|
||
|
<code>flashwave0</code>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="nintendo-notice">
|
||
|
<p>Below are friend codes for Nintendo WFC revival services, these will only be useful with modified consoles.</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="nintendo-fc nintendo-fc-wii" id="mkwii">
|
||
|
<div class="nintendo-fc-title">
|
||
|
<h2>Mario Kart Wii (Wiimmfi)</h2>
|
||
|
</div>
|
||
|
<div class="nintendo-fc-code">
|
||
|
<code>5202-9182-8404</code>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?=html_script('/assets/lastfm2020.js');?>
|
||
|
</body>
|
||
|
</html>
|