5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-11-09 15:40:27 +00:00
yggdrasil-network.github.io/_layouts/default.html
2021-06-06 14:08:29 +01:00

36 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% seo %}
{% feed_meta %}
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="alternate" type="application/atom+xml" title="Neil Alexanders blog" href="/feed.xml">
</head>
<body>
<div class="container-lg px-3 my-5 markdown-body">
<div class='titleflex'>
<span class='logo'>
<a href="/"><img src="/assets/images/logo.svg" alt="neilalexander.dev" id="logoimg" /></a>
</span>
<span class='links'>
{% for page in site.pages %}
{% if page.url contains ".html" %}
{% unless page.tags contains "dontlink" %}
<a href="{{ page.url }}">{{ page.title }}</a>
{% endunless %}
{% endif %}
{% endfor %}
<a href='http://github.com/neilalexander'>GitHub</a>
</span>
</div>
{{ content }}
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js" integrity="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=" crossorigin="anonymous"></script>
<script>anchors.add();</script>
</body>
</html>