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.
24 lines
704 B
Smarty
24 lines
704 B
Smarty
% 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>
|