Files
rainbowcroissant/src/_includes/base.liquid
2023-10-12 23:13:24 +05:30

37 lines
832 B
Plaintext
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">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta charset="utf-8">
<title>
{%if title%}
{{title | append: " | " | append: site.name}}
{%else%}
{{site.name}}
{%endif%}
</title>
<meta name="description" content="{{site.desc}}">
<link rel="stylesheet" href="/static/pico.min.css">
<link rel="stylesheet" href="/static/site.css">
</head>
<body>
<header class="container">
<nav>
<ul><li><h1><a href="/">{{site.name}}</a></h1></li></ul>
{% renderFile './src/_includes/navlist.md' %}
</nav>
</header>
<main class="container">
{{-content-}}
</main>
<footer class="container">
<h1>{{site.name}}</h1>
<p>/ ˈreɪnˌboʊ krəˈsɑnt /</p>
<p>{{site.desc}}</p>
</footer>
</body>
</html>