From 3f667c8c8b25f89ef2758ed6cfeac81b23a745c3 Mon Sep 17 00:00:00 2001 From: Dickson Neoh Tze How Date: Fri, 14 Jan 2022 12:20:04 +0800 Subject: Update skillSection.html --- layouts/partials/skillSection.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/skillSection.html b/layouts/partials/skillSection.html index 49edafe..52dfb75 100644 --- a/layouts/partials/skillSection.html +++ b/layouts/partials/skillSection.html @@ -1,6 +1,6 @@ {{ with .Site.Data.skillSection }} {{ if .enable }} -
-- cgit v1.2.3 From 93bd6cedb6cc0787f09ea4ebcda0c6b661b55f18 Mon Sep 17 00:00:00 2001 From: dnth Date: Fri, 14 Jan 2022 13:36:19 +0800 Subject: update config.toml to include Skills on site header --- exampleSite/config.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index e910839..337da55 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -25,13 +25,17 @@ name = "Resume" url = "#resume" weight = 5 [[menu.main]] +name = "Skills" +url = "#skills" +weight = 6 +[[menu.main]] name = "Blog" url = "#blog" -weight = 6 +weight = 7 [[menu.main]] name = "Contact" url = "#contact" -weight = 7 +weight = 8 # Sitemap Menu [[menu.sitemap]] -- cgit v1.2.3 From d08818f09659a9f008d5ccc2defcce37e913adb2 Mon Sep 17 00:00:00 2001 From: dnth Date: Sun, 13 Feb 2022 18:48:01 +0800 Subject: add toc --- layouts/shortcodes/toc.html | 8 ++++++++ static/style.css | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 layouts/shortcodes/toc.html create mode 100644 static/style.css diff --git a/layouts/shortcodes/toc.html b/layouts/shortcodes/toc.html new file mode 100644 index 0000000..03a20c9 --- /dev/null +++ b/layouts/shortcodes/toc.html @@ -0,0 +1,8 @@ +
+ +

+ Table of Contents +

+ + {{ .Page.TableOfContents }} +
\ No newline at end of file diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..1f571bb --- /dev/null +++ b/static/style.css @@ -0,0 +1,3 @@ +nav > ul > li { + list-style: none; + } \ No newline at end of file -- cgit v1.2.3 From c2a131677bed96e3b127def7c93d9b2dbf11d311 Mon Sep 17 00:00:00 2001 From: dnth Date: Sun, 13 Feb 2022 19:31:10 +0800 Subject: add reading time --- layouts/blog/single.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layouts/blog/single.html b/layouts/blog/single.html index 8f4111b..c70315b 100644 --- a/layouts/blog/single.html +++ b/layouts/blog/single.html @@ -50,6 +50,7 @@
+ Reading time: {{ math.Round (div (countwords .Content) 220.0) }} minutes. {{ .Content }}
-- cgit v1.2.3 From 603e997b193a184a1ac4ecb0f53ccc4d47c389d4 Mon Sep 17 00:00:00 2001 From: dnth Date: Thu, 17 Feb 2022 10:27:12 +0800 Subject: remove toc and style --- layouts/shortcodes/toc.html | 8 -------- static/style.css | 3 --- 2 files changed, 11 deletions(-) delete mode 100644 layouts/shortcodes/toc.html delete mode 100644 static/style.css diff --git a/layouts/shortcodes/toc.html b/layouts/shortcodes/toc.html deleted file mode 100644 index 03a20c9..0000000 --- a/layouts/shortcodes/toc.html +++ /dev/null @@ -1,8 +0,0 @@ -
- -

- Table of Contents -

- - {{ .Page.TableOfContents }} -
\ No newline at end of file diff --git a/static/style.css b/static/style.css deleted file mode 100644 index 1f571bb..0000000 --- a/static/style.css +++ /dev/null @@ -1,3 +0,0 @@ -nav > ul > li { - list-style: none; - } \ No newline at end of file -- cgit v1.2.3 From 745507f0248458edb60764aab47abfd313852d16 Mon Sep 17 00:00:00 2001 From: dnth Date: Thu, 17 Feb 2022 10:28:28 +0800 Subject: remove reading time --- layouts/blog/single.html | 1 - 1 file changed, 1 deletion(-) diff --git a/layouts/blog/single.html b/layouts/blog/single.html index c70315b..8f4111b 100644 --- a/layouts/blog/single.html +++ b/layouts/blog/single.html @@ -50,7 +50,6 @@
- Reading time: {{ math.Round (div (countwords .Content) 220.0) }} minutes. {{ .Content }}
-- cgit v1.2.3