From 3610863d6e551eb4e7fc3b0f869e7a9d69579267 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Mon, 8 Jun 2020 15:24:34 +0100 Subject: [PATCH 01/12] Updated submodule blog/themes/panaetius-theme --- blog/themes/panaetius-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/themes/panaetius-theme b/blog/themes/panaetius-theme index db2a949..bb38781 160000 --- a/blog/themes/panaetius-theme +++ b/blog/themes/panaetius-theme @@ -1 +1 @@ -Subproject commit db2a9496c7494528824042b87d9d7288ecbacf00 +Subproject commit bb3878173108315856ee62ee4c31ce62854f3c58 From 603f605ce3d8a0bce73f29d84f72cb133c925a64 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Mon, 8 Jun 2020 15:25:39 +0100 Subject: [PATCH 02/12] Adding Hugo Notice as submodule --- .gitmodules | 3 +++ blog/themes/hugo-notice | 1 + 2 files changed, 4 insertions(+) create mode 160000 blog/themes/hugo-notice diff --git a/.gitmodules b/.gitmodules index 2bca1b9..d40bd01 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "blog/themes/panaetius-chunky-theme"] path = blog/themes/panaetius-chunky-theme url = https://git.panaetius.co.uk/hugo/panaetius-chunky-theme +[submodule "blog/themes/hugo-notice"] + path = blog/themes/hugo-notice + url = https://github.com/martignoni/hugo-notice diff --git a/blog/themes/hugo-notice b/blog/themes/hugo-notice new file mode 160000 index 0000000..ff7aa2a --- /dev/null +++ b/blog/themes/hugo-notice @@ -0,0 +1 @@ +Subproject commit ff7aa2a40c2f122ceb502150d77b0c55f4ce7878 From 1a0cd641a169ba173042337bd36b0bc0e522c22b Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Mon, 8 Jun 2020 15:47:58 +0100 Subject: [PATCH 03/12] Updating todo --- tasks.todo | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/tasks.todo b/tasks.todo index 0c75155..cf4744e 100644 --- a/tasks.todo +++ b/tasks.todo @@ -1,7 +1,7 @@ Projects: Tomorrow: - ☐ Document adding background as wallpaper + ✔ Document adding background as wallpaper @done (6/7/2020, 7:46:41 PM) Tasks: @@ -15,7 +15,7 @@ Tasks: ✔ Add image to post + document @done (5/5/2020, 7:32:50 PM) Colour: - ☐ Add colour to default `` like Forestry ` like Forestry . - Make sure when adding a new font that these weights are added to the font family. It might not be possible to add them for all styles (e.g bolder and italic combined) so just cover as much as possible. + ✔ Change the bootstrap variables above to the font-family you want to use. @done (6/8/2020, 3:45:53 PM) + ✔ Create a new font-family with all the weights/types you want in the css @done (6/8/2020, 3:45:54 PM) + ✔ Change the $headings-font-weight variable to the weight you want to use. You should create this style in the css above for the font family. @done (6/8/2020, 3:45:57 PM) + ✔ You can check all availbale css variables in the bootstrap `_variables.scss` file: . - Make sure when adding a new font that these weights are added to the font family. It might not be possible to add them for all styles (e.g bolder and italic combined) so just cover as much as possible. @done (6/8/2020, 3:45:58 PM) Maybe template could be: - ☐ keep default of light:300, normal:400 and bold:700. - ☐ overwrite the header weight to 400 from 500 - ☐ create a font family that implements the usual styles - ☐ if you want to use lighter and bolder, implement 100 and 900 + ✔ keep default of light:300, normal:400 and bold:700. @done (6/8/2020, 3:46:02 PM) + ✔ overwrite the header weight to 400 from 500 @done (6/8/2020, 3:46:04 PM) + ✔ create a font family that implements the usual styles @done (6/8/2020, 3:46:04 PM) + ✔ if you want to use lighter and bolder, implement 100 and 900 @done (6/8/2020, 3:46:05 PM) Sidebar: - ☐ Add a table of contents to the side. + ✔ Add a table of contents to the side. @done (6/8/2020, 3:46:09 PM) Notes: - Maybe fontawesome docs as a guide? (https://fontawesome.com/how-to-use/on-the-web/referencing-icons/basic-use) @@ -97,20 +97,20 @@ Tasks: ☐ Change the front matter for `_index.md` in `post`. Search: - ☐ Find simple CSS design for search bar. + ✔ Find simple CSS design for search bar. @done (6/8/2020, 3:46:30 PM) ✔ Implement search using a library. @done (5/13/2020, 1:57:50 AM) ✔ Search needs to recusrively go into folders @done (5/12/2020, 3:36:52 AM) ✔ Document using and creating a search page with lunrjs. (use the temporary search note). @done (5/21/2020, 9:22:39 PM) - ☐ Use GULP to generate the lunr index when running webpack build. - ☐ Use webpack to install lunr and load it in - ☐ Use webpack to load the `search-index.json` file into the bundle. + ✔ Use GULP to generate the lunr index when running webpack build. @done (6/8/2020, 3:46:31 PM) + ✔ Use webpack to install lunr and load it in @done (6/8/2020, 3:46:32 PM) + ✔ Use webpack to load the `search-index.json` file into the bundle. @done (6/8/2020, 3:46:34 PM) Webpack: - ☐ Document and follow this tutorial: (https://www.sitepoint.com/bundle-static-site-webpack/). - ☐ Look at the chunky themes webpack.prod.js - document all the extra modules being used. - ☐ Add the lunr index build to the webpack bundle. - ☐ Include lunr in the bundle + any other modules needed for search. - ☐ Use webpack to fill a html partial for the baseof.html file (see the notes). + ✔ Document and follow this tutorial: (https://www.sitepoint.com/bundle-static-site-webpack/). @done (6/8/2020, 3:46:39 PM) + ✔ Look at the chunky themes webpack.prod.js - document all the extra modules being used. @done (6/8/2020, 3:46:40 PM) + ✔ Add the lunr index build to the webpack bundle. @done (6/8/2020, 3:46:41 PM) + ✔ Include lunr in the bundle + any other modules needed for search. @done (6/8/2020, 3:46:43 PM) + ✔ Use webpack to fill a html partial for the baseof.html file (see the notes). @done (6/8/2020, 3:46:45 PM) Tutorials: ☐ https://www.integralist.co.uk/posts/python-asyncio/ @@ -118,8 +118,8 @@ Tasks: This blog in general has some interesting things to look at. Restructure: - ☐ Create new theme entirely, using a fresh webpack configuration. - ☐ Move the AOS from the partials css and js into a webpack configuration. + ✔ Create new theme entirely, using a fresh webpack configuration. @done (6/8/2020, 3:46:50 PM) + ✔ Move the AOS from the partials css and js into a webpack configuration. @done (6/8/2020, 3:46:52 PM) CSS: ☐ Document using a fullscreen wallpaper (front-background in _variables.scss) From 5a83b39eec1190c762e7f33ea2e9c739e1858230 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Mon, 8 Jun 2020 15:49:16 +0100 Subject: [PATCH 04/12] Remove completed todos --- tasks.todo | 68 ------------------------------------------------------ 1 file changed, 68 deletions(-) diff --git a/tasks.todo b/tasks.todo index cf4744e..115554a 100644 --- a/tasks.todo +++ b/tasks.todo @@ -1,62 +1,28 @@ Projects: - Tomorrow: - ✔ Document adding background as wallpaper @done (6/7/2020, 7:46:41 PM) - -Tasks: - - Responsive: ☐ Fix the navbar on mobile. ☐ Change text on homepage on mobile. Images: ☐ Add random animal image to corner of card. - ✔ Add image to homepage + document @done (5/5/2020, 4:09:20 AM) - ✔ Add image to post + document @done (5/5/2020, 7:32:50 PM) - Colour: - ✔ Add colour to default `` like Forestry . - Make sure when adding a new font that these weights are added to the font family. It might not be possible to add them for all styles (e.g bolder and italic combined) so just cover as much as possible. @done (6/8/2020, 3:45:58 PM) - Maybe template could be: - ✔ keep default of light:300, normal:400 and bold:700. @done (6/8/2020, 3:46:02 PM) - ✔ overwrite the header weight to 400 from 500 @done (6/8/2020, 3:46:04 PM) - ✔ create a font family that implements the usual styles @done (6/8/2020, 3:46:04 PM) - ✔ if you want to use lighter and bolder, implement 100 and 900 @done (6/8/2020, 3:46:05 PM) - Sidebar: - ✔ Add a table of contents to the side. @done (6/8/2020, 3:46:09 PM) - Notes: - - Maybe fontawesome docs as a guide? (https://fontawesome.com/how-to-use/on-the-web/referencing-icons/basic-use) - Content: ☐ Add a series taxonomy Notes: @@ -70,22 +36,10 @@ Tasks: Tags will be specifics: python, aws etc Series will be like a collection of posts in a series. - Animate: - ✔ Add animate on scroll @done (5/5/2020, 11:12:10 PM) - - Email: - ✔ Configure AWS SES for sending emails with commento. @done (5/5/2020, 11:08:13 PM) - - Links: Useful links that might be useful to the above for later ☐ https://www.netlify.com/blog/2018/07/24/hugo-tips-how-to-create-author-pages/ SEO: - ✔ Document + Set all metadata using https://www.skcript.com/svr/perfect-seo-meta-tags-with-hugo/ @done (5/16/2020, 3:48:59 AM) - ✔ Change the manifest.json @done (5/16/2020, 3:49:00 AM) - ✔ Set the favicon and apple-touch-icons @done (5/16/2020, 3:49:01 AM) - ✔ Fix the structured data @done (5/16/2020, 3:49:02 AM) - ✔ Finish the metadata + document @done (5/16/2020, 3:49:03 AM) ☐ Create social media accounts for the site and add to structured data + config.toml CI: @@ -96,30 +50,8 @@ Tasks: Final build: ☐ Change the front matter for `_index.md` in `post`. - Search: - ✔ Find simple CSS design for search bar. @done (6/8/2020, 3:46:30 PM) - ✔ Implement search using a library. @done (5/13/2020, 1:57:50 AM) - ✔ Search needs to recusrively go into folders @done (5/12/2020, 3:36:52 AM) - ✔ Document using and creating a search page with lunrjs. (use the temporary search note). @done (5/21/2020, 9:22:39 PM) - ✔ Use GULP to generate the lunr index when running webpack build. @done (6/8/2020, 3:46:31 PM) - ✔ Use webpack to install lunr and load it in @done (6/8/2020, 3:46:32 PM) - ✔ Use webpack to load the `search-index.json` file into the bundle. @done (6/8/2020, 3:46:34 PM) - - Webpack: - ✔ Document and follow this tutorial: (https://www.sitepoint.com/bundle-static-site-webpack/). @done (6/8/2020, 3:46:39 PM) - ✔ Look at the chunky themes webpack.prod.js - document all the extra modules being used. @done (6/8/2020, 3:46:40 PM) - ✔ Add the lunr index build to the webpack bundle. @done (6/8/2020, 3:46:41 PM) - ✔ Include lunr in the bundle + any other modules needed for search. @done (6/8/2020, 3:46:43 PM) - ✔ Use webpack to fill a html partial for the baseof.html file (see the notes). @done (6/8/2020, 3:46:45 PM) - - Tutorials: ☐ https://www.integralist.co.uk/posts/python-asyncio/ Notes: This blog in general has some interesting things to look at. - Restructure: - ✔ Create new theme entirely, using a fresh webpack configuration. @done (6/8/2020, 3:46:50 PM) - ✔ Move the AOS from the partials css and js into a webpack configuration. @done (6/8/2020, 3:46:52 PM) - - CSS: ☐ Document using a fullscreen wallpaper (front-background in _variables.scss) From 0ca334a8c1046a372f2f1e3f28dfad26f97b676f Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Mon, 8 Jun 2020 22:05:57 +0100 Subject: [PATCH 05/12] Removed submodule blog/themes/hugo-notice --- .gitmodules | 5 +---- blog/themes/hugo-notice | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 160000 blog/themes/hugo-notice diff --git a/.gitmodules b/.gitmodules index d40bd01..5c912b2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,7 +3,4 @@ url = https://git.panaetius.co.uk/hugo/panaetius-theme [submodule "blog/themes/panaetius-chunky-theme"] path = blog/themes/panaetius-chunky-theme - url = https://git.panaetius.co.uk/hugo/panaetius-chunky-theme -[submodule "blog/themes/hugo-notice"] - path = blog/themes/hugo-notice - url = https://github.com/martignoni/hugo-notice + url = https://git.panaetius.co.uk/hugo/panaetius-chunky-theme \ No newline at end of file diff --git a/blog/themes/hugo-notice b/blog/themes/hugo-notice deleted file mode 160000 index ff7aa2a..0000000 --- a/blog/themes/hugo-notice +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ff7aa2a40c2f122ceb502150d77b0c55f4ce7878 From 1ed499be44b151926de8efc00ff707a179099eff Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 9 Jun 2020 01:38:34 +0100 Subject: [PATCH 06/12] Removing .DS_Store --- .DS_Store | Bin 6148 -> 0 bytes blog/static/images/.DS_Store | Bin 6148 -> 0 bytes blog/themes/.DS_Store | Bin 8196 -> 0 bytes 3 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .DS_Store delete mode 100644 blog/static/images/.DS_Store delete mode 100644 blog/themes/.DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index cb14251461b6d3498700a67fab924c30bebd60a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHKK~EDw6n+C$x<%|t!Kw$XX;2PGS`TVsjI}^WLktZi2mvg+-JxvQ?$q5a6>3c{ zB>n&odh_bRKjF!PcM}i(0uLr$yy=_SDYOM|#2B)#nfczldGGDa*V&mJ03g|#kp@r! zAdH1$D1y~7!uxqSB7M@LAQGNqb|Igtxt@dV&=K#z5HJuh@V_y@-`x=CU;%@2*ZVsM zCfHzf_U9~C(k-T=jc*wDv5fx~f?7u&z3x_}-zU9lnXZ>geIb4Qp)+R(!io}BhLrWf z7ONLL&8xXt%~|EGyyk7`QeR}uI?y$J$)xq7Ix@vFl?O=Y9!E;0Bqw0m|a5NSh8NC>fUoNUKT`O&u9X`q_W-%vg z)#$QWVs^pYqstzB?s2844)^#iP~+*LX>qrTJ|l+)k!#kW)Ltz+rZK;{=~8dGLtj~Q zk=mR`D>-|UVg4PYa=z-B%yyTk<07tTj-%OSn%!NuG@V-Wc9wY_s}$9!h{ZwX9m?ZG z-a=I?nRYq(@Q2S$GLvsB6ek%^3e|mA}=3AKAFfH3K37o{0ZR>B;#XH z2Mh!ZbTiQJH&uTA&)_@!m-~NrP|yk(2pBk343N-tVLFRbl4t9Y$?>x`fn@^=7w*^c oQG{S6k7J?mqxcdQA=sDT3SvfL%SW`J1Rnx|hM)=<_@@l~0emR|=>Px# diff --git a/blog/static/images/.DS_Store b/blog/static/images/.DS_Store deleted file mode 100644 index f6a406870ef391338159db5be77f246787eacff9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHKJx{|x41I+T#vz{Yf``l1`hHaXeL}enTHN3q zSLpEFHL!E!3Qe3!bgIM^L!8ch ziMkrtIXWF;JM%fQv&0QWYK`)v;zDb*fYNJLZ+F{G6eL>o-0Ep1JAlWDqivlDkWt!<6u zBKQM5s3)%;{1cuOJPLvb@dtSD=uO|5*`%Q#gou=4XJF=ecXpn4XP@jlJMRVnNTQUB z0Sp2_2rEau1DkycKhNu)(h~G^A`;{SQ1HQm5_mAaXSC{23Md7X0!jg;fKuQnD1h&5 zUP1@F_vKmDDg~4R$5H{lK18r`j0aeeD3%UvL<)e|hTWo|jd_6JL;{QlSdl2G=u>77 zB%qQY#UPT7=OcVLVm!c#L`erC=|F-jlORJO;_AqYh~Yru5>=}dPzvl-famW0Py_=U zto8YO7FIEncVG=RF`M`Ch(ZDA)csVn=xf?Pxwj86XHS{eQ=6 zHSRvmJ>2P<*(~Ci-klENYs#h6S;)IqZhB?KqyAi-J-_Io{z;z}lFkZ4|LdstbkVn% zr0~E8n@BrlNX1?K(Dd z^2p=&6yA45XtV}2VC{YP0Q#5GR_-?`AfV*EC+@; zUj`c7wF>N`7uXGcvR$Dh9)Y9Tw907>^8Eky!QcOn=H%6^lmbeDf1&_sn@mq8&{cIi zv)e1rwIf)UvGT&lRU`@uHX{}3Sd?K6M9&sXpN Oy3PEt+}Qsg@BcrKiG5T6 From e9678b711ab9999d283382d120b88dda61e1a452 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 9 Jun 2020 01:38:59 +0100 Subject: [PATCH 07/12] Adding hugo-notice Admonitions --- .gitmodules | 5 ++++- blog/config.toml | 2 +- blog/content/post/second_post/index.md | 20 ++++++++++++++++++++ blog/gulpfile.js/index.js | 2 ++ 4 files changed, 27 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 5c912b2..8cc6519 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,4 +3,7 @@ url = https://git.panaetius.co.uk/hugo/panaetius-theme [submodule "blog/themes/panaetius-chunky-theme"] path = blog/themes/panaetius-chunky-theme - url = https://git.panaetius.co.uk/hugo/panaetius-chunky-theme \ No newline at end of file + url = https://git.panaetius.co.uk/hugo/panaetius-chunky-theme +[submodule "blog/themes/hugo-notice-admonition"] + path = blog/themes/hugo-notice-admonition + url = https://git.panaetius.co.uk/hugo/hugo-notice-admonition \ No newline at end of file diff --git a/blog/config.toml b/blog/config.toml index fe710fc..3c6e7d7 100644 --- a/blog/config.toml +++ b/blog/config.toml @@ -1,7 +1,7 @@ baseURL = "http://127.0.0.1:6060" title = "panaetius.io" # theme = "panaetius-chunky-theme" -theme = "panaetius-theme" +theme = ["hugo-notice-admonition", "panaetius-theme"] paginate = 2 languageCode = "en" DefaultContentLanguage = "en" diff --git a/blog/content/post/second_post/index.md b/blog/content/post/second_post/index.md index 8fbae5f..45ba436 100644 --- a/blog/content/post/second_post/index.md +++ b/blog/content/post/second_post/index.md @@ -11,6 +11,8 @@ tags: ["Introduction", "test", "another", "tagging", "hugo", "newz"] Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds. +## + ## Test code ```python @@ -69,3 +71,21 @@ Hugo adds no css to the table. In order to style it you should select the `}} +Note Admonition +{{< /notice >}} + +{{< notice tip >}} +Tip Admonition +{{< /notice >}} + +{{< notice info >}} +Infomation Admonition +{{< /notice >}} + +{{< notice warning >}} +This is a warning notice. Be warned! `code` +{{< /notice >}} diff --git a/blog/gulpfile.js/index.js b/blog/gulpfile.js/index.js index 8853b41..720d17d 100644 --- a/blog/gulpfile.js/index.js +++ b/blog/gulpfile.js/index.js @@ -40,6 +40,8 @@ function minifyImages(cb) { `${currentDir}/static/**/*.svg`, `${themeDir}/static/**/*.png`, `${themeDir}/static/**/*.svg`, + `${currentDir}/public/**/*.png`, + `${currentDir}/public/**/*.svg`, ]) .pipe(imagemin()) .pipe( From 5b26d69005d63263b2740248d429c0cd3eb4cb26 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 9 Jun 2020 01:41:04 +0100 Subject: [PATCH 08/12] Updated submodule blog/themes/panaetius-theme --- blog/themes/panaetius-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/themes/panaetius-theme b/blog/themes/panaetius-theme index bb38781..bd2be62 160000 --- a/blog/themes/panaetius-theme +++ b/blog/themes/panaetius-theme @@ -1 +1 @@ -Subproject commit bb3878173108315856ee62ee4c31ce62854f3c58 +Subproject commit bd2be629860530777d43f0d7962550d103873bee From e761a2eab79d2d00b45d1804c83d5dbe2081817f Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 9 Jun 2020 01:41:08 +0100 Subject: [PATCH 09/12] Added submodule blog/themes/hugo-notice-admonition --- blog/themes/hugo-notice-admonition | 1 + 1 file changed, 1 insertion(+) create mode 160000 blog/themes/hugo-notice-admonition diff --git a/blog/themes/hugo-notice-admonition b/blog/themes/hugo-notice-admonition new file mode 160000 index 0000000..ff7aa2a --- /dev/null +++ b/blog/themes/hugo-notice-admonition @@ -0,0 +1 @@ +Subproject commit ff7aa2a40c2f122ceb502150d77b0c55f4ce7878 From 1d291bf74f5f1923c2443aeee34d95032ee705c8 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 9 Jun 2020 01:41:55 +0100 Subject: [PATCH 10/12] Updated submodule blog/themes/hugo-notice-admonition --- blog/themes/hugo-notice-admonition | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/themes/hugo-notice-admonition b/blog/themes/hugo-notice-admonition index ff7aa2a..1b7157d 160000 --- a/blog/themes/hugo-notice-admonition +++ b/blog/themes/hugo-notice-admonition @@ -1 +1 @@ -Subproject commit ff7aa2a40c2f122ceb502150d77b0c55f4ce7878 +Subproject commit 1b7157d341020302ea14cedfe0472bebfc9d9fb6 From c3d9bf72de9a54b3a78e28f2076a27f9c1b2ed00 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 9 Jun 2020 13:23:50 +0100 Subject: [PATCH 11/12] Updating frontpage image --- blog/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blog/config.toml b/blog/config.toml index 3c6e7d7..32a4c67 100644 --- a/blog/config.toml +++ b/blog/config.toml @@ -54,8 +54,8 @@ author = "authors" header = "panaetius.io" author = "Daniel Tomlinson" description = "Tech blog showcasing Python, Machine-Learning, Vue, Homelab and other technologies to try at home." -homepageImage = "/images/homepage.svg" -logo = "/images/homepage.svg" +homepageImage = "/images/front-images/world.svg" +logo = "/images/front-images/world.svg" share = true twitter = "dmot7291" github = "dtomlinson91" From 3d6c2090b9cef3a42ce051bba2da8c2273635ebe Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 9 Jun 2020 13:25:10 +0100 Subject: [PATCH 12/12] Updated submodule blog/themes/panaetius-theme --- blog/themes/panaetius-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/themes/panaetius-theme b/blog/themes/panaetius-theme index bd2be62..8fa7c40 160000 --- a/blog/themes/panaetius-theme +++ b/blog/themes/panaetius-theme @@ -1 +1 @@ -Subproject commit bd2be629860530777d43f0d7962550d103873bee +Subproject commit 8fa7c40eca61df09e39765018878887fd65dfbe2