templates

This commit is contained in:
Garry Ing
2021-03-07 17:59:37 -05:00
parent 3baaf81b64
commit b80c890671
16 changed files with 134 additions and 12 deletions

3
_includes/footer.html Normal file
View File

@ -0,0 +1,3 @@
<footer>
</footer>

10
_includes/head.html Normal file
View File

@ -0,0 +1,10 @@
{%- assign meta_description = page.excerpt | default: site.description -%}
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% if page.title %}{{ page.title }} 🌱 {% endif %}{{ site.title }}</title>
<meta name="description" content="{{ meta_description }}">
<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
{%- feed_meta -%}
</head>

17
_includes/header.html Normal file
View File

@ -0,0 +1,17 @@
<header class="f-6 flex">
{%- assign default_paths = site.pages | map: "path" -%}
{%- assign page_paths = site.header_pages | default: default_paths -%}
{%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
<a class="no-underline-hover" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
{%- if titles_size > 0 -%}
<nav>
{%- for path in page_paths -%}
{%- assign my_page = site.pages | where: "path", path | first -%}
{%- if my_page.title -%}
, <a class="no-underline-hover" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
{%- endif -%}
{%- endfor -%}
</nav>
{%- endif -%}
</header>