homepage/_layouts/default.html

56 lines
1.9 KiB
HTML
Raw Normal View History

2017-07-09 18:42:24 -06:00
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic">
<!-- My stuff -->
<link rel="stylesheet" media="screen" href="{{ '/assets/css/default.css' | relative_url }}">
<link rel="icon" type="image/png" href="{{ '/assets/images/face.png' | relative_url }}">
2022-08-02 14:31:42 -06:00
<link rel="alternate" type="application/atom+xml" title="Neale Blog" href="/feed.xml">
2017-07-09 18:42:24 -06:00
{% if page.scripts %}{% for js_file in page.scripts %}
<script src="{{ js_file }}"></script>
2018-11-21 13:19:31 -07:00
{% endfor %}{% endif %}
{% if page.headers %}{% for header in page.headers %}
{{ header }}
2017-07-09 18:42:24 -06:00
{% endfor %}{% endif %}
2017-07-09 18:54:08 -06:00
<title>{{ page.title }}</title>
2017-07-09 18:42:24 -06:00
</head>
<body>
2022-08-01 16:18:29 -06:00
<h1 class="title">
2017-07-09 18:42:24 -06:00
<span>{{ page.title }}</span>
2022-08-01 16:18:29 -06:00
{% if page.collection == "posts" %}
<br>
<span class="subtitle">
{{page.date | date: "%Y %B %-d"}}
</span>
{% endif %}
2017-07-09 18:42:24 -06:00
</h1>
<main id="content">
{{ content }}
{% if page.Time-stamp %}
<p id="timestamp">Last modified: {{ Time-stamp }}</p>
{% endif %}
</main>
<footer>
2022-08-09 20:12:34 -06:00
<nav>
2017-07-09 18:42:24 -06:00
<ul>
<li><a href="{{ '/tartans/' | relative_url }}" title="AKA Plaids">Tartans</a></li>
2021-02-23 13:13:30 -07:00
<li><a href="{{ '/poems/' | relative_url }}" title="I won't quit my day job">Poems</a></li>
2017-07-09 18:42:24 -06:00
<li><a href="{{ '/papers/' | relative_url }}" title="Various writings">Papers</a></li>
2022-08-02 15:02:45 -06:00
<li><a href="{{ '/blog/' | relative_url }}" title="Public Journal">Blog</a></li>
2019-10-05 19:49:01 -06:00
<li><a href="{{ '/toys/' | relative_url }}" title="Dumb apps">Toys</a></li>
2022-08-09 20:12:34 -06:00
<li class="fill"></li>
2017-07-09 18:42:24 -06:00
<li><a href="https://github.com/nealey/">GitHub</a></li>
<li><a href="mailto:neale@woozle.org">Email</a></li>
2018-11-21 13:19:31 -07:00
</ul>
2017-07-09 18:42:24 -06:00
</nav>
</footer>
</body>
</html>