diff options
Diffstat (limited to 'templates/gallery.html')
-rw-r--r-- | templates/gallery.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/gallery.html b/templates/gallery.html new file mode 100644 index 0000000..6f6b013 --- /dev/null +++ b/templates/gallery.html @@ -0,0 +1,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> + |