mirror of
https://github.com/cwinfo/yggdrasil-network.github.io.git
synced 2025-06-26 10:49:24 +00:00
Implementation notes on a page
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
@ -8,28 +9,31 @@
|
||||
{% feed_meta %}
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="alternate" type="application/atom+xml" title="Yggdrasil Network" href="/feed.xml">
|
||||
</head>
|
||||
<body>
|
||||
</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="Yggdrasil Network" id="logoimg" /></a>
|
||||
</span>
|
||||
<span class='links'>
|
||||
{% for page in site.pages %}
|
||||
{% if page.url contains ".html" %}
|
||||
{% unless page.tags contains "dontlink" %}
|
||||
<div class='titleflex'>
|
||||
<span class='logo'>
|
||||
<a href="/"><img src="/assets/images/logo.svg" alt="Yggdrasil Network" 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='https://github.com/yggdrasil-network/yggdrasil-go'>GitHub</a>
|
||||
</span>
|
||||
</div>
|
||||
{{ content }}
|
||||
{% endunless %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<a href='https://github.com/yggdrasil-network/yggdrasil-go'>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 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>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user