blob: 5ab56a9669324bcb0f3fdaeab484c0ee6a863a8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
---
title: My Rad Blog
tag: post
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Personal blog of Marc Coquand." />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../../css/main.css" />
<title>{{ title }}</title>
</head>
<body style="overflow-y: scroll">
<a href="/" style="margin-left:1.5rem; display: block; position: fixed; "class="link article-m" >
߸
</a>
<div style="padding-left:4rem; display: flex; flex-direction: column; max-width: 40rem">
<h1>{{title}}</h1>
{{ content | safe }}
</div>
</body>
</head>
|