diff --git a/archetypes/default.md b/archetypes/default.md index 810f43b..6d2cec7 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -7,7 +7,7 @@ description: "This is a new post about..." featured: false toc: true comment: true -series: Tips # Projects, Scripts +series: Tips # Projects, Code tags: - 3dprinting - activedirectory diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 164e5cc..a58ec42 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -11,7 +11,16 @@ enableInlineShortcodes = true # sectionPagesMenu = "main" [outputs] - home = ["HTML", "RSS", "JSON"] + home = ['html', 'rss', 'json'] + section = ['html'] + taxonomy = ['html',] + term = ['html', 'rss'] + +# rename rss output from index.xml to feed.xml +[outputFormats] + [outputFormats.rss] + mediatype = "application/rss" + baseName = "feed" [permalinks] posts = ":filename" @@ -41,6 +50,9 @@ enableInlineShortcodes = true [services.instagram] disableInlineCSS = true + [services.rss] + limit = 20 + [services.twitter] disableInlineCSS = true diff --git a/config/_default/menu.toml b/config/_default/menu.toml index 2ae1a5a..a4b6fee 100644 --- a/config/_default/menu.toml +++ b/config/_default/menu.toml @@ -17,9 +17,9 @@ weight = 1 [[main]] - identifier = "scripts" - name = "scripts" - url = "/series/scripts/" + identifier = "code" + name = "code" + url = "/series/code/" weight = 1 [[main]] diff --git a/config/_default/params.toml b/config/_default/params.toml index fa8f5ba..4060a19 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -2,7 +2,7 @@ noindex = false usePageBundles = true description = "while (true) { bugs++; }" mainSections = ["posts"] -fallBackOgImage = "images/broken-computer.svg" +fallBackOgImage = "images/broken-computer.png" numberOfFeaturedPosts = 5 numberOfRelatedPosts = 5 author = "jbowdre" @@ -140,7 +140,7 @@ url = "https://jbowdre.omg.lol" [[socialLinks]] icon = "fa-solid fa-comments" title = "SimpleX Chat" -url = "https://runtimeterror.dev/simplex" +url = "/simplex" [[socialLinks]] icon = "fa fa-matrix-org" @@ -170,4 +170,20 @@ url = "https://torchlight.dev" [[powerLinks]] title = "cabin" -url = "https://withcabin.com/privacy/runtimeterror.dev" \ No newline at end of file +url = "https://withcabin.com/privacy/runtimeterror.dev" + +[[verifyLinks]] +title = "omg.lol" +url = "https://proven.lol/cd10d3" + +[[verifyLinks]] +title = "CounterSocial" +url = "https://counter.social/@john_b" + +[[verifyLinks]] +title = "Mastodon" +url = "https://social.lol/@jbowdre" + +[[verifyLinks]] +title = "GitHub" +url = "https://github.com/jbowdre" diff --git a/content/archives.md b/content/archives.md deleted file mode 100644 index db16eed..0000000 --- a/content/archives.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -date: 2019-05-28 -type: section -layout: "archives" ---- diff --git a/content/posts/_index.md b/content/posts/_index.md index db5627a..02eb363 100644 --- a/content/posts/_index.md +++ b/content/posts/_index.md @@ -1,5 +1,4 @@ +++ aliases = ["all_posts", "articles"] title = "Index of Posts" -tags = ["index"] +++ diff --git a/content/posts/automatic-unattended-expansion-of-linux-root-lvm-volume-to-fill-disk/index.md b/content/posts/automatic-unattended-expansion-of-linux-root-lvm-volume-to-fill-disk/index.md index 389657f..6e5a1bf 100644 --- a/content/posts/automatic-unattended-expansion-of-linux-root-lvm-volume-to-fill-disk/index.md +++ b/content/posts/automatic-unattended-expansion-of-linux-root-lvm-volume-to-fill-disk/index.md @@ -1,5 +1,5 @@ --- -series: Scripts +series: Code date: "2021-04-29T08:34:30Z" usePageBundles: true thumbnail: 20210723-script.png diff --git a/content/posts/bulk-import-vsphere-dvportgroups-to-phpipam/index.md b/content/posts/bulk-import-vsphere-dvportgroups-to-phpipam/index.md index 5144565..2bffb0f 100644 --- a/content/posts/bulk-import-vsphere-dvportgroups-to-phpipam/index.md +++ b/content/posts/bulk-import-vsphere-dvportgroups-to-phpipam/index.md @@ -14,7 +14,7 @@ usePageBundles: true thumbnail: "code.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Scripts +series: Code tags: - vmware - powercli diff --git a/content/posts/cat-file-without-comments/index.md b/content/posts/cat-file-without-comments/index.md index 9acc018..d52ff77 100644 --- a/content/posts/cat-file-without-comments/index.md +++ b/content/posts/cat-file-without-comments/index.md @@ -14,7 +14,7 @@ usePageBundles: true # thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Tips # Projects, Scripts, vRA8, K8s on vSphere +series: Tips # Projects, Code, vRA8, K8s on vSphere tags: - linux - shell diff --git a/content/posts/ditching-vsphere-for-proxmox/index.md b/content/posts/ditching-vsphere-for-proxmox/index.md index 6dd1319..0ba9c91 100644 --- a/content/posts/ditching-vsphere-for-proxmox/index.md +++ b/content/posts/ditching-vsphere-for-proxmox/index.md @@ -5,7 +5,7 @@ description: "I moved my homelab from VMware vSphere to Proxmox VE, and my only featured: false toc: true comment: true -series: Tips # Projects, Scripts +series: Tips # Projects, Code tags: - homelab - linux diff --git a/content/posts/easy-push-notifications-with-ntfy/index.md b/content/posts/easy-push-notifications-with-ntfy/index.md index a5d3355..7779017 100644 --- a/content/posts/easy-push-notifications-with-ntfy/index.md +++ b/content/posts/easy-push-notifications-with-ntfy/index.md @@ -1,7 +1,7 @@ --- title: "Easy Push Notifications With ntfy.sh" date: 2023-09-17 -lastmod: 2023-10-21 +lastmod: 2023-12-22 description: "Deploying and configuring a self-hosted pub-sub notification handler, getting another server to send a notifcation when it boots, and integrating the notification handler into Home Assistant." featured: false toc: true @@ -66,10 +66,10 @@ services: - ./lib/ntf:/var/lib/ntfy ports: - 2586:80 - healthcheck: # optional, remember to adapt the host and port to your environment + healthcheck: # this should be the port inside the container, not the host port test: [ "CMD-SHELL", - "wget -q --tries=1 http://localhost:8080/v1/health -O - | grep -Eo '\"healthy\"\\s*:\\s*true' || exit 1" + "wget -q --tries=1 http://localhost:80/v1/health -O - | grep -Eo '\"healthy\"\\s*:\\s*true' || exit 1" ] interval: 60s timeout: 10s diff --git a/content/posts/getting-started-vra-rest-api/index.md b/content/posts/getting-started-vra-rest-api/index.md index 4250d77..a988983 100644 --- a/content/posts/getting-started-vra-rest-api/index.md +++ b/content/posts/getting-started-vra-rest-api/index.md @@ -14,7 +14,7 @@ usePageBundles: true thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: vRA8 # Projects, Scripts, vRA8 +series: vRA8 # Projects, Code, vRA8 tags: - vmware - vra diff --git a/content/posts/logging-in-to-multiple-vcenter-servers-at-once-with-powercli/index.md b/content/posts/logging-in-to-multiple-vcenter-servers-at-once-with-powercli/index.md index d0d9aba..c6a246f 100644 --- a/content/posts/logging-in-to-multiple-vcenter-servers-at-once-with-powercli/index.md +++ b/content/posts/logging-in-to-multiple-vcenter-servers-at-once-with-powercli/index.md @@ -1,5 +1,5 @@ --- -series: Scripts +series: Code date: "2020-09-16T08:34:30Z" thumbnail: LJOcy2oqc.png usePageBundles: true diff --git a/content/posts/nessus-essentials-on-tanzu-community-edition/index.md b/content/posts/nessus-essentials-on-tanzu-community-edition/index.md index 7d3a837..ac59199 100644 --- a/content/posts/nessus-essentials-on-tanzu-community-edition/index.md +++ b/content/posts/nessus-essentials-on-tanzu-community-edition/index.md @@ -14,7 +14,7 @@ usePageBundles: true thumbnail: "nessus_login.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Tips # Projects, Scripts, vRA8 +series: Tips # Projects, Code, vRA8 tags: - vmware - kubernetes diff --git a/content/posts/powercli-list-linux-vms-and-datacenter-locations/index.md b/content/posts/powercli-list-linux-vms-and-datacenter-locations/index.md index 5abfa3a..70efbcc 100644 --- a/content/posts/powercli-list-linux-vms-and-datacenter-locations/index.md +++ b/content/posts/powercli-list-linux-vms-and-datacenter-locations/index.md @@ -14,7 +14,7 @@ usePageBundles: true thumbnail: "PowerCLI.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Scripts +series: Code tags: - vmware - powercli diff --git a/content/posts/powershell-download-web-folder-contents/index.md b/content/posts/powershell-download-web-folder-contents/index.md index 93b4848..a972b26 100644 --- a/content/posts/powershell-download-web-folder-contents/index.md +++ b/content/posts/powershell-download-web-folder-contents/index.md @@ -14,7 +14,7 @@ usePageBundles: true # thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Scripts +series: Code tags: - powershell - windows diff --git a/content/posts/psa-microsoft-kb5022842-breaks-ws2022-secure-boot/index.md b/content/posts/psa-microsoft-kb5022842-breaks-ws2022-secure-boot/index.md index 5397059..1c5b6cf 100644 --- a/content/posts/psa-microsoft-kb5022842-breaks-ws2022-secure-boot/index.md +++ b/content/posts/psa-microsoft-kb5022842-breaks-ws2022-secure-boot/index.md @@ -14,7 +14,7 @@ usePageBundles: true # thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Tips # Projects, Scripts, vRA8, K8s on vSphere +series: Tips # Projects, Code, vRA8, K8s on vSphere tags: - vmware - powershell diff --git a/content/posts/recreating-hashnode-series-categories-in-jekyll-on-github-pages/index.md b/content/posts/recreating-hashnode-series-categories-in-jekyll-on-github-pages/index.md index 9efc07a..7c9b792 100644 --- a/content/posts/recreating-hashnode-series-categories-in-jekyll-on-github-pages/index.md +++ b/content/posts/recreating-hashnode-series-categories-in-jekyll-on-github-pages/index.md @@ -286,8 +286,8 @@ main: url: /series/vra8 - title: "Projects" url: /series/projects - - title: "Scripts" - url: /series/scripts + - title: "Code" + url: /series/code - title: "Tips & Tricks" url: /series/tips - title: "Tags" diff --git a/content/posts/removing-recreating-vcls-vms/index.md b/content/posts/removing-recreating-vcls-vms/index.md index 856689a..948fdd8 100644 --- a/content/posts/removing-recreating-vcls-vms/index.md +++ b/content/posts/removing-recreating-vcls-vms/index.md @@ -14,15 +14,15 @@ featureImage: "basic-architecture.png" # Sets featured image on blog post. thumbnail: "basic-architecture.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Tips # Projects, Scripts, vRA8 +series: Tips # Projects, Code, vRA8 tags: - vmware - - vsphere + - vsphere - homelab comment: true # Disable comment if false. --- -Way back in 2020, VMware released vSphere 7 Update 1 and introduced the new [vSphere Clustering Services (vCLS)](https://core.vmware.com/resource/introduction-vsphere-clustering-service-vcls) to improve how cluster services like the Distributed Resource Scheduler (DRS) operate. vCLS deploys lightweight agent VMs directly on the cluster being managed, and those VMs provide a decoupled and distributed control plane to offload some of the management responsibilities from the vCenter server. +Way back in 2020, VMware released vSphere 7 Update 1 and introduced the new [vSphere Clustering Services (vCLS)](https://core.vmware.com/resource/introduction-vsphere-clustering-service-vcls) to improve how cluster services like the Distributed Resource Scheduler (DRS) operate. vCLS deploys lightweight agent VMs directly on the cluster being managed, and those VMs provide a decoupled and distributed control plane to offload some of the management responsibilities from the vCenter server. ![vCLS VM](vcls-vm.png) @@ -42,10 +42,10 @@ Disabling vCLS will break DRS, and could have other unintended side effects. Don It starts with determining the affected cluster's domain ID, which is very easy to do once you know where to look. Simply browse to the cluster object in the vSphere inventory, and look at the URL: ![Cluster domain ID](cluster-domain-id.png) -That `ClusterComputeResource:domain-c13` portion tells me exactly what I need to know: the ID for the `NUC Cluster` is `domain-c13`. +That `ClusterComputeResource:domain-c13` portion tells me exactly what I need to know: the ID for the `NUC Cluster` is `domain-c13`. ### Disable vCLS for a cluster -With that information gathered, you're ready to do the deed. Select the vCenter object in your vSphere inventory, head to the **Configure** tab, and open the **Advanced Settings** item. +With that information gathered, you're ready to do the deed. Select the vCenter object in your vSphere inventory, head to the **Configure** tab, and open the **Advanced Settings** item. ![vCenter Advanced Settings](vcenter-advanced-settings.png) diff --git a/content/posts/salt-state-netdata-tailscale/index.md b/content/posts/salt-state-netdata-tailscale/index.md index b2f7806..27d3d6d 100644 --- a/content/posts/salt-state-netdata-tailscale/index.md +++ b/content/posts/salt-state-netdata-tailscale/index.md @@ -1,12 +1,12 @@ --- title: "Quick Salt State to Deploy Netdata" date: 2023-12-21 -# lastmod: 2023-12-21 +lastmod: 2023-12-22 description: "A hasty Salt state to deploy netdata monitoring and publish it internally on my tailnet with Tailscale Serve" featured: false toc: true comment: true -series: Scripts +series: Code tags: - homelab - iac @@ -25,7 +25,7 @@ It simply installs netdata using the [handy-dandy kickstart script](https://lear # torchlight! {"lineNumbers": true} # -*- coding: utf-8 -*- # vim: ft=sls -# Hasty Salt config to install Netdata and make it available within a Tailscale tailnet +# Hasty Salt config to install Netdata and make it available within a tailnet # at https://[hostname].[tailnet-name].ts.net:8443/netdata curl: diff --git a/content/posts/script-to-convert-posts-to-hugo-page-bundles/index.md b/content/posts/script-to-convert-posts-to-hugo-page-bundles/index.md index 04ff16e..33f93de 100644 --- a/content/posts/script-to-convert-posts-to-hugo-page-bundles/index.md +++ b/content/posts/script-to-convert-posts-to-hugo-page-bundles/index.md @@ -15,7 +15,7 @@ thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homep # shareImage: "/images/path/share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. codeMaxLines: 30 -series: Scripts +series: Code tags: - hugo - meta diff --git a/content/posts/script-to-update-image-embed-links-in-markdown-files/index.md b/content/posts/script-to-update-image-embed-links-in-markdown-files/index.md index fa01dac..2c759cc 100644 --- a/content/posts/script-to-update-image-embed-links-in-markdown-files/index.md +++ b/content/posts/script-to-update-image-embed-links-in-markdown-files/index.md @@ -1,5 +1,5 @@ --- -series: Scripts +series: Code date: "2021-07-19T16:03:30Z" usePageBundles: true tags: diff --git a/content/posts/spotlight-on-torchlight/index.md b/content/posts/spotlight-on-torchlight/index.md index dfd69b2..0613df1 100644 --- a/content/posts/spotlight-on-torchlight/index.md +++ b/content/posts/spotlight-on-torchlight/index.md @@ -6,7 +6,7 @@ description: "Syntax highlighting powered by the Torchlight.dev API makes it eas featured: false toc: true comment: true -series: Projects # Projects, Scripts +series: Projects # Projects, Code tags: - javascript - hugo diff --git a/content/posts/systemctl-edit-delay-service-startup/index.md b/content/posts/systemctl-edit-delay-service-startup/index.md index ba3f025..a3e38ff 100644 --- a/content/posts/systemctl-edit-delay-service-startup/index.md +++ b/content/posts/systemctl-edit-delay-service-startup/index.md @@ -6,7 +6,7 @@ description: "Quick notes on using `systemctl edit` to override a systemd servic featured: false toc: false comment: true -series: Tips # Projects, Scripts +series: Tips # Projects, Code tags: - crostini - linux diff --git a/content/posts/tailscale-golink-private-shortlinks-tailnet/index.md b/content/posts/tailscale-golink-private-shortlinks-tailnet/index.md index bcbcf3c..f70d418 100644 --- a/content/posts/tailscale-golink-private-shortlinks-tailnet/index.md +++ b/content/posts/tailscale-golink-private-shortlinks-tailnet/index.md @@ -14,7 +14,7 @@ usePageBundles: true thumbnail: "golinks.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Projects # Projects, Scripts, vRA8, K8s on vSphere +series: Projects # Projects, Code, vRA8, K8s on vSphere tags: - docker - vpn diff --git a/content/posts/tailscale-on-vmware-photon/index.md b/content/posts/tailscale-on-vmware-photon/index.md index d9fc3f7..263c3c0 100644 --- a/content/posts/tailscale-on-vmware-photon/index.md +++ b/content/posts/tailscale-on-vmware-photon/index.md @@ -14,7 +14,7 @@ usePageBundles: true thumbnail: "Tailscale-AppIcon.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Tips # Projects, Scripts, vRA8, K8s on vSphere +series: Tips # Projects, Code, vRA8, K8s on vSphere tags: - vmware - linux diff --git a/content/posts/tailscale-ssh-serve-funnel/index.md b/content/posts/tailscale-ssh-serve-funnel/index.md index 0ba7aa9..2169d56 100644 --- a/content/posts/tailscale-ssh-serve-funnel/index.md +++ b/content/posts/tailscale-ssh-serve-funnel/index.md @@ -6,7 +6,7 @@ description: "Exploring some of my favorite Tailscale addon features: SSH, Serve featured: false toc: true comment: true -series: Tips # Projects, Scripts +series: Tips # Projects, Code tags: - homelab - networking diff --git a/content/posts/upgrading-standalone-vsphere-host-with-esxcli/index.md b/content/posts/upgrading-standalone-vsphere-host-with-esxcli/index.md index 9e9957f..32f78d1 100644 --- a/content/posts/upgrading-standalone-vsphere-host-with-esxcli/index.md +++ b/content/posts/upgrading-standalone-vsphere-host-with-esxcli/index.md @@ -14,7 +14,7 @@ featureImage: "esxi8.png" # Sets featured image on blog post. # thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Tips # Projects, Scripts, vRA8 +series: Tips # Projects, Code, vRA8 tags: - vmware - homelab diff --git a/content/posts/using-powershell-and-a-scheduled-task-to-apply-windows-updates/index.md b/content/posts/using-powershell-and-a-scheduled-task-to-apply-windows-updates/index.md index cdcc144..b2e5244 100644 --- a/content/posts/using-powershell-and-a-scheduled-task-to-apply-windows-updates/index.md +++ b/content/posts/using-powershell-and-a-scheduled-task-to-apply-windows-updates/index.md @@ -1,5 +1,5 @@ --- -series: Scripts +series: Code date: "2021-04-29T08:34:30Z" usePageBundles: true tags: diff --git a/content/posts/using-vsphere-diagnostic-tool-fling/index.md b/content/posts/using-vsphere-diagnostic-tool-fling/index.md index 34d0c62..0f636fa 100644 --- a/content/posts/using-vsphere-diagnostic-tool-fling/index.md +++ b/content/posts/using-vsphere-diagnostic-tool-fling/index.md @@ -14,7 +14,7 @@ featureImage: "vdt.png" # Sets featured image on blog post. thumbnail: "pulse2.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. -series: Tips # Projects, Scripts, vRA8 +series: Tips # Projects, Code, vRA8 tags: - vmware - vsphere diff --git a/content/simplex.md b/content/simplex.md index d5848c8..79fd849 100644 --- a/content/simplex.md +++ b/content/simplex.md @@ -19,18 +19,37 @@ Incoming messages are routed through a pool of servers so that your conversation The app is also packed with other features like disappearing messages, encrypted file transfers, encrypted voice messages, encrypted audio and video calls, decentralized private groups, and a cool incognito mode which connects new conversations to a randomly-generated profile instead of your primary one. There's even a [CLI client](https://github.com/simplex-chat/simplex-chat/blob/stable/docs/CLI.md)! ## Servers +[![](https://status.vpota.to/api/badge/11/status)](https://status.vpota.to/status/simplex) + You can easily host your own [simplexmq server](https://github.com/simplex-chat/simplexmq) for handling your inbound message queue, and I've done just that; in fact, I've deployed three! And, as one of my closest internet friends, *you're welcome to use them as well.* Just add these in the SimpleX app at **Settings > Network & servers > SMP servers > + Add server...**. Enable the option to use them for new connections, and they'll be added to the pool used for incoming messages in new conversations. If you want to use them immediately for existing conversations, go into each conversation's options menu and use the **Switch receiving address** option. You can also *disable* the option to use the default servers for new conversations if you only want messages to be routed through specific servers, but that does increase the likelikhood of concurrent conversations being routed the same way. More servers, more path options, less metadata in any one place. +--- ![](/images/smp-vpota-to.png) `smp://kYx5LmVD9FMM8hJN4BQqL4WmeUNZn8ipXsX2UkBoiHE=@smp.vpota.to` +| | | +| --- | --- | +| [![](https://status.vpota.to/api/badge/6/uptime)](https://status.vpota.to/status/simplex) | [[details](https://smp-vpota-to.tetra-gamma.ts.net/netdata/)] | + +--- + ![](/images/smp1-vpota-to.png) `smp://TbUrGydawdVKID0Lvix14UkaN-WarFgqXx4kaEG8Trw=@smp1.vpota.to` +| | | +| --- | --- | +| [![](https://status.vpota.to/api/badge/4/uptime)](https://status.vpota.to/status/simplex) | [[details](https://smp1-vpota-to.tetra-gamma.ts.net/netdata/)] | + +--- + ![](/images/smp2-vpota-to.png) `smp://tNfQisxTQ9MhKpFDTbx9RnjgWigtxF1a26jroy5-rR4=@smp2.vpota.to` + +| | | +| --- | --- | +| [![](https://status.vpota.to/api/badge/5/uptime)](https://status.vpota.to/status/simplex) | [[details](https://smp2-vpota-to.tetra-gamma.ts.net/netdata/)] | diff --git a/layouts/partials/about.html b/layouts/partials/about.html index 5e69943..4260bb1 100644 --- a/layouts/partials/about.html +++ b/layouts/partials/about.html @@ -1,7 +1,7 @@ {{ with .Site.Params.about }}
{{ with .logo }}{{ end }} -

{{ .title }}

+

{{ .title }}  

{{ partial "tagline.html" . }}
 {{ site.Params.Author }} diff --git a/layouts/partials/archive.html b/layouts/partials/archive.html index fc7d6bd..3cbf057 100644 --- a/layouts/partials/archive.html +++ b/layouts/partials/archive.html @@ -6,11 +6,12 @@ {{ if .IsHome }}

{{ site.Params.indexTitle | markdownify }}

{{ else }} -

{{ .Title | markdownify }}

+

{{ .Title | markdownify }}{{ if eq .Kind "term" }}  

{{ end }} {{ end }} {{ .Content }} +{{- if ne .Title "Tags"}} {{- range (.Paginate $pages).Pages }} {{- $postDate := .Date.Format "2006-01-02" }} {{- $updateDate := .Lastmod.Format "2006-01-02" }} @@ -28,4 +29,9 @@
{{ end }} -{{- template "_internal/pagination.html" . }} \ No newline at end of file +{{- template "_internal/pagination.html" . }} +{{- else }} +{{- range .Pages.ByTitle }} + [{{ .Title | markdownify }}] +{{- end }} +{{- end }} \ No newline at end of file diff --git a/layouts/partials/aside.html b/layouts/partials/aside.html index 38e32bf..0326171 100644 --- a/layouts/partials/aside.html +++ b/layouts/partials/aside.html @@ -61,4 +61,4 @@ {{- end }}

status.lol

- + diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 96d783c..bcfc68b 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -5,6 +5,18 @@ {{ if or (.Site.Params.noindex) (.Params.noindex) }} {{ end }} + +{{ with .OutputFormats.Get "rss" -}} + {{ printf `` .Rel .MediaType.Type .Permalink site.Title | safeHTML }} +{{ end }} + + +{{ if .IsHome }} +{{ range $item := .Site.Params.verifyLinks }} + +{{ end }} +{{ end }} + {{ partialCached "favicon" . }} {{ partial "opengraph" . }} diff --git a/static/css/custom.css b/static/css/custom.css index bf8ea8a..2cff8a2 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -169,3 +169,30 @@ ul.pagination li { display:flex; justify-content: center; } + +/* statuslol overrides */ +.statuslol { + background: var(--inner-bg) !important; +} + +.statuslol_content p, +.statuslol_content li, +.statuslol_content em, +.statuslol_content strong { + overflow-wrap: break-word; + font-size: 0.8em; + line-height:normal; + margin: 0.2em auto; + color: var(--fg); +} + +.statuslol_time a:link, +.statuslol_time a:visited { + color: var(--link) !important; +} + +.statuslol_time a:hover, +.statuslol_time a:active, +.statuslol_time a.active { + color: var(--hover) !important; +} \ No newline at end of file diff --git a/static/images/broken-computer.png b/static/images/broken-computer.png new file mode 100644 index 0000000..2fc2346 Binary files /dev/null and b/static/images/broken-computer.png differ