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