Recientemente importé contenido de mi página de WordPress a Hugo. cuando corro hugo serve
Recibo los siguientes mensajes de error:
WARN 2020/02/17 20:51:06 found no layout file for "HTML" for "page": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
La página en cuestión comienza así:
---
linktitle: "The Title of the Post"
title: "The Title of the Post"
author: "Franz Drollig"
type: post
date: 2020-01-09T14:41:55+00:00
url: /the-title-of-post/
categories:
- Uncategorized
weight: 10
---
This is the content of the post. This is the second sentence of the post.
Está localizado en mysite/content/posts/YYYY-MM-DD-title.md
.
El layouts
directorio está vacío. sin embargo, el themes
directorio contiene el libro tema. Este tema también se configura en el config.toml
.
Otra publicación, que comienza como se muestra a continuación, se representa correctamente.
---
author: "Michael Henderson"
date: 2014-09-28
linktitle: Creating a New Theme
menu:
main:
parent: tutorials
next: /tutorials/github-pages-blog
prev: /tutorials/automated-deployments
title: Creating a New Theme
weight: 10
---
## Introduction
¿Por qué mi publicación no se muestra correctamente? ¿Cómo puedo arreglarlo?
.