Merge pull request #20 from andrwcnln/dev

Adding theme and footer
This commit is contained in:
Andrew Conlin 2024-01-14 10:10:26 +00:00 committed by GitHub
commit 32f80e3feb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 1 deletions

View File

@ -0,0 +1,8 @@
<br>
<div style="text-align: center;">
<i>
Made with 💕 (and Jekyll)<br>
© Andrew Conlin 2023-2024<br>
All rights reverse engineered
</i>
</div>

View File

@ -0,0 +1,4 @@
<hr><br>
<div style="text-align: center;">
<i>Issues or comments? <a href="mailto:andrew@andrewconl.in">Email me!</a></i>
</div>

View File

@ -28,6 +28,7 @@
</h1>
{{ page.subtitle }}
{{ content }}
{% include defaultFooter.html %}
</div>
</div>
</body>

View File

@ -9,3 +9,4 @@ layout: default
<hr>
{{ content }}
{% include postFooter.html %}

View File

@ -38,4 +38,13 @@ div.content {
margin: 0 auto;
position: relative;
}
}
}
body {
background-color: #1a1b26;
color: #a9b1d6;
}
a {
color: #9ece6a;
}