summaryrefslogtreecommitdiff
path: root/templates/gallery.html
blob: 6f6b013e273f820d7e2fb2417ef6b49dbfd4fcf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="gallery">
    {% for project in projects %}
        <a href="{{ url_for("projects", project_name=project.id) }}">
            <div class="gallery-element">
                {{ project.summary }}
            </div>
        </a>
    {% endfor %}
    <a href="https://github.com/romangraef">
        <div class="gallery-element">
            And many more on Github
        </div>
    </a>
</div>