diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-22 13:06:19 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-22 13:06:19 -0500 |
commit | d2e4da10c806d815eded44ade076babb78802c16 (patch) | |
tree | 7494261e22f3255926204164449c7345f5b500e5 /_includes |
Initial commit to new cgit platform
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/footer.html | 8 | ||||
-rwxr-xr-x | _includes/head.html | 10 | ||||
-rw-r--r-- | _includes/navigation.html | 12 |
3 files changed, 30 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..b913e1e --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,8 @@ +<hr> +<footer> + <p>The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/1mb.club">code for this site</a> is <a href="https://git.sr.ht/~bt/1mb.club/tree/master/item/LICENSE">MIT</a></p> + <p>Maintained with ♥ for a performant web<br> + Proud supporter of <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a> and <a href="https://usefathom.com/ref/DKHJVX">Fathom</a><br> + Feel free to reach out via <a rel="me" href="https://fosstodon.org/@tdarb">Mastodon</a><br> + Latest sites via <a href="/atom.xml">atom.xml</a> // Latest articles via <a href="/posts.xml">posts.xml</a></p> +</footer> diff --git a/_includes/head.html b/_includes/head.html new file mode 100755 index 0000000..90135d4 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,10 @@ +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <title>{{ site.title }}: {{ page.title }}</title> + <meta name="description" content="{{ site.description }}"> + <link rel="shortcut icon" href="{{ site.baseurl }}/favicon.png"> + <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml"> + <link rel="stylesheet" href="{{ site.baseurl }}/style.css"> +</head> diff --git a/_includes/navigation.html b/_includes/navigation.html new file mode 100644 index 0000000..0f4e0f8 --- /dev/null +++ b/_includes/navigation.html @@ -0,0 +1,12 @@ +<h1>1MB Club</h1> +<nav> + <ul> + <li><a href="/">Home</a></li> + <li><a href="/about">About</a></li> + <li><a href="/#hof">Hall of Fame</a></li> + <li><a href="/#members">Members</a></li> + <li><a href="/blog">Blog</a></li> + <li><a href="/submit">Submit</a></li> + </ul> + <hr> +</nav> |