feat(template): add footer template
TODO: Flesh out some of the linked pages from this template. For instance, the `About` page.
This commit is contained in:
parent
cbfc125144
commit
d4357a163d
@ -79,6 +79,27 @@ body {
|
|||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer-link-items {
|
||||||
|
display: flex;
|
||||||
|
gap: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
display: flex;
|
||||||
|
gap: 10px;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background-color: var(--waveBlue1);
|
||||||
|
height: 100px;
|
||||||
|
margin-top: auto;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a, footer a:visited {
|
||||||
|
color: var(--crystalBlue);
|
||||||
|
}
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -28,5 +28,6 @@
|
|||||||
<hr />
|
<hr />
|
||||||
{{ article_content }}
|
{{ article_content }}
|
||||||
</article>
|
</article>
|
||||||
|
{% include "footer.html" %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -25,5 +25,6 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
{% include "footer.html" %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
<footer>
|
||||||
|
<div class="footer-link-items">
|
||||||
|
<a href="https://gitlab.orion-technologies.io/blog/blog">Source Code</a>
|
||||||
|
<a href="mailto:price@orion-technologies.io">Contact</a>
|
||||||
|
<a href="/about.html">About</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
@ -26,5 +26,6 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
{% include "footer.html" %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -17,5 +17,6 @@
|
|||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
{% include "footer.html" %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user