Files
nodejs-website/pages/helpers/advisory.php

22 lines
500 B
PHP
Executable File

#!/usr/bin/php
<?php
$show_advisory = true;
if ($show_advisory) echo '
<div class="row">
<p><!-- Gap Area --></p>
</div>
<div class="row center title" id="advisory">
<h2 class="col-12 title"><i class="purple">Latest Announcement</i></h2>
<a href="/freedom/">
<div class="col-12 text">
<u class="orange">2025-09-28</u>
<br>
I wrote another short free eBook, "Voluntary Sovereignty", check it out
<u class="orange">here</u>!
</div>
</a>
</div>
';
?>