Use blogk and extends for footer content
This commit is contained in:
parent
e6778f4050
commit
667de9699c
|
@ -0,0 +1,35 @@
|
|||
<footer class="footer">
|
||||
{% block footerContent %}
|
||||
{{ footerContent }}
|
||||
{% endblock %}
|
||||
</footer>
|
||||
|
||||
<style>
|
||||
.footer {
|
||||
margin-top: auto;
|
||||
background: var(--clr-main-footer-bg);
|
||||
width: 72%;
|
||||
padding: 0.8rem;
|
||||
text-align: center;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.footer p {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer__links {
|
||||
justify-self: center;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
gap: 0.7em;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 600px) {
|
||||
.footer {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -1,4 +1,6 @@
|
|||
<footer class="footer">
|
||||
{% extends "global/footer.njk" %}
|
||||
|
||||
{% block footerContent %}
|
||||
<p>Made with ♥ by {{ sitemeta.siteAuthor.name }} since <time>11 September 2022</time></p>
|
||||
|
||||
{% set currentUrl %}{{ page.url }}{% endset %}
|
||||
|
@ -13,34 +15,5 @@
|
|||
|
|
||||
<li><a href="/feed.xml">RSS</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
{% endblock %}
|
||||
|
||||
<style>
|
||||
.footer {
|
||||
margin-top: auto;
|
||||
background: var(--clr-main-footer-bg);
|
||||
width: 72%;
|
||||
padding: 0.8rem;
|
||||
text-align: center;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.footer p {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer__links {
|
||||
justify-self: center;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
gap: 0.7em;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 600px) {
|
||||
.footer {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue