summaryrefslogtreecommitdiff
path: root/templates/post.html.j2
blob: e1c447a8f29418959417979a0f1587853a9fd9f8 (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.j2" %}

{% 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>
	<article>
		{{ post.get_article()|markdown }}
	</article>
</section>
{% endblock %}