summaryrefslogtreecommitdiffstats
path: root/_layouts/base.html
blob: b7089bf5a03485f9df4e0065cf5068174ad7cca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        {% seo %}
        <link rel="stylesheet" type="text/css" href="/css/base.css">
        <link rel="alternate" type="application/rss+xml" title="RSS" href="https://drewdevault.com/feed.xml">
        <link rel="icon" type="image/png" href="/avatar.png">
    </head>
    <body>
        <div class="container">
            {{ content }}
        </div>
    </body>
</html>