scaffold unprompted site: eleventy, templates, gitea CI
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s
This commit is contained in:
29
_includes/base.njk
Normal file
29
_includes/base.njk
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{% if title %}{{ title }} — un:prompted{% else %}un:prompted{% endif %}</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header class="site-header">
|
||||
<a href="/" class="site-title">un:prompted</a>
|
||||
</header>
|
||||
|
||||
<div class="site-layout">
|
||||
<main class="content">
|
||||
{{ content | safe }}
|
||||
</main>
|
||||
|
||||
{% include "sidebar.njk" %}
|
||||
</div>
|
||||
|
||||
<footer class="site-footer">
|
||||
<nav class="footer-nav">
|
||||
<a href="/about/">about</a>
|
||||
<a href="/code/">code</a>
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user