From 0095a296d33577e1f89fd848b3614c9ffb584255 Mon Sep 17 00:00:00 2001 From: max/sooulix Date: Wed, 14 Aug 2024 20:42:10 +0200 Subject: [PATCH] update templates --- templates/archives.html | 3 +- templates/base.html | 171 +-------------------------- templates/categories.html | 3 +- templates/page.html | 8 +- templates/partials/awards.html | 48 ++++++++ templates/partials/basics.html | 92 ++++++++++++++ templates/partials/breadcrumbs.html | 127 ++++++++++++++++++++ templates/partials/education.html | 92 ++++++++++++++ templates/partials/interests.html | 29 +++++ templates/partials/languages.html | 31 +++++ templates/partials/menu.html | 42 +++++++ templates/partials/projects.html | 80 +++++++++++++ templates/partials/publications.html | 61 ++++++++++ templates/partials/references.html | 24 ++++ templates/partials/skill.html | 1 + templates/partials/skills.html | 35 ++++++ templates/partials/volunteer.html | 98 +++++++++++++++ templates/partials/work.html | 74 ++++++++++++ templates/resume.html | 63 ++++++++++ templates/search.html | 3 +- templates/tag.html | 2 +- templates/tags.html | 3 +- 22 files changed, 917 insertions(+), 173 deletions(-) create mode 100644 templates/partials/awards.html create mode 100644 templates/partials/basics.html create mode 100644 templates/partials/breadcrumbs.html create mode 100644 templates/partials/education.html create mode 100644 templates/partials/interests.html create mode 100644 templates/partials/languages.html create mode 100644 templates/partials/menu.html create mode 100644 templates/partials/projects.html create mode 100644 templates/partials/publications.html create mode 100644 templates/partials/references.html create mode 100644 templates/partials/skill.html create mode 100644 templates/partials/skills.html create mode 100644 templates/partials/volunteer.html create mode 100644 templates/partials/work.html create mode 100644 templates/resume.html diff --git a/templates/archives.html b/templates/archives.html index bacc874..bcb1ece 100644 --- a/templates/archives.html +++ b/templates/archives.html @@ -2,6 +2,7 @@ {% block title %}Archive | {{ SITENAME }}{% endblock %} {% set current = "archive" %} +{% set url = "archives.html" %} {% macro countyear(year) %} {% set name = namespace(y=0) %} @@ -117,4 +118,4 @@ {% include 'pagination.html' %} {% endif %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/base.html b/templates/base.html index 5e4c99f..37ad30f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -13,6 +13,9 @@ + + + {% if FEED_ALL_ATOM %} - + {% include('partials/menu.html') %}
- {% if article %} - - {% elif tag %} - - {% elif page %} - - {% elif category %} - - {% endif %} + {% include('partials/breadcrumbs.html') %} {% block content %} {% endblock %}