From 631fe443f043bd1a4b0b901f667da553f5123600 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Fri, 5 Apr 2024 14:27:36 +1100 Subject: [PATCH] fix typo --- content/pages/About.md | 3 ++- content/pages/CV.md | 3 +++ pelicanconf.py | 5 +---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/content/pages/About.md b/content/pages/About.md index 28ca088..704bddd 100644 --- a/content/pages/About.md +++ b/content/pages/About.md @@ -1,8 +1,9 @@ +--- Title: About Me Author: Matt Gibson Summary: About me page save_as: index.html - +--- I am a software and machine learning developer in [Sydney](http://en.wikipedia.org/wiki/Sydney), NSW, Australia. I like [computing](https://en.wikipedia.org/wiki/MOS_Technology_6502), [data](https://search.r-project.org/CRAN/refmans/vcd/html/HorseKicks.html), [machine learning](https://pytorch.org/) and [cooking](https://web.archive.org/web/20160210065535/http://www.seriouseats.com/the-food-lab/?ref=nav_main). I'm delighted by the scientific enterprise which allows us ["to see a World in a Grain of Sand"](https://www.poetryfoundation.org/poems/43650/auguries-of-innocence). diff --git a/content/pages/CV.md b/content/pages/CV.md index f90c8b2..b9f1cc8 100644 --- a/content/pages/CV.md +++ b/content/pages/CV.md @@ -1,6 +1,9 @@ +--- Title: CV Author: Matt Gibson Summary: My CV +--- + Looking for work. My email can be found on my github commits. diff --git a/pelicanconf.py b/pelicanconf.py index 66505d7..5b110e9 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -14,9 +14,6 @@ # SITEURL = "https://matthew-gibson.com" TIMEZONE = "Australia/Sydney" -# where the source is located -PATH = "content" - # ▼▼▼▼▼▼▼▼▼▼ OVERWRITTEN in publishconf.py ▼▼▼▼ RELATIVE_URLS = True @@ -60,7 +57,7 @@ # #### URL settings #### # should mirror filesystem hierarchy # see: https://docs.getpelican.com/en/4.9.1/settings.html#url-settings -PATH_METADATA = "(?P.*)\..*" +PATH_METADATA = "(?P.*)\..*" # don't fix this syntax warning ARTICLE_URL = ARTICLE_SAVE_AS = "{path_no_ext}.html" PAGE_URL = PAGE_SAVE_AS = "{path_no_ext}.html"