- Change "license" of code from WTFPL to Unlicense, and content from WTFPL to Creative Commons Zero. - CSS - Remove header tags from most non-content sources - Update post footers to fit better on small screens - Update site footer styles - Update layouts accordingly - Update README
63 lines
2.5 KiB
HTML
63 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>The Internet Vagabond :: {{ page.tabtitle }}</title>
|
|
{% feed_meta %}
|
|
<meta name="description"
|
|
content="Rants of a wandering techy, in search of truth, knowledge, and a decent ping." />
|
|
<meta name="author" content="{{ page.author}}" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="canonical" href="{{ site.url}}{{ page.url }}" />
|
|
<link rel="stylesheet" type="text/css"
|
|
href="{{ site.url }}/src/styles/corrupt_layout.css" />
|
|
<link rel="stylesheet" type="text/css"
|
|
href="{{ site.url }}/src/styles/corrupt_typog.css" />
|
|
<link rel="icon" type="image/x-icon"
|
|
href="{{ site.url }}/src/images/favicon.ico" />
|
|
<link rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css"
|
|
integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY="
|
|
crossorigin="anonymous">
|
|
<script data-goatcounter="https://theinternetvagabond.goatcounter.com/count"
|
|
async src="{{ site.url }}/src/scripts/goatcounter.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="cor_page">
|
|
<header>
|
|
<a href="/">
|
|
<div>
|
|
<span class="first">T</span>he
|
|
<span class="first">I</span>nternet
|
|
<span class="first">V</span>agabond
|
|
</div>
|
|
</a>
|
|
</header>
|
|
<main>
|
|
<article>
|
|
{{ content }}
|
|
<div class="author_info">
|
|
{{ page.author }}
|
|
<a href="https://unlicense.org/"
|
|
aria-label="Code dedicated to the public domain under Unlicense">
|
|
<span class="fa fa-cc-pd" aria-hidden="true"
|
|
title="Code dedicated to the public domain under Unlicense"</span>
|
|
</a>
|
|
<a href="https://creativecommons.org/publicdomain/zero/1.0/"
|
|
aria-label="Published to the public domain under CC0">
|
|
<span class="fa fa-cc-zero" aria-hidden="true"
|
|
title="Content dedicated to the public domain under CC0"</span>
|
|
</a>
|
|
{{ page.pub }}
|
|
<br />
|
|
[
|
|
{% for topic in page.topics %}
|
|
<a href="/topics/{{topic}}">{{topic}}</a>
|
|
{% endfor %}
|
|
]
|
|
</div>
|
|
</article>
|
|
</main>
|
|
{% include cor_menu.html %}
|
|
</div>
|
|
</body>
|
|
</html>
|