71 lines
1.6 KiB
PHP
Executable File
71 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 provides 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/latest/VoluntarySovereignty.pdf"
|
|
target="_blank" rel="noopener noreferrer">
|
|
[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/latest/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";
|
|
?>
|