diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-12-27 11:21:58 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-12-27 11:22:49 -0800 |
| commit | 2c7c8cfe74a0fcd0f10176d1595966003f848303 (patch) | |
| tree | 8246b4912e9fd4f5a041906bf5c88a01be913216 /templates | |
| parent | specify correct path to scan for broken links (diff) | |
| download | fcuny.net-2c7c8cfe74a0fcd0f10176d1595966003f848303.tar.gz | |
move the resume as a singe page
Don't need to render it as a PDF.
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 %} |
