diff options
author | romangraef <roman.graef@gmail.com> | 2018-06-01 11:07:02 +0200 |
---|---|---|
committer | romangraef <roman.graef@gmail.com> | 2018-06-01 11:07:23 +0200 |
commit | a4717724853ce92888c8aa6c082a25428e00720b (patch) | |
tree | 3697459def6ec3e330bac2b5321908bd372c2daa /templates/gallery.html | |
parent | 22480d21a0d647d7f1d86a5efb25368225fcb7dd (diff) | |
download | my-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.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> + |