summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Geyer <philipp@geyer.co.uk>2022-01-31 20:29:43 +0000
committerPhilipp Geyer <philipp@geyer.co.uk>2022-01-31 20:29:43 +0000
commit1643a43d1301fea39307c3b4bdfbf27b4f5fe939 (patch)
tree690f0ec657ba9078590052831de0c6abd270c10c
parent49610f319e9f29d966a0445f1763f179a9b074f9 (diff)
Some theme and layout tweaks
-rw-r--r--pages/intro.org3
-rw-r--r--theme/static/style.css10
-rw-r--r--theme/templates/base.html3
3 files changed, 11 insertions, 5 deletions
diff --git a/pages/intro.org b/pages/intro.org
index d4df9dc..8ed0880 100644
--- a/pages/intro.org
+++ b/pages/intro.org
@@ -12,3 +12,6 @@ personal projects, I often use low level C, but also enjoy jumping
around languages. I have projects in lisp, assembly, C, lua and
bash. I also enjoy experimenting with other languages, so have many
more not shared just for the sake of experimenting with the languages.
+
+If you're wanting to look at my past experience, [[https://github.com/nistur/cv/releases/latest][my CV is available on
+github]] and I have [[url_for:cv,slug=00][a short writeup on each project]] I've worked on.
diff --git a/theme/static/style.css b/theme/static/style.css
index f209a2c..1ef16c0 100644
--- a/theme/static/style.css
+++ b/theme/static/style.css
@@ -42,11 +42,6 @@ body {
min-height: 100vh;
display: flex;
flex-direction: column;
-
- background-position: bottom;
- background-image: url("footer.png");
- background-repeat: no-repeat;
- background-size: contain;
}
header {
@@ -175,6 +170,11 @@ footer {
display: flex;
align-items: center;
justify-content: center;
+
+ background-position: bottom;
+ background-image: url("footer.png");
+ background-repeat: no-repeat;
+ background-size: cover;
}
diff --git a/theme/templates/base.html b/theme/templates/base.html
index b2b96a9..1e0a6fc 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -46,6 +46,9 @@
<ul class="menu">
<li><a href="{{ url_for("pages", slug="about") }}">about</a></li>
<li><a href="{{ url_for("cv", slug="00") }}">experience</a></li>
+ <li><a href="https://github.com/nistur/cv/releases/latest">CV</a></li>
+ </ul>
+ <ul class="menu">
<li><a href="{{ url_for("pages", slug="contact") }}">contact</a></li>
<li><a href="{{ url_for("pages", slug="credits") }}">credits</a></li>
</ul>