Compare commits

...

5 Commits

Author SHA1 Message Date
Mike Wilson
5243e7de36 Add link to gitea 2025-09-04 12:08:17 -04:00
Mike Wilson
f36a40d596 Add link to books page 2025-09-04 11:44:45 -04:00
Mike Wilson
344ca6a974 Add About Me page 2025-09-04 11:37:42 -04:00
Mike Wilson
11d128c2bd Update reading list 2025-07-31 10:32:40 -04:00
Mike Wilson
f6f4d52e29 More initial configuration 2025-06-24 10:42:32 -04:00
4 changed files with 67 additions and 2 deletions

5
content/about.md Normal file
View File

@@ -0,0 +1,5 @@
+++
title = "About Me"
description = "About Me | Mike Wilson"
template = "post.html"
+++

52
content/books.md Normal file
View File

@@ -0,0 +1,52 @@
+++
title = "Reading List"
description = "A list of books I've read or planned to read"
template = "post.html"
+++
Here's a list of books I've read and books I plan to read in the future. This page is as much for my own record as anything else.
If I feel like it, I may post reviews on certain books, in which case I'll link to those posts below.
# Currently Reading
* Crime and Punishment
* Economics in One Lesson - Henry Hazlitt
# Read
* The Law - Frédéric Bastiat
* Endurance - Alfred Lansing
* Sunrise on the Reaping - Suzanne Collins
* Mockingjay - Suzanne Collins
* Catching Fire - Suzanne Collins
* The Hunger Games - Suzanne Collins
* The Sun Also Rises - Ernest Hemingway
* Cannery Rown - John Steinbeck
* East of Eden - John Steinbeck
* The Lord of the Rings - J.R.R. Tolkien
* The Hobbit - J.R.R. Tolkien
* Harry Potter and the Deathly Hallows - J.K. Rowling
* Harry Potter and the Half Blood Prince - J.K. Rowling
* Harry Potter and the Order of the Phoenix - J.K. Rowling
* Harry Potter and the Goblet of Fire - J.K. Rowling
* Harry Potter and the Prisoner of Azkaban - J.K. Rowling
* Harry Potter and the Chamber of Secrets - J.K. Rowling
* Harry Potter and the Philosopher's Stone - J.K. Rowling
* The Grapes of Wrath - John Steinbeck
* The First Fifteen Lives of Harry August - Claire North
* The Road - Cormac McCarthy
* The Tokyo Zodiac Murders - Sōji Shimada
* Kafka on the Shore - Haruki Murakami
* A Christmas Carol - Charles Dickens
* The Art of War - Sun Tzu
* Meditations - Marcus Aurelius
* The Martian - Andy Weir
* Dune - Frank Herbert
* Murder on the Orient Express - Agatha Christie
* 1984 - George Orwell
* Industrial Society and Its Future - Theodore Kaczynski
* Star Wars: Heir to the Empire - Timothy Zahn
* Slaughterhouse-Five - Kurt Vonnegut Jr.
* Common Sense - Thomas Paine
* Gone Girl - Gillian Flynn

View File

@@ -7,6 +7,15 @@
</head>
<body>
<header>
<nav>
<a href="{{ get_url(path='/') }}">Home</a>
<a href="{{ get_url(path='@/about.md') }}">About</a>
<a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>
<a href="{{ get_url(path='@/books.md') }}">Books</a>
<a href="https://git.mjwilson.org">Projects</a>
</nav>
</header>
<section class="section">
<div class="container">
{% block content %} {% endblock content %}

View File

@@ -2,7 +2,6 @@
{% block content %}
<h1 class="title">
This is my blog made with Zola.
Mike Wilson
</h1>
<p><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.</p>
{% endblock content %}