diff options
author | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-09 17:28:32 -0300 |
---|---|---|
committer | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-09 17:28:32 -0300 |
commit | 045c2e349504e0e1394f4ca497d8899c1e89ca47 (patch) | |
tree | 920eac262b5871b432fb9bfbaff4c58148eb777e /exampleSite/content.pt | |
parent | 7a4c8fd24bc6dd6d06898dd51f856cfa3a6c43af (diff) | |
download | hugo-bearcub-045c2e349504e0e1394f4ca497d8899c1e89ca47.tar.gz hugo-bearcub-045c2e349504e0e1394f4ca497d8899c1e89ca47.tar.bz2 |
Fetch menus from YAML
Diffstat (limited to 'exampleSite/content.pt')
-rw-r--r-- | exampleSite/content.pt/_index.md | 6 | ||||
-rw-r--r-- | exampleSite/content.pt/blog/_index.md | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/exampleSite/content.pt/_index.md b/exampleSite/content.pt/_index.md index 2de08ff..669b505 100644 --- a/exampleSite/content.pt/_index.md +++ b/exampleSite/content.pt/_index.md @@ -1,3 +1,9 @@ +--- +title: "Início" +menu: "main" +weight: 1 +--- + # Um par divino There is a website obesity crisis. Bloated websites full of scripts, ads, and trackers are slowing your readers down every time they try to read your well-crafted content. diff --git a/exampleSite/content.pt/blog/_index.md b/exampleSite/content.pt/blog/_index.md new file mode 100644 index 0000000..7588ac1 --- /dev/null +++ b/exampleSite/content.pt/blog/_index.md @@ -0,0 +1,5 @@ +--- +title: "Blog" +menu: "main" +weight: 2 +---
\ No newline at end of file |