Skip to content

Commit

Permalink
add darkmode
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanophile committed Apr 18, 2024
1 parent 8ca7e31 commit 8cba881
Show file tree
Hide file tree
Showing 10 changed files with 231 additions and 107 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ output is a separate repo for website which is a git submodule. Also the theme i

using markdown
- https://github.com/TheDigitalCatOnline/blog_source
- https://github.com/mattmakai/fullstackpython.com
- https://kevinyap.ca/
- https://github.com/rust-lang/this-week-in-rust

using rst
- https://github.com/benhoff/blog

using rst:
- https://github.com/benhoff/blog
- https://github.com/getpelican/pelican-blog
8 changes: 6 additions & 2 deletions content/pages/About.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ I am a software and machine learning developer in [Sydney](http://en.wikipedia.o

I'm also quite keen on gibbons 🐒.

I acknowledge and pay my respects to the Traditional Custodians of the land on which I work and live, and their elders past, present, and emerging. Sovereignty was never ceded.
I acknowledge and pay my respects to the Traditional Custodians of the land on which I work and live, and their elders past and present. Sovereignty was never ceded.

## About Website
This second version of my homepage hosted by [Github Pages](https://docs.github.com/en/pages), [DNS with Cloudflare](https://www.cloudflare.com/) and created using [Pelican](https://github.com/getpelican/pelican).



This second version of my homepage hosted by Github Pages and created using [Pelican](https://github.com/getpelican/pelican).
9 changes: 4 additions & 5 deletions content/pages/CV.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
Title: CV
Author: Matt Gibson
Summary: My CV
Summary: "Experienced professional seeking job opportunities. Specialisations in machine learning, computer vision, and data analysis. Ph.D. in Computer Vision and Machine Learning. Proficient in Python, Tensorflow, Pytorch, and more."


Looking for work. My email can be found on my github commits.

### Experience

## Experience

- Contract Developer
- Machine Learning Researcher
- Research Engineer
- Data Scientist
- Data Analyst

### Education
## Education


- Ph.D. UNSW, CS (Computer Vision and Machine learning)
- M.Sc. University of Sydney, Maths (Algebraic Combinatorics)
- B.Sc. University of Auckland, Maths (H1) + Computation and Logic

### Skills
## Skills

- Tools: Linux, Tensorflow, Pytorch
- Techniques: Deep Learning, Computer Vision, Time Series
Expand Down
40 changes: 27 additions & 13 deletions pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,24 @@

# configure automatically if using githubpages + custom domain
SITEURL = ""
DEBUG = True
RELATIVE_URLS = True

TIMEZONE = "Australia/Sydney"


# ▼▼▼▼▼▼▼▼▼▼ OVERWRITTEN in publishconf.py ▼▼▼▼
# configured automatically if using githubpages + custom domain
SITEURL = "https://matthew-gibson.com"

MENUITEMS = [
("About", "/index.html"),
# ("Projects", "/pages/projects.html"),
("CV", "/pages/CV.html"),
("Blog", "/category/blog.html"),
# ("Contact", "/pages/contact.html"),
]
# ▼▼▼▼▼▼▼▼▼▼ OVERWRITTEN in publishconf.py ▼▼▼▼
DEBUG = True
RELATIVE_URLS = True
# ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲


LOAD_CONTENT_CACHE = False


Expand All @@ -55,16 +57,9 @@
"extra/favicon.ico": {"path": "favicon.ico"},
}

SITEMAP = {
"format": "txt",
"priorities": {"articles": 0.5, "indexes": 0.5, "pages": 0.5},
"changefreqs": {"articles": "monthly", "indexes": "daily", "pages": "monthly"},
}


# IGNORE_FILES = ["drafts/*"]

# #### URL settings ####

# should mirror filesystem hierarchy
# see: https://docs.getpelican.com/en/4.9.1/settings.html#url-settings
PATH_METADATA = "(?P<path_no_ext>.*)\..*" # don't fix this syntax warning
Expand All @@ -88,3 +83,22 @@
# USER_LOGO_URL = SITEURL + "/images/ok_photo.JPG"
# GOOGLE_ANALYTICS = "UA-36248181-1"
# TAGLINE = "Code monkey who enjoys accumulating technical knowledge."


TYPOGRIFY = True

# #### Plugins - SEO ####
# src: https://github.com/pelican-plugins/seo
# pelicanconf.py or publishconf.py
SEO_REPORT = True # SEO report is enabled by default
SEO_ENHANCER = True # SEO enhancer is disabled by default
SEO_ENHANCER_OPEN_GRAPH = True # Subfeature of SEO enhancer
SEO_ENHANCER_TWITTER_CARDS = False # Subfeature of SEO enhancer


# #### Plugins - Sitemap ####
SITEMAP = {
"format": "txt",
"priorities": {"articles": 0.5, "indexes": 0.5, "pages": 0.5},
"changefreqs": {"articles": "monthly", "indexes": "daily", "pages": "monthly"},
}
Empty file.
Loading

0 comments on commit 8cba881

Please sign in to comment.