personal-website/docs/common/footer.php
2024-07-18 17:41:17 +02:00

101 lines
4.2 KiB
PHP
Executable file

<?php
$quote_arr = [
"On the planet Earth, man had always assumed that he was more intelligent
than dolphins because he had achieved so much - the wheel, New York,
wars and so on - whilst all the dolphins had ever done was muck about in
the water having a good time. But conversely, the dolphins had always
believed that they were far more intelligent than man - for precisely
the same reasons.",
"Science flies you to the moon. Religion flies you into buildings.",
"The only way to deal with an unfree world is to become so absolutely
free that your very existence is an act of rebellion.",
"IN THIS HOUSE, WE BELIEVE:<br>
AN EVIL BLACK SCIENTIST<br>
BY THE NAME OF YAKUB<br>
LIVING ON THE ISLE OF PATMOS<br>
CREATED THE WHITE RACE<br>
SIX THOUSAND YEARS AGO<br>
BY MEANS OF EUGENICS",
"Atheism is what happens when you read the bible. Christianity is what
happens when somebody else reads it for you.",
"Everybody lies.",
"You use the installer only once every few years, thus it should not
influence your choice of distribution.",
"Power tends to corrupt, and absolute power corrupts absolutely.",
"Arguing that you don't care about the right to privacy because you have
nothing to hide is no different than saying you don't care about free
speech because you have nothing to say.",
"If someone was looking through your window with binoculars,
no matter what you're doing, you'd draw the blinds.",
"It's not that I have something to hide...
I've got nothing I want you to see.",
"Your scientists were so preoccupied with whether or not they could,
they didn't stop to think if they should.",
];
$quote_author_arr = [
"Douglas Adams",
"Victor Stenger",
"Albert Camus",
"The eternal truth of the universe",
"Bertrand Russel",
"House M.D.",
"Ales Zelinka (paraphrased)",
"John Dalberg-Acton",
"Edward Snowden",
"SomeOrdinaryGamers",
"Anon (film)",
"Ian Malcolm (Jurassic Park)",
];
?>
<div id="footer">
<?php
$quote_index = array_rand($quote_arr);
printf("<div class=\"quote\">&quot;%s&quot;</div>
<div class=\"quote-author\">- %s</div>",
$quote_arr[$quote_index],
$quote_author_arr[$quote_index]
);
?>
<hr>
<p>
Although I try to know and store as little information about you as possible, I do sometimes store some, you can click <a href="http://www.zdenekborovec-dev.cz/privacy">here</a> to learn more. If you have any privacy and/or security concerns, feel free to e-mail me at &lt;zdenda&nbsp;[DOT]&nbsp;borovec&nbsp;[AT]&nbsp;gmail&nbsp;[DOT]&nbsp;com&gt;
</p>
<p>
If you want to audit the site and/or edit and use it for your own purposes, most of the source code should be available on my <a href="https://git.zdenekborovec.cz/Zeftax/personal-website">forgejo instance</a> under the <a href="https://github.com/non-ai-licenses/non-ai-licenses/blob/main/NON-AI-BSD3">NON-AI-BSD3</a> license.
</p>
<p>
&#169; 2023 - <?php echo date("Y"); ?> Zdenek Borovec. Content on this site is original production shared under <a href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">Creative Commons Attribution Share Alike license</a>, unless stated otherwise.
</p>
<p style="position: relative; right: 0;">
This page was generated at
<?php
echo date('Y-m-d\TH:i:s T').
" by php/".phpversion()." ".$_SERVER["SERVER_SOFTWARE"];
?>
</p>
<p>
<span>
<a href="https://validator.w3.org/check?uri=http://www.zdenekborovec-dev.cz">
<img style="border:0;width:88px;height:31px"
src="https://www.w3.org/Icons/valid-html401"
alt="Valid HTML!"></a>
</span>
<span>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="https://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!"></a>
</span>
<span>
<a href="https://anybrowser.org/campaign/index.html">
<img style="border:0;width:88px;height:31px"
src="https://assets.zdenekborovec.cz/upload/8502f9f1d8b27fcc926545884d657bdd/eb2c7faf2d434c46494bc66ed8fe6bad/6dd6d70868b91b6b10418c1fadc13f68.gif"
alt="Viewable with any browser"></a>
</span>
</p>
</div>
</main>
</body>
</html>