all repos — blog @ c56431c0568b58f5c10a8c61e978841b3726c54e

Code and content for 5ika.ch

themes/5ika/layouts/index.html (view raw)

 1<!DOCTYPE html>
 2<html>
 3  <head>
 4    <meta charset="UTF-8" />
 5    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 6    <link
 7      rel="icon"
 8      href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🦌</text></svg>"
 9    />
10    <link href="/style.css" rel="stylesheet" />
11    <link
12      href="/posts/atom.xml"
13      type="application/atom+xml"
14      rel="alternate"
15      title="5ika's posts"
16    />
17    <link
18      href="/posts/rss.xml"
19      type="application/rss+xml"
20      rel="alternate"
21      title="5ika's posts"
22    />
23    <link rel="alternate" type="text/turtle" href="profile.ttl" />
24    <title>$TITLE</title>
25  </head>
26  <body>
27    <main class="page max-w-2xl">
28      <div class="h-card">
29        <h1 class="mb-8">
30          <span class="p-name">Tim Izzo</span> @<a
31            href="https://5ika.ch"
32            class="u-url"
33            >5ika.ch</a
34          >
35        </h1>
36      </div>
37      $CONTENT
38    </main>
39  </body>
40</html>
41