Use yaml front matter instead of toml

This commit is contained in:
2021-10-14 16:17:07 -05:00
parent c7b482ba4b
commit 57047c6615
14 changed files with 164 additions and 156 deletions

View File

@@ -1,8 +1,9 @@
+++
title = "Archivo"
icon = "archive"
---
description = """
Entradas archivos de blog
"""
+++
title: Archivo
icon: archive
description: |
Entradas archivos de blog
---

View File

@@ -1,8 +1,9 @@
+++
title = "Archive"
icon = "archive"
---
description = """
Archived blog posts
"""
+++
title: Archive
icon: archive
description: |
Archived blog posts
---

View File

@@ -1,20 +1,20 @@
+++
title = "New Comment System (again)"
date = "2021-04-17"
toc = true
---
aliases = [
"/blog/posts/new-comment-system-again/",
"/blog/new-comment-system-again/",
"/archive/new-comment-system-again/",
]
title: New Comment System (again)
date: "2021-04-17"
toc: true
tags = [
"announcement",
"hugo",
"blog",
]
+++
aliases:
- /blog/posts/new-comment-system-again/
- /blog/new-comment-system-again/
- /archive/new-comment-system-again/
tags:
- announcement
- hugo
- blog
---
I decided to switch my comment system from Isso to
[Commento](https://www.commento.io/).

View File

@@ -1,20 +1,20 @@
+++
title = "New Comment System"
date = "2021-04-11"
toc = true
---
aliases = [
"/blog/posts/new-comment-system/",
"/blog/new-comment-system/",
"/archive/new-comment-system/",
]
title: New Comment System
date: "2021-04-11"
toc: true
tags = [
"announcement",
"hugo",
"blog",
]
+++
aliases:
- /blog/posts/new-comment-system/
- /blog/new-comment-system/
- /archive/new-comment-system/
tags:
- announcement
- hugo
- blog
---
I added a comment system to my blog, using [Isso](https://posativ.org/isso/).