All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m48s
21 lines
463 B
Django/Jinja
21 lines
463 B
Django/Jinja
{% extends 'base.jinja2' %}
|
|
{% block title %}{{note.title}}{% endblock %}
|
|
{% block content %}
|
|
<h1>{{note.title}}</h1>
|
|
<ul>
|
|
{% for key, value in note.frontmatter.items() %}
|
|
<li>
|
|
<strong>{{key}}</strong>
|
|
{% if key == 'tags' %}
|
|
{% for tag in value %}
|
|
#{{tag}}
|
|
{% endfor %}
|
|
{% else %}
|
|
{{value}}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{{note.our_content | markdown}}
|
|
{% endblock %}
|