Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_index.md « set-your-homepage « create-page « content « exampleSite - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a81b51e2650706bdce2a0d3b3c9f7b29034ff46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
+++
title="Create homepage"
+++



{{% alert theme="success" %}}By default, this theme use the first section (folder) available in your content folder as a homepage.{{%/alert%}}

## Create a dedicated homepage
To tell Hugo-theme-docport to consider a page as homepage's content, just create a content file named `_index.md` in `content` root folder.
* use the `layout` key in frontmatter to control what to show/hide for this page

## Get rid of header, footer and navigations for Homepage
with `layout=raw` in frontmatter, your content will render without any navigation, menu, header, footer.



Example
```toml
+++
title="Homepage"
layout="raw"
+++
<div class="myHome">
	Hello
</div>
```