Files
nodejs-website/pages/freedom.php

70 lines
1.6 KiB
PHP
Executable File

#!/usr/bin/php
<!--
Page to provide links for Freedom eBook.
-->
<?php
$GLOBALS["ADVISORY"] = false;
if (!isset($GLOBALS["HEADER_TITLE"])) {
$GLOBALS["HEADER_TITLE"] = "Freedom";
}
include "helpers/body_open.php";
?>
<div class="row">
<h1 class="col-12 title">Voluntary Sovereignty</h1>
</div>
<div class="row">
<div class="col-12 header">
<p>
Short eBook and printable booklet succintly covering anarchy,
Voluntaryism, and Sovereignty.
</p>
<p>
Also covers topics such as
police encounters and provices resources for further education.
</p>
</div>
</div>
<div class="row">
<div class="col-12 text">
<p>
Click the link below to download the 4-page PDF:
</p>
<ul class="indent"><li>
<a href="https://git.hyperling.com/me/ebook-freedom-flyer/releases/download/v1.0.0/VoluntarySovereignty.pdf">
[PDF] | eBook Download
</a>
</li></ul>
<p>
There is also a printable booklet version which can be found here:
</p>
<ul class="indent">
<li>
<a href="https://git.hyperling.com/me/ebook-freedom-flyer/releases/download/v1.0.0/VoluntarySovereignty-book.pdf"
target="_blank" rel="noopener noreferrer"
>
[PDF] | Booklet Download
</a>
</li>
</ul>
<p>
Curious how I made it? Check out its Git repository:
</p>
<ul class="indent"><li>
<a href="https://git.hyperling.com/me/ebook-freedom-flyer"
target="_blank" rel="noopener noreferrer"
>
[CODE] | Source Code
</a>
</li></ul>
</div>
</div>
<?php
include "helpers/body_close.php";
?>