blob: e78aa0547c6f8ed6c25d6ba8dc519ee335e02635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
## statistics.html
<%inherit file="base.html"/>
<div class="left inner">
%if articles:
<h1>Statistics</h1>
<h3>Tag cloud</h3>
<form method=get action="/statistics/">
Minimum size of a word:
<input type="number" name="word_size" value="${word_size}" min="2" max="15" step="1" size="2">
</form>
<div style="width: 35%; overflow:hidden; text-align: justify">
${tag_cloud}
</div>
%endif
|