blob: 748288a5cb7aec9be953dd3fc38f1958dab2f323 (
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" />
{% endblock %}
{% block main %}
<section class="banner">
<h1>{{ post.get_title() }}</h1>
</section>
<section class="quiet">
<article>
{{ post.get_article()|markdown }}
</article>
</section>
{% endblock %}
|