figbert.com-website

[ACTIVE] the website and home of figbert on the clearnet
git clone git://git.figbert.com/figbert.com-website.git
Log | Files | Refs | README | LICENSE

commit 833cf8893726fe96132f79989d5dc5ede4923fef
parent 18e2f211692b3e1f7ae899d12da79f637ba90636
Author: FIGBERT <figbert@figbert.com>
Date:   Tue, 20 Feb 2024 22:53:09 -0800

Add back-dated read books with no reviews

Diffstat:
Acontent/reading/complete/desert-and-the-sea.md | 10++++++++++
Acontent/reading/complete/moonwalking-with-einstein.md | 10++++++++++
Acontent/reading/complete/neuromancer.md | 10++++++++++
Acontent/reading/complete/spies-of-no-country.md | 10++++++++++
Acontent/reading/complete/thousand-crimes-ming-tsu.md | 10++++++++++
Acontent/reading/complete/who-by-fire.md | 10++++++++++
Mtemplates/reading.html | 2+-
7 files changed, 61 insertions(+), 1 deletion(-)

diff --git a/content/reading/complete/desert-and-the-sea.md b/content/reading/complete/desert-and-the-sea.md @@ -0,0 +1,10 @@ ++++ +title = "The Desert and the Sea" +date = 2022-10-15 +[extra] +book = "The Desert and the Sea" +author = "Michael Scott Moore" +finished = 2022-10-15 +rating = "★★★★☆" +no_link = true ++++ diff --git a/content/reading/complete/moonwalking-with-einstein.md b/content/reading/complete/moonwalking-with-einstein.md @@ -0,0 +1,10 @@ ++++ +title = "Moonwalking with Einstein" +date = 2022-11-20 +[extra] +book = "Moonwalking with Einstein" +author = "Joshua Foer" +finished = 2022-11-20 +rating = "★★★☆☆" +no_link = true ++++ diff --git a/content/reading/complete/neuromancer.md b/content/reading/complete/neuromancer.md @@ -0,0 +1,10 @@ ++++ +title = "Neuromancer" +date = 2022-11-29 +[extra] +book = "Neuromancer" +author = "William Gibson" +finished = 2022-11-29 +rating = "★★★★★" +no_link = true ++++ diff --git a/content/reading/complete/spies-of-no-country.md b/content/reading/complete/spies-of-no-country.md @@ -0,0 +1,10 @@ ++++ +title = "Spies of No Country" +date = 2023-07-28 +[extra] +book = "Spies of No Country" +author = "Matti Friedman" +finished = 2023-07-28 +rating = "★★★★☆" +no_link = true ++++ diff --git a/content/reading/complete/thousand-crimes-ming-tsu.md b/content/reading/complete/thousand-crimes-ming-tsu.md @@ -0,0 +1,10 @@ ++++ +title = "The Thousand Crimes of Ming Tsu" +date = 2023-03-09 +[extra] +book = "The Thousand Crimes of Ming Tsu" +author = "Tom Lin" +finished = 2023-03-09 +rating = "★★★★★" +no_link = true ++++ diff --git a/content/reading/complete/who-by-fire.md b/content/reading/complete/who-by-fire.md @@ -0,0 +1,10 @@ ++++ +title = "Why by Fire" +date = 2022-11-22 +[extra] +book = "Who by Fire" +author = "Matti Friedman" +finished = 2022-11-22 +rating = "★★★★★" +no_link = true ++++ diff --git a/templates/reading.html b/templates/reading.html @@ -12,7 +12,7 @@ {% for page in subsection.pages %} <ul class="section-list"> <li> - {% if subsection.extra is not containing("no_link") %} + {% if subsection.extra is not containing("no_link") and page.extra is not containing("no_link") %} <a href="{{ page.permalink }}" class"section-title">{{ page.extra.book }}</a> {% else %} <span class="section-title">{{ page.extra.book }}</span>