From 2c7c8cfe74a0fcd0f10176d1595966003f848303 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 27 Dec 2024 11:21:58 -0800 Subject: move the resume as a singe page Don't need to render it as a PDF. --- templates/page.html | 7 +++++-- templates/resume.html | 7 +++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 templates/resume.html (limited to 'templates') 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-%}

{{ page.title }}

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 %} -- cgit v1.2.3