Add footer with RSS link
This commit is contained in:
parent
ecad5ffd95
commit
02203c187f
3 changed files with 43 additions and 25 deletions
|
@ -26,6 +26,10 @@
|
||||||
maybe other things later!
|
maybe other things later!
|
||||||
</p>
|
</p>
|
||||||
</header>
|
</header>
|
||||||
{{ content }}
|
<main>{{ content }}</main>
|
||||||
|
<footer>
|
||||||
|
Made with love by Matchu and the OpenNeo team!
|
||||||
|
<nav><a href="/feed.xml">Follow with an RSS reader</a></nav>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
|
|
||||||
<main>
|
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<h2>
|
<h2>
|
||||||
|
@ -22,4 +21,3 @@ layout: default
|
||||||
/>
|
/>
|
||||||
{% endif %} {{ content }}
|
{% endif %} {{ content }}
|
||||||
</article>
|
</article>
|
||||||
</main>
|
|
||||||
|
|
|
@ -44,9 +44,7 @@ body > header {
|
||||||
row-gap: 0.5em;
|
row-gap: 0.5em;
|
||||||
column-gap: 0.5em;
|
column-gap: 0.5em;
|
||||||
|
|
||||||
border-bottom: 1px solid #060;
|
|
||||||
padding-bottom: 0.75em;
|
padding-bottom: 0.75em;
|
||||||
margin-bottom: 0.75em;
|
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
grid-area: logo;
|
grid-area: logo;
|
||||||
|
@ -71,11 +69,29 @@ body > header {
|
||||||
|
|
||||||
[role="doc-subtitle"] {
|
[role="doc-subtitle"] {
|
||||||
grid-area: subtitle;
|
grid-area: subtitle;
|
||||||
font-size: 0.75em;
|
font-size: 0.85em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
border-block: 1px solid #060;
|
||||||
|
padding-block: 0.75em;
|
||||||
|
}
|
||||||
|
|
||||||
|
body > footer {
|
||||||
|
font-size: 0.85em;
|
||||||
|
padding-block: 0.5em;
|
||||||
|
|
||||||
|
nav {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav::before {
|
||||||
|
content: "• ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
article {
|
article {
|
||||||
> header {
|
> header {
|
||||||
h2 {
|
h2 {
|
||||||
|
@ -85,7 +101,7 @@ article {
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 0.75em;
|
font-size: 0.85em;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue