Anpassung der Typen
This commit is contained in:
parent
4ca99523cf
commit
2f15333242
3 changed files with 13 additions and 4 deletions
10
README.md
10
README.md
|
@ -4,7 +4,7 @@
|
|||
|
||||
Dieses Theme wurde für meine eigene Webseite entworfen und dort verwendet.
|
||||
|
||||
**Features:**
|
||||
## Features
|
||||
|
||||
- Responsive design
|
||||
- Seitenleiste
|
||||
|
@ -108,6 +108,14 @@ Für weitere Informationen über alle verfügbaren Standardkonfigurationseinstel
|
|||
|
||||
> cooming soon...
|
||||
|
||||
Zum erstellen der Index-Seite für die Jahresarchive, geben Sie bitte folgenden Befehl an:
|
||||
|
||||
```bash
|
||||
hugo new --kind archive blog/2022/_index.md
|
||||
```
|
||||
|
||||
Hierbei ist bitte der Hauptordner, sowie der Jahresordner an die entsprechenden anzupassen.
|
||||
|
||||
### Beispiele für die Hauptseite
|
||||
|
||||
> cooming soon...
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: "{{ now.Format "2006"}}"
|
||||
date: {{ now.Format "2006-01-02"}}
|
||||
date: {{ now.Format "2006"}}-01-01
|
||||
type: "archive"
|
||||
---
|
|
@ -1,13 +1,14 @@
|
|||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
author: "mdn"
|
||||
date: {{ .Date }}
|
||||
publishDate: {{ now.Format "2006-01-02"}}
|
||||
lastmod: {{ now.Format "2006-01-02"}}
|
||||
slug: "{{ replaceRE `[0-9]+-` "" .Name | lower }}"
|
||||
draft: true
|
||||
author: "mdn"
|
||||
featured: false
|
||||
tags: []
|
||||
categories: []
|
||||
tags: []
|
||||
---
|
||||
|
||||
<!--more-->
|
||||
|
|
Loading…
Reference in a new issue