Website/index.php
2024-08-23 23:49:11 +03:00

50 lines
No EOL
3.3 KiB
PHP

<?php require "static/commons/header.php"; ?>
<?php
$images = array("https://api.tinyfox.dev/img?animal=caracal","https://api.tinyfox.dev/img?animal=chee","https://api.tinyfox.dev/img?animal=yote","https://api.tinyfox.dev/img?animal=dook","https://api.tinyfox.dev/img?animal=fox","https://api.tinyfox.dev/img?animal=mane","https://api.tinyfox.dev/img?animal=ott","https://api.tinyfox.dev/img?animal=marten","https://api.tinyfox.dev/img?animal=wah","https://api.tinyfox.dev/img?animal=serval","https://api.tinyfox.dev/img?animal=woof","https://api.tinyfox.dev/img?animal=yeen");
$names = array("caracal", "cheetah","cayote","ferret","fox","maned wolf","otter","marten","red panda","serval","wolf","hyena");
$number = rand(0,count($images)-1);
$animal_url = $images[$number];
function calculate_elapsed_years($start_date)
{
$difference = time() - strtotime($start_date);
return floor($difference / (365 * 24 * 60 * 60));
}
$date = calculate_elapsed_years("2009-08-29");
?>
<script src="/static/script/index.js"></script>
<img id=adolf src="/static/assets/icons/twitter_better.svg">
<link rel="stylesheet" href="/static/style/index.css">
<div class="main">
<div class="fox_div">
<img loading="lazy" src="<?php echo $animal_url;?>" id=animal_img title="Randomly picked image of a <?php echo $names[$number];?>" alt="randomly picked image of a <?php echo $names[$number];?>">
<p id="imagetext">Current image is a <?php echo $names[$number];?>.</p>
<p>Images stolen from <a target="_blank" href="https://tinyfox.dev/image-list/">tinyfox.dev</a></p>
</div>
<div class="main_text">
<h2>Hello!</h2>
<p>I am Juli, a Finnish pansexual furry of some gender from '09(thats <?php echo $date?> years old). I go by Juli or
Julimiro, any pronouns are fine.</p><br>
<p>I have a few coding projects which are on my <a href="https://git.gay/Julimiro">git</a>(and still a bit on my
<a href="https://github.com/Juliasmatius">github</a>).
</p><br>
<p>My socials can be found below</p>
<div class="socials">
<?php // <a alt="twitter" target="_blank" href="https://twitter.com/julithefurry"><img alt="twitter" title="Twitter" id="twitter" width=50px height=50px src="/static/assets/icons/twitter.svg"/></a> ?>
<a alt="Fediverse" target="_blank" href="https://eepykitty.lol/@juli"><img alt="Fediverse" title="Fediverse"
width=50px height=50px src="/static/assets/icons/fediverse.svg" /></a>
<a alt="Lemmy" target="_blank" href="https://pawb.social/u/Juli"><img alt="Lemmy" title="Lemmy"
width=50px height=50px src="/static/assets/icons/lemmy.svg" /></a>
<a alt="Last.fm" target="_blank" href="https://www.last.fm/user/Julimiro"><img alt="Last.fm" title="Last.fm"
width=50px height=50px src="/static/assets/icons/lastfm.svg" /></a>
<?php // <a alt="Steam" target="_blank" href="https://steamcommunity.com/id/julimiro/"><img alt="Steam" title="Steam" width=50px height=50px src="/static/assets/icons/steam.svg"/></a> ?>
<a alt="Youtube" target="_blank" href="https://www.youtube.com/@JuliTheFurry"><img alt="Youtube"
title="Youtube" width=50px height=50px src3="/static/assets/icons/youtube.svg" /></a>
</div>
</div>
</div>
<?php require "static/commons/footer.php"; ?>