diff options
author | romangraef <roman.graef@gmail.com> | 2018-06-02 10:33:15 +0200 |
---|---|---|
committer | romangraef <roman.graef@gmail.com> | 2018-06-02 10:33:15 +0200 |
commit | 3dc96e8b31eeef876c89aadf26dbf1e5d3355e7f (patch) | |
tree | 57891d940b3121ca814ec37e04866ba42b6043ce /templates | |
parent | 57a8d6c5abe24324fe21da405ecdb8632cdb8b33 (diff) | |
download | my-website-3dc96e8b31eeef876c89aadf26dbf1e5d3355e7f.tar.gz my-website-3dc96e8b31eeef876c89aadf26dbf1e5d3355e7f.tar.bz2 my-website-3dc96e8b31eeef876c89aadf26dbf1e5d3355e7f.zip |
Added featured projects
Diffstat (limited to 'templates')
-rw-r--r-- | templates/gallery_all.html | 5 | ||||
-rw-r--r-- | templates/index.html | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/templates/gallery_all.html b/templates/gallery_all.html new file mode 100644 index 0000000..d6cc8f4 --- /dev/null +++ b/templates/gallery_all.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} +{% block body %} + <h1>Projects</h1> + {% include "gallery.html" %} +{% endblock %}
\ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 27b3232..1d0d753 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,6 +7,7 @@ <p>As long as it is not webdesign, I will program nearly anything for you</p> <div class="spacer"></div> <h1>Projects</h1> + <p><a href="{{ url_for('list_all_projects') }}">All projects</a> </p> {% include "gallery.html" %} {% endblock %} {% block title %} |