summaryrefslogtreecommitdiff
path: root/templates/gallery.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/gallery.html')
-rw-r--r--templates/gallery.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/templates/gallery.html b/templates/gallery.html
index 6f6b013..590b38b 100644
--- a/templates/gallery.html
+++ b/templates/gallery.html
@@ -1,13 +1,14 @@
<div class="gallery">
{% for project in projects %}
- <a href="{{ url_for("projects", project_name=project.id) }}">
- <div class="gallery-element">
+ <a class="gallery-element" href="{{ url_for("projects", project_name=project.id) }}">
+ <div>
+ <b>{{ project.name }}</b><br/>
{{ project.summary }}
</div>
</a>
{% endfor %}
- <a href="https://github.com/romangraef">
- <div class="gallery-element">
+ <a class="gallery-element" href="https://github.com/romangraef">
+ <div>
And many more on Github
</div>
</a>