Files
blessfrey-bottle/vps/views/ideabox.tpl
T
2024-05-12 19:05:56 -05:00

24 lines
704 B
Smarty
Executable File

% rebase('frame.tpl')
% import math
<!--Content-->
<div class="content">
<br>
<h2>ideabox☆ </h2>
My personal collection of inspiring concepts + favorite things. Many are from nature, culture, mythology, literature, music, art, and beauty. Some are personal concepts. Some are from existing IPs. You can use them, too, if they help you. <br>
<br>
<table>
% for i in range(math.ceil(len(words) / limit)):
<tr>
% for j in range(limit):
% if j + i * limit < len(words):
<th>{{words[j + i * limit]}}</th>
% end
% end
</tr>
% end
</table>
<br>
</div>
<div class="footer-row"> </div>