29 lines
929 B
Smarty
29 lines
929 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
|
|
% if i >= ((math.ceil(len(words) / limit)) - 1) and j >= limit - 1:
|
|
% for k in range(limit - (len(words) % limit)):
|
|
<th> </th>
|
|
% end
|
|
% end
|
|
% end
|
|
% end
|
|
</tr>
|
|
% end
|
|
</table>
|
|
<br>
|
|
</div>
|