aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-26 19:01:18 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-26 19:01:18 -0800
commitbf56a9edfcca610bc771e0176f72bbce59fcc87a (patch)
tree382908e01dee4992a9566a5859928ee4c10334bb /templates/page.html
parentadd back the resume and generate it with nix (diff)
downloadfcuny.net-bf56a9edfcca610bc771e0176f72bbce59fcc87a.tar.gz
large cleanup
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html12
1 files changed, 2 insertions, 10 deletions
diff --git a/templates/page.html b/templates/page.html
index 94b39ac..e027d8f 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,17 +1,9 @@
-{% 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">
<span class="date">{{ page.date | date(format="%Y-%m-%d") }}</span>
- {%- if page.taxonomies.tags -%}
- &nbsp;/ {% for tag in page.taxonomies.tags %}
- <span class="tag"><a href="{{ get_taxonomy_url(kind="tags", name=tag) }}">#{{ tag }}</a></span>
- {% endfor %}
- {%- endif -%}
</div>
{{ page.content | safe -}}