aboutsummaryrefslogtreecommitdiff
path: root/source/templates/statistics.html
blob: 5dfcbfa8e9841cf6df9aa42150a661b555af69b4 (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
bgstack15