You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.0 KiB
Smarty
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 blog and portfolio for programming, art, and Scripture. I want to learn and have fun!</p>
|
|
</div>
|
|
|
|
<div class="diary-box social-box">
|
|
<h2>chat</h2>
|
|
<ul>
|
|
<!--<li>{{random.choice(['.','•','☆','★'])}}	Twitter: <a href="https://twitter.com/lilchimchooree">@lilchimchooree</a> </li>
|
|
<li>{{random.choice(['.','•','☆','★'])}}	Mastodon: <a href="https://mastodon.gamedev.place/@lilchimchooree">@lilchimchooree</a> </li>-->
|
|
<li>{{random.choice(['.','•','☆','★'])}}	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>	<a href=/{{l[0]}} rel="nofollow">{{bullet}}	{{!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>
|