diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/page.html | 7 | ||||
| -rw-r--r-- | templates/resume.html | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/templates/page.html b/templates/page.html index e027d8f..f0f9556 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,5 +1,8 @@ -{% extends "base.html" %} {% block title %}{{ page.title }} - {{ config.title -}}{% endblock title %} {% block content -%} +{% extends "base.html" %} + +{% block title %}{{ page.title }} - {{ config.title }}{% endblock title %} + +{% block content-%} <h1>{{ page.title }}</h1> <div class="metadata"> diff --git a/templates/resume.html b/templates/resume.html new file mode 100644 index 0000000..f64f631 --- /dev/null +++ b/templates/resume.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} + +{% block content %} + +{{ section.content | safe }} + +{% endblock %} |
