aboutsummaryrefslogtreecommitdiff
path: root/templates/main_page.html
blob: ee04af9af1bfd7f990402991ebfba39d19d1bd17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
    <meta name="viewport" content="width=device-width" />
</head>
<body>
    <h1>List of articles</h1>
    <h2>Number of posts: {{ files|length }}</h2>
    {% if files %}
        {% for item in files %}
        <a text-size=3.2vw  href="static/html/{{ item }}">{{ item }}</a><br>
        {% endfor %}
    {% endif %}
</body>
</html>