aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-12-25 22:19:15 -0500
committerJack Jamison <jackqjamison@gmail.com>2025-12-25 22:19:15 -0500
commitc33707f9ae3734cda1c46459bf358db8bf39f48a (patch)
treede91dad6ebf9932f2d84ae5213e046aebb92e02b
parent09ba0fe1765f22b9731639df1db4489353927b75 (diff)
improvements
-rw-r--r--TODO9
-rw-r--r--zola-static/sass/base.scss2
-rw-r--r--zola-static/static/images/portrait.jpgbin2940276 -> 166099 bytes
-rw-r--r--zola-static/templates/index.html14
4 files changed, 14 insertions, 11 deletions
diff --git a/TODO b/TODO
index a2c2c11..fe0a648 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,8 @@
+- [x] Images for projects in list
- [ ] Meta descriptions (for SEO)
-Project Page Revamp
-- [x] Images for projects in list
-- [ ] Split up projects page
+Revamp
+- [ ] No subtitles in title, better title sizing
+- [ ] Everything is in sections
+- [ ] Better h1..h6 styling
+- [ ] Clean up project style \ No newline at end of file
diff --git a/zola-static/sass/base.scss b/zola-static/sass/base.scss
index c7245db..e775de6 100644
--- a/zola-static/sass/base.scss
+++ b/zola-static/sass/base.scss
@@ -11,7 +11,7 @@ html {
}
body {
- margin: 3rem auto;
+ margin: 3vw auto;
max-width: 55rem;
line-height: 1.3;
font-size: 1.2rem;
diff --git a/zola-static/static/images/portrait.jpg b/zola-static/static/images/portrait.jpg
index 85fd2e4..d4ddc7a 100644
--- a/zola-static/static/images/portrait.jpg
+++ b/zola-static/static/images/portrait.jpg
Binary files differ
diff --git a/zola-static/templates/index.html b/zola-static/templates/index.html
index 3c83240..4058dff 100644
--- a/zola-static/templates/index.html
+++ b/zola-static/templates/index.html
@@ -18,13 +18,6 @@
<b><a href="{{ get_url(path='@/projects/_index.md') }}">View More</a></b>
</div>
<div class="index-section">
- <h2>Links</h2>
- <ul>
- <li><a href="https://github.com/JackJ30">GitHub</a></li>
- <li><a href="https://portfolio.jackjamison.net">Old portfolio (haven't migrated here yet)</a></li>
- </ul>
-</div>
-<div class="index-section">
<h2>Articles</h2>
<ul>
<li><a href="{{ get_url(path='@/blog/sdl-native-wayland.md') }}">Forcing SDL to use Wayland on Wayland</a></li>
@@ -32,5 +25,12 @@
<li><a href="{{ get_url(path='@/blog/emacs-garbage-collection.md') }}">Solving Emacs Garbage Collection Stutters</a></li>
</ul>
</div>
+<div class="index-section">
+ <h2>Links</h2>
+ <ul>
+ <li><a href="https://github.com/JackJ30">GitHub</a></li>
+ <li><a href="https://www.youtube.com/channel/UCwZ1wDZx72TwPCRuG87-a_Q">Youtube</a></li>
+ </ul>
+</div>
<p class="footer-text"><b><a href="{{ get_url(path='@/blog/_index.md') }}">All articles sorted by date</a>&#8226<a href="{{ get_url(path='@/the-archive.md') }}">Archive</a></b></p>
{% endblock content %}