diff --git a/.gitignore b/.gitignore index f8c1755..795951d 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,6 @@ Thumbs.db hugo.exe hugo.darwin hugo.linux + +# scripts +*.sh \ No newline at end of file diff --git a/config/_default/config.toml b/config/_default/config.toml index 932713e..3b21e73 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -4,10 +4,14 @@ baseURL = "https://it-services.trez.wtf/" defaultContentLanguage = "en" -theme = "congo" enableRobotsTXT = true pagerSize = 10 summaryLength = 0 [outputs] home = ["HTML", "RSS", "JSON"] + +[markup] + defaultMarkdownHandler = "goldmark" + [markup.goldmark.renderer] + unsafe = true diff --git a/config/_default/module.toml b/config/_default/module.toml index e90665b..9415d2d 100644 --- a/config/_default/module.toml +++ b/config/_default/module.toml @@ -1,3 +1,11 @@ [hugoVersion] extended = true min = "0.87.0" + +[module] + +[[module.imports]] + path = "./themes/poison" + +[[module.imports]] + path = "./themes/congo" diff --git a/content/index.md b/content/_index.md similarity index 96% rename from content/index.md rename to content/_index.md index 2866797..b8c446e 100644 --- a/content/index.md +++ b/content/_index.md @@ -16,7 +16,7 @@ Enterprise-level skills and offerings for SMBs (Small-to-Mid-sized Businesses) - Hardware (Desktops, Laptops, Tablets, Phones, Printers & More) - Installation/setup/activation - - Diagnotics & Troubleshooting + - Diagnostics & Troubleshooting - Replacements/upgrades (hard drives, memory/RAM, video cards, batteries & more) - Data backup & recovery - Software @@ -30,7 +30,7 @@ Enterprise-level skills and offerings for SMBs (Small-to-Mid-sized Businesses) - Firewall installation, setup, & configuration - Smart home setup, configuration, and troubleshooting (Amazon Echo, Google Home, SmartThings, etc.) - Individuals & SMBs - - Web development, implementation, & maitenance + - Web development, implementation, & maintenance - On-premise and cloud infrastructure, including but not limited to servers, virtualization, databases, CRM (Customer Relationship Management) and ERP (Enterprise Resource Planning) solutions, monitoring, automation, & disaster recovery - Custom smart home solutions - Monthly retainer(s) available upon request diff --git a/layouts/partials/header/custom.html b/layouts/_partials/header/custom.html similarity index 100% rename from layouts/partials/header/custom.html rename to layouts/_partials/header/custom.html diff --git a/layouts/partials/header/extend-head.html b/layouts/_partials/header/extend-head.html similarity index 100% rename from layouts/partials/header/extend-head.html rename to layouts/_partials/header/extend-head.html diff --git a/layouts/partials/logo.html b/layouts/_partials/logo.html similarity index 100% rename from layouts/partials/logo.html rename to layouts/_partials/logo.html