diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2018-07-18 23:46:06 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2018-07-18 23:55:42 +0100 |
commit | c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23 (patch) | |
tree | a50e1f923f5101846e440fba4b076b14d8ac6b4b /templates/projects.html | |
download | the-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.tar.gz the-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.tar.xz the-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.zip |
init commit
Diffstat (limited to 'templates/projects.html')
-rw-r--r-- | templates/projects.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/projects.html b/templates/projects.html new file mode 100644 index 0000000..7405542 --- /dev/null +++ b/templates/projects.html @@ -0,0 +1,11 @@ +{% extends "default.html" %} +{% block content %} +<h1>Projects</h1> +<ul class="projects">{% for project in page.projects %} + <li> + <h2>{{ project.name }}</h2> + <p>{{ project.description }}</p> + <a href="{{ '/' + project.location }}">More info...</a> + </li>{% endfor %} +</ul> +{% endblock %} |