diff --git a/.gitignore b/.gitignore index b512c09..9072c2f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -node_modules \ No newline at end of file +node_modules +resources \ No newline at end of file diff --git a/assets/css/custom.css b/assets/css/custom.css index f716b6c..3ab40f9 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -2,12 +2,8 @@ position: static } -.fixed { - position: fixed -} - -.-mt-4 { - margin-top: -1rem +.mb-4 { + margin-bottom: 1rem } .mt-0 { @@ -30,14 +26,6 @@ margin-top: 0.25rem } -.mt-4 { - margin-top: 1rem -} - -.mb-4 { - margin-bottom: 1rem -} - .block { display: block } @@ -159,14 +147,6 @@ padding: 1rem } -.p-2 { - padding: 0.5rem -} - -.p-3 { - padding: 0.75rem -} - .py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem @@ -182,21 +162,11 @@ padding-right: 1rem } -.py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem -} - .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem } -.py-0 { - padding-top: 0px; - padding-bottom: 0px -} - .pb-2 { padding-bottom: 0.5rem } @@ -292,6 +262,10 @@ } @media (min-width: 1024px) { + .lg\:hidden { + display: none + } + .lg\:flex-row { flex-direction: row } diff --git a/config/_default/markup.toml b/config/_default/markup.toml index 2ca49b3..4e7442e 100644 --- a/config/_default/markup.toml +++ b/config/_default/markup.toml @@ -3,7 +3,11 @@ [goldmark] [goldmark.renderer] - unsafe = true +unsafe = true [highlight] - noClasses = false +noClasses = false + +[tableOfContents] +startLevel = 2 +endLevel = 4 diff --git a/content/posts/2021-12-23-history-of-yet-another-blog.md b/content/posts/2021-12-23-history-of-yet-another-blog/_index.md similarity index 100% rename from content/posts/2021-12-23-history-of-yet-another-blog.md rename to content/posts/2021-12-23-history-of-yet-another-blog/_index.md diff --git a/content/posts/2022-02-13-build-your-own-docker-swarm-cluster.md b/content/posts/2022-02-13-build-your-own-docker-swarm-cluster/_index.md similarity index 100% rename from content/posts/2022-02-13-build-your-own-docker-swarm-cluster.md rename to content/posts/2022-02-13-build-your-own-docker-swarm-cluster/_index.md diff --git a/content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2.md b/content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2/_index.md similarity index 99% rename from content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2.md rename to content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2/_index.md index 23b502a..6134c8d 100644 --- a/content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2.md +++ b/content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2/_index.md @@ -366,7 +366,7 @@ After few seconds, Traefik should launch and generate proper SSL certificate for If properly configured, you will be prompted for access. After entering admin as user and your own chosen password, you should finally access to the traefik dashboard ! -![Traefik Dashboard](/traefik-dashboard.png) +![Traefik Dashboard](traefik-dashboard.png) ### Portainer diff --git a/content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2/traefik-dashboard.png b/content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2/traefik-dashboard.png new file mode 100644 index 0000000..719a889 Binary files /dev/null and b/content/posts/2022-02-18-build-your-own-docker-swarm-cluster-part-2/traefik-dashboard.png differ diff --git a/resources/_gen/images/author_hua8a40edfb23cf2d10273cff90986bc67_75105_192x192_fill_q75_box_smart1.jpg b/resources/_gen/images/author_hua8a40edfb23cf2d10273cff90986bc67_75105_192x192_fill_q75_box_smart1.jpg deleted file mode 100644 index 432c752..0000000 Binary files a/resources/_gen/images/author_hua8a40edfb23cf2d10273cff90986bc67_75105_192x192_fill_q75_box_smart1.jpg and /dev/null differ diff --git a/resources/_gen/images/author_hua8a40edfb23cf2d10273cff90986bc67_75105_288x288_fill_q75_box_smart1.jpg b/resources/_gen/images/author_hua8a40edfb23cf2d10273cff90986bc67_75105_288x288_fill_q75_box_smart1.jpg deleted file mode 100644 index a093957..0000000 Binary files a/resources/_gen/images/author_hua8a40edfb23cf2d10273cff90986bc67_75105_288x288_fill_q75_box_smart1.jpg and /dev/null differ diff --git a/tailwind.config.js b/tailwind.config.js index 14828e5..f0ac7ee 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,6 +4,6 @@ module.exports = { "./content/**/*.{html,md}", ], safelist: [ - 'sm:flex-row', 'lg:flex-row' + 'sm:flex-row', 'lg:flex-row', 'lg:hidden' ], };