Just the source code for my personal website.
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 {% block head %}
5
6 <meta charset="utf-8" />
7 <meta name="title" content="{{ title }}" />
8 <meta name="description"
9 content="{{ description }}">
10
11 <meta property="og:type" content="website">
12 <meta property="og:url" content="{{ url }}">
13 <meta property="og:title" content="{{ title }}">
14 <meta property="og:description"
15 content="{{ description }}">
16 <meta property="og:image" itemprop="image" content="{{ url }}/assets/img/icon.jpg">
17
18 <meta name="twitter:card" content="summary">
19 <meta name="twitter:url" content="{{ url }}">
20 <meta name="twitter:title" content="{{ title }}">
21 <meta name="twitter:description"
22 content="{{ description }}">
23 <meta name="twitter:image" content="{{ url }}/img/icon.jpg">
24 <meta name="twitter:image:alt" content="{{ cover_alt }}">
25
26
27 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
28
29 <link rel="stylesheet" href="/assets/style.css" />
30 <title>{{ title }}</title>
31
32 {% endblock head %}
33</head>
34{% block body %}
35{% endblock body %}
36</html>