diff options
| -rw-r--r-- | TODO | 9 | ||||
| -rw-r--r-- | zola-static/sass/base.scss | 2 | ||||
| -rw-r--r-- | zola-static/static/images/portrait.jpg | bin | 2940276 -> 166099 bytes | |||
| -rw-r--r-- | zola-static/templates/index.html | 14 |
4 files changed, 14 insertions, 11 deletions
@@ -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 Binary files differindex 85fd2e4..d4ddc7a 100644 --- a/zola-static/static/images/portrait.jpg +++ b/zola-static/static/images/portrait.jpg 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>•<a href="{{ get_url(path='@/the-archive.md') }}">Archive</a></b></p> {% endblock content %} |
