blob: 201caaa9c7fdb8a511362194acec06d178f6949c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
<!doctype html>
<html lang="en">
<head>
    <title>Mark's Kitchen — Blog</title>
    <link rel="stylesheet" type="text/css" href="/css/styles.css">
    <meta name="description" content="A post from {{date}}">
    {{> header}}
    <script src="/js/hello.js"></script>
</head>
<body>
    <h1>
        <a class="navigation" href="/" title="marks.kitchen"><</a>
        <a class="navigation" href="/blog" title="blog"><</a>
        Post from {{date}}
    </h1>
    {{> navigation}}
    {{> feed}}
    {{> footer}}
</body>
</html>
  |