You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
626 B
HTML

{% extends "base.html" %}
<!-- Additional styles and scripts -->
{% block head %}
<link
rel="stylesheet"
href="{{url_for('static', filename='css/page.css')}}"
/>
{% if css %}
<link
rel="stylesheet"
href="{{url_for('static', filename='css/' +css)}}"
/>
{% endif %}
{% if script %}
<script
src="{{url_for('static', filename='js/' + script)}}"
defer ><script>
{% endif %}
{% endblock %}
<!-- Title -->
{% block title %}
{{title}}
{% endblock %}
<!-- Contents in the body -->
{% block content%}
{{ content | markdown}}
{% endblock %}