aboutsummaryrefslogtreecommitdiff
path: root/_includes/post.njk
blob: 52dc4937dfcc913eeab6d53dc61a9ba14ce85ef7 (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; overflow-x: scroll; ">
    <a href="/" style="margin-left:1.5rem; display: block; position: fixed; "class="link article-m" >
    ߸
    </a>
    <div style="padding-left:3.7rem; display: flex; flex-direction: column; padding-bottom: 5rem; max-width: 40rem; padding-right: 1rem">
      <h1>{{title}}</h1>
      {{ content | safe }}
    </div>
  </body>
</head>