clone url: git://git.m455.casa/m455.casa
templates/page.html
1 | <!DOCTYPE html> |
2 | <html lang="en"> |
3 | <head> |
4 | <meta charset="utf-8"> |
5 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> |
6 | <link rel="alternate" type="application/rss+xml" href="https://m455.casa/feed.rss"> |
7 | <title>{{title}}</title> |
8 | <link rel="stylesheet" href="/style.css"> |
9 | </head> |
10 | <body> |
11 | <main> |
12 | <nav> |
13 | <a href="/">home</a> // |
14 | <a href="/posts/">posts</a> // |
15 | <a href="https://git.m455.casa">code</a> // |
16 | <a href="/talks.html">talks</a> // |
17 | <a href="/contact.html">contact</a> // |
18 | <a href="/feed.rss">rss</a> |
19 | </nav> |
20 | {{contents}} |
21 | </main> |
22 | </body> |
23 | </html> |