Files
blessfrey-bottle/src/views/diary-boxes.tpl
T
2023-05-13 00:43:22 -05:00

46 lines
2.0 KiB
Smarty

% import random
<!--right column-->
<div class="sidebar">
<div class="diary-box about-box">
<h2>about</h2>
<p><b>Blessfrey.me</b> is my personal portfolio site for sharing programming and art. Just here to learn and have fun!</p>
</div>
<div class="diary-box social-box">
<h2>chat</h2>
<ul>
<li>{{random.choice(['.','•','☆','★'])}}&#9;Twitter: <a href="https://twitter.com/lilchimchooree">@lilchimchooree</a> </li>
<li>{{random.choice(['.','•','☆','★'])}}&#9;Mastodon: <a href="https://mastodon.gamedev.place/@lilchimchooree">@lilchimchooree</a> </li>
<li>{{random.choice(['.','•','☆','★'])}}&#9;FlightRising: <a href="https://www1.flightrising.com/clan-profile/525948">Aristene</a> </li>
</ul>
</div>
<div class="diary-box latest">
<h2>latest</h2>
<ul>
% if len(latest) > 0:
% for l in latest:
% bullet = random.choice(['.','•','☆','★'])
<li>&#9;<a href=/{{l[0]}} rel="nofollow">{{bullet}}&#9;{{!l[1]}}</a></li>
% end
% end
</ul>
<br>
</div>
<div class="diary-box wordcloud">
<h2>cloud</h2>
% for t in tags:
% tagless = t.replace('#','')
<a href=/diary/tag/{{tagless}}>{{t}}</a>
% end
</div>
<div class="diary-box disclosure">
<h2>disclosure</h2>
<p>Blessfrey.me is not using sponsored posts or affiliate links.</p>
<p>Blessfrey.me is not collecting personal information + has no cookies. </p>
<p>Thank you for following my projects. </p>
</div>
</div>