14 lines
361 B
HTML
14 lines
361 B
HTML
{% extends 'pageWrapper.html' %}
|
|
|
|
{% block head %}
|
|
{% include 'header/grassHeader.html' %}
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}" />
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="markdown">
|
|
{{ html_from_markdown | safe}}
|
|
</div>
|
|
{% endblock %}
|