diff options
| author | romangraef <roman.graef@gmail.com> | 2018-05-31 08:24:02 +0200 |
|---|---|---|
| committer | romangraef <roman.graef@gmail.com> | 2018-05-31 08:24:02 +0200 |
| commit | 4a11fe9780deb76004be0e229edf298ac7200f0f (patch) | |
| tree | 59d5d558f86483b4c73964b4683118cae87228dc /templates/project.html | |
| download | my-website-4a11fe9780deb76004be0e229edf298ac7200f0f.tar.gz my-website-4a11fe9780deb76004be0e229edf298ac7200f0f.tar.bz2 my-website-4a11fe9780deb76004be0e229edf298ac7200f0f.zip | |
initial commit
Diffstat (limited to 'templates/project.html')
| -rw-r--r-- | templates/project.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/project.html b/templates/project.html new file mode 100644 index 0000000..076e0a2 --- /dev/null +++ b/templates/project.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} +{% block body %} + <h1>{{ project.name }}</h1> + <p>{{ project.description }}</p> + <p><a href="{{ project.link }}">Link</a></p> +{% endblock %} |
