ideabox page makes a grid for placeholder list

This commit is contained in:
chimchooree
2020-12-04 22:14:01 -06:00
parent a32571437a
commit d7ffb4f08f
5 changed files with 493 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
% rebase('frame.tpl')
% import math
<!--Content-->
<div class="content">
<br><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>