From f9fbc939dcc5845cdf2b041af4da0cd92d691af2 Mon Sep 17 00:00:00 2001 From: Vincent Cloutier Date: Wed, 24 Nov 2021 19:45:16 -0500 Subject: [PATCH] basic layout update --- .gitignore | 1 + config.yaml | 24 +++++++++++++----------- content/about.md | 6 ++++++ static/fa-icons/circle.svg | 1 + static/fa-icons/github.svg | 1 + static/fa-icons/mastodon.svg | 1 + 6 files changed, 23 insertions(+), 11 deletions(-) create mode 100644 content/about.md create mode 100644 static/fa-icons/circle.svg create mode 100644 static/fa-icons/github.svg create mode 100644 static/fa-icons/mastodon.svg diff --git a/.gitignore b/.gitignore index 364fdec..b0e0b85 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ public/ +static/fa-icons diff --git a/config.yaml b/config.yaml index 3cd255e..a0bd694 100644 --- a/config.yaml +++ b/config.yaml @@ -1,12 +1,17 @@ languageCode: "en-us" baseUrl: "" -title: "Anubis" +title: "Vincent Cloutier" theme: "anubis" paginate: 10 enableRobotsTXT: true menu: main: + - identifier: about + name: About + title: About + url: /about/ + weight: 1 - identifier: archive name: Archive title: Archive @@ -14,7 +19,7 @@ menu: weight: 0 params: - author: "John Doe" + author: "Vincent Cloutier" email: mail@example.org # used for microformats avatar: "/images/me.png" # used for microformats description: "" @@ -27,7 +32,7 @@ params: # - js/main.js # relative path to "assets" directory dateFormat: "2006-01-02" paginationSinglePost: true - style: light-without-switcher + style: auto readMore: false disableSummary: false # utteranc.es support @@ -35,16 +40,13 @@ params: utterancesTheme: "" # optional utterancesIssue: "" # optional utterancesLabel: "" # optional - webmentions: - url: https://yourdomain.com/webemntions/receive - login: hugo-theme-anubis - pingback: true social: - id: github - name: gohugoio -# - id: hugo -# url: "https://gohugo.io/" -# icon: "hugo" + name: cloutier + - id: circle + url: "https://sr.ht/~cloutier/" + - id: mastodon + url: "https://social.librem.one/@vincent" markup: goldmark: diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..7d1c054 --- /dev/null +++ b/content/about.md @@ -0,0 +1,6 @@ +--- +title: "About" +date: 2021-11-24 09:04:00 +--- + +Software architect living in Montréal, Canada. diff --git a/static/fa-icons/circle.svg b/static/fa-icons/circle.svg new file mode 100644 index 0000000..b8225e1 --- /dev/null +++ b/static/fa-icons/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/fa-icons/github.svg b/static/fa-icons/github.svg new file mode 100644 index 0000000..ec2bab2 --- /dev/null +++ b/static/fa-icons/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/fa-icons/mastodon.svg b/static/fa-icons/mastodon.svg new file mode 100644 index 0000000..e9248ae --- /dev/null +++ b/static/fa-icons/mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file -- 2.38.4