fix: footer

This commit is contained in:
Cory Dransfeldt 2024-09-14 21:45:32 -07:00
parent 427a73cd94
commit a1a9eef9e2
No known key found for this signature in database
4 changed files with 9 additions and 7 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "24.8.4",
"version": "24.8.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "24.8.4",
"version": "24.8.5",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "24.8.4",
"version": "24.8.5",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {

View file

@ -433,6 +433,10 @@ th {
main {
flex: 1 1 0%;
}
main,
footer {
width: 80%;
margin-left: auto;
margin-right: auto;

View file

@ -9,8 +9,6 @@ layout: base
{%- endif -%}
{%- endcapture -%}
<div class="main-wrapper">
<main>
{{ content }}
{% render "partials/footer.liquid", page:page, nav:nav, updated:updateTime %}
</main>
<main>{{ content }}</main>
{% render "partials/footer.liquid", page:page, nav:nav, updated:updateTime %}
</div>