58 lines
1.3 KiB
Markdown
58 lines
1.3 KiB
Markdown
|
---
|
||
|
title: "Layouts"
|
||
|
description: ""
|
||
|
lead: ""
|
||
|
date: 2020-09-21T14:13:01+02:00
|
||
|
lastmod: 2020-09-21T14:13:01+02:00
|
||
|
draft: false
|
||
|
images: []
|
||
|
menu:
|
||
|
docs:
|
||
|
parent: "basic-hyas"
|
||
|
weight: 150
|
||
|
toc: true
|
||
|
---
|
||
|
|
||
|
```bash
|
||
|
..
|
||
|
├── _default/
|
||
|
│ ├── baseof.html
|
||
|
│ ├── list.html
|
||
|
│ └── single.html
|
||
|
├── blog/
|
||
|
│ └── single.html
|
||
|
├── categories/
|
||
|
│ ├── list.html
|
||
|
│ └── terms.html
|
||
|
├── partials/
|
||
|
│ ├── content/
|
||
|
│ ├── footer/
|
||
|
│ │ ├── footer.html
|
||
|
│ │ └── script-footer.html
|
||
|
│ ├── head/
|
||
|
│ │ ├── favicons.html
|
||
|
│ │ ├── head.html
|
||
|
│ │ ├── opengraph.html
|
||
|
│ │ ├── resource-hints.html
|
||
|
│ │ ├── script-header.html
|
||
|
│ │ ├── seo.html
|
||
|
│ │ ├── structured-data.html
|
||
|
│ │ ├── stylesheet.html
|
||
|
│ │ └── twitter_cards.html
|
||
|
│ ├── header/
|
||
|
│ │ ├── alert.html
|
||
|
│ │ └── header.html
|
||
|
│ └── sidebar/
|
||
|
├── shortcodes/
|
||
|
│ └── img.html
|
||
|
├── 404.html
|
||
|
├── index.headers
|
||
|
├── index.html
|
||
|
├── index.redirects
|
||
|
├── robots.txt
|
||
|
├── rss.xml
|
||
|
└── sitemap.xml
|
||
|
```
|
||
|
|
||
|
See also the Hugo docs: [Templates](https://gohugo.io/templates/).
|