aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2021-03-23 17:44:02 +0100
committerJulien Dessaux2021-03-23 17:44:02 +0100
commit85e74c8ea06dcb7c65dd38f5c26d81fe18da75a0 (patch)
treecaa68e019bc50088a7b53390cda407377dcf4ebb
parentReworked the adyxax.org docs articles (diff)
downloadwww-85e74c8ea06dcb7c65dd38f5c26d81fe18da75a0.tar.gz
www-85e74c8ea06dcb7c65dd38f5c26d81fe18da75a0.tar.bz2
www-85e74c8ea06dcb7c65dd38f5c26d81fe18da75a0.zip
Small fixes with section titles
-rw-r--r--content/blog/_index.md2
-rw-r--r--content/blog/kubernetes/single-node-cluster-taint.md2
-rw-r--r--content/blog/miscellaneous/nmap.md2
-rw-r--r--layouts/_default/list.html2
-rw-r--r--layouts/docs/list.html2
5 files changed, 8 insertions, 2 deletions
diff --git a/content/blog/_index.md b/content/blog/_index.md
index 71b3958..a464453 100644
--- a/content/blog/_index.md
+++ b/content/blog/_index.md
@@ -4,3 +4,5 @@ menu:
main:
weight: 4
---
+
+This is the blog section of this website. It is an heritage of the old wiki I maintained before switching to a static website generated with [hugo]({{< relref "/tags/hugo/" >}}), so articles before 2021 can be a little short and are more like notes than regular articles.
diff --git a/content/blog/kubernetes/single-node-cluster-taint.md b/content/blog/kubernetes/single-node-cluster-taint.md
index 67e3f87..46f9ed7 100644
--- a/content/blog/kubernetes/single-node-cluster-taint.md
+++ b/content/blog/kubernetes/single-node-cluster-taint.md
@@ -1,6 +1,6 @@
---
title: kubernetes single node cluster taint
-date: 2021-01-06
+date: 2020-12-06
description: How to schedule worker pods on your control plane node
tags:
- kubernetes
diff --git a/content/blog/miscellaneous/nmap.md b/content/blog/miscellaneous/nmap.md
index ee595ea..333b27b 100644
--- a/content/blog/miscellaneous/nmap.md
+++ b/content/blog/miscellaneous/nmap.md
@@ -1,6 +1,6 @@
---
title: "Some nmap common usages"
-date: 2021-03-19
+date: 2020-03-19
description: nmap command examples
tags:
- toolbox
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 2d402ff..0367ee9 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -1,5 +1,7 @@
{{ define "main" }}
+<h1>{{ .Title }}</h1>
+
{{ with .Content }}
{{ . }}
{{ end }}
diff --git a/layouts/docs/list.html b/layouts/docs/list.html
index 1be5120..bbd9f22 100644
--- a/layouts/docs/list.html
+++ b/layouts/docs/list.html
@@ -1,5 +1,7 @@
{{ define "main" }}
+<h1>{{ .Title }}</h1>
+
{{ with .Content }}
{{ . }}
{{ end }}