Improved debug page, Added snowflake easter-egg, Added more ARM & ARM64 variants to the strings
Update footer.php, head.php, and 14 more files...
This commit is contained in:
@@ -20,4 +20,24 @@ include_once 'commons/langs.php';
|
||||
<img id="logo-footer" src="/resources/NibblePoker/images/logos/v2_full_unshaded_original.svg"
|
||||
alt="<?php echo(localize("footer.alt.logo")); ?>" draggable="false">
|
||||
</a>
|
||||
</footer>
|
||||
</footer>
|
||||
<?php
|
||||
if($enable_waffle_iron) {
|
||||
$emojis = ['🍟', '🧇', '🥔'];
|
||||
shuffle($emojis);
|
||||
echo('<div class="snowflakes" aria-hidden="true">');
|
||||
for($i_waffle = 0; $i_waffle < 12; $i_waffle++) {
|
||||
echo('<div class="snowflake"><div class="inner">' . ($emojis)[$i_waffle % 3] . '</div></div>');
|
||||
}
|
||||
echo('</div>');
|
||||
}
|
||||
if($enable_bouneschlupp_mode) {
|
||||
|
||||
}
|
||||
|
||||
// TODO: Implement those
|
||||
//if($enable_gallery) {
|
||||
// echo('<div id="modal-bkgd" hidden></div>');
|
||||
// echo('<div id="modal-container" hidden></div>');
|
||||
//}
|
||||
?>
|
Reference in New Issue
Block a user