Added footer component

- created basic footer component
- added footer to the page template
This commit is contained in:
Claudia Reynders 2022-04-24 16:10:32 +02:00
parent 080eed16b5
commit 1c5b09d121
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,3 @@
<footer role="contentinfo">
<p>This project is maintained by <a href="https://twitter.com/mangamaui">Claudia Reynders</a>, since 2022</p>
</footer>

View File

@ -7,6 +7,9 @@
</head> </head>
<body> <body>
<main role="main">
{{ content | safe }} {{ content | safe }}
</main>
{% include "../components/footer.njk" %}
</body> </body>
</html> </html>