summaryrefslogtreecommitdiff
path: root/templates/gallery.html
diff options
context:
space:
mode:
authorromangraef <roman.graef@gmail.com>2018-06-01 11:07:02 +0200
committerromangraef <roman.graef@gmail.com>2018-06-01 11:07:23 +0200
commita4717724853ce92888c8aa6c082a25428e00720b (patch)
tree3697459def6ec3e330bac2b5321908bd372c2daa /templates/gallery.html
parent22480d21a0d647d7f1d86a5efb25368225fcb7dd (diff)
downloadmy-website-a4717724853ce92888c8aa6c082a25428e00720b.tar.gz
my-website-a4717724853ce92888c8aa6c082a25428e00720b.tar.bz2
my-website-a4717724853ce92888c8aa6c082a25428e00720b.zip
added editing abilities
Diffstat (limited to 'templates/gallery.html')
-rw-r--r--templates/gallery.html15
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>
+