summaryrefslogtreecommitdiff
path: root/templates/post.html
blob: fb8d28b040688586f5de03837201ef89df0f195a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}

{% block title %}
{{ post.get_title() }} - Carpenter Tutoring, LLC
{% endblock %}

{% block og %}
<meta name="description" content="{{ post.get_description() }}" />
<meta property="og:description" content="{{ post.get_description() }}" />
<meta property="og:title" content="{{ post.get_title() }}" />
<meta property="og:url" content="https://carpentertutoring.com/posts/{{ post.get_title()|e }}" />
{% endblock %}

{% block main %}
<section class="banner">
	<h1>{{ post.get_title() }}</h1>
</section>

<section class="quiet">
	<article>
		{{ post.get_article()|markdown }}
	</article>
</section>
{% endblock %}