diff --git a/.github/workflows/pelican.yml b/.github/workflows/pelican.yml index 5614c97..c293492 100644 --- a/.github/workflows/pelican.yml +++ b/.github/workflows/pelican.yml @@ -11,4 +11,4 @@ jobs: pages: "write" id-token: "write" with: - settings: "pelicanconf.py" \ No newline at end of file + settings: "publishconf.py" \ No newline at end of file diff --git a/content/pages/About.md b/content/pages/About.md index 8ddcc91..5861a68 100644 --- a/content/pages/About.md +++ b/content/pages/About.md @@ -1,7 +1,8 @@ Title: About Me Author: Matt Gibson Summary: About me page -save_as: index.html +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/pelicanconf.py b/pelicanconf.py index 5b110e9..773efb1 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -10,27 +10,30 @@ AUTHOR = "Matt Gibson" SITENAME = "Matt Gibson" SITESUBTITLE = "Artisanal Data and Software Gibbon" + # configure automatically if using githubpages + custom domain -# SITEURL = "https://matthew-gibson.com" +SITEURL = "" +DEBUG = True +RELATIVE_URLS = True + TIMEZONE = "Australia/Sydney" # ▼▼▼▼▼▼▼▼▼▼ OVERWRITTEN in publishconf.py ▼▼▼▼ -RELATIVE_URLS = True -MENUITEMS = [ - ("About", "/"), - # ("Projects", "/pages/projects.html"), - ("CV", "/pages/CV.html"), - ("Blog", "/category/blog.html"), - # ("Contact", "/pages/contact.html"), -] +# MENUITEMS = [ +# ("About", "/pages/About.html"), +# # ("Projects", "/pages/projects.html"), +# ("CV", "/pages/CV.html"), +# ("Blog", "/category/blog.html"), +# # ("Contact", "/pages/contact.html"), +# ] # ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ LOAD_CONTENT_CACHE = False -DISPLAY_PAGES_ON_MENU = False -DISPLAY_CATEGORIES_ON_MENU = False +DISPLAY_PAGES_ON_MENU = True +DISPLAY_CATEGORIES_ON_MENU = True # where the source content is located PATH = "content" diff --git a/publishconf.py b/publishconf.py index d0302ac..1d58dbb 100644 --- a/publishconf.py +++ b/publishconf.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- # from __future__ import unicode_literals # This file is only used if you use `make publish` or @@ -15,6 +13,6 @@ # !!!!! -# SITEURL = "https://matthew-gibson.com" -# RELATIVE_URLS = True +SITEURL = "https://matthew-gibson.com" +RELATIVE_URLS = False # DISPLAY_PAGES_ON_MENU = True