diff --git a/content/blog/2022-02-14-personal-pbx.md b/content/blog/2022-02-14-personal-pbx.md
new file mode 100644
index 0000000..316a1c1
--- /dev/null
+++ b/content/blog/2022-02-14-personal-pbx.md
@@ -0,0 +1,10 @@
+---
+layout: page
+title: "I built my own private telephone network"
+description: "Nobody makes phone calls anymore"
+date: 2022-02-14
+tags: random 3d-pipeline
+draft: true
+extra:
+ uses_katex: false
+---
diff --git a/templates/page.html b/templates/page.html
index 63728e5..792d813 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -61,7 +61,18 @@ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMat
{% block content %}
+ {% if page.description %}
+ {{page.title}}
+
+
+ /*
+ {{page.description}}
+ */
+
+
+ {% else %}
{{page.title}}
+ {% endif %}
{{page.content | safe}}
diff --git a/templates/section.html b/templates/section.html
index 25b29d4..af33977 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -54,7 +54,7 @@
{% for page in section.pages %}
{% if not page.extra.hidden %}
- - {{page.title}} ({{page.date}})
+
- {{page.title}} ({{page.date}})
{% endif %}
{% endfor %}