This website requires JavaScript.
Explore
Help
Sign In
jcarr
/
hugo-simpleIntro
Watch
1
Star
0
Fork
You've already forked hugo-simpleIntro
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
1f34459bd6
hugo-simpleIntro
/
layouts
/
index.html
4 lines
69 B
HTML
Raw
Normal View
History
Unescape
Escape
refactor[index]: partials are now loaded by baseof, for all pages Due to previous commits, now the partials are being loaded for all the pages through baseof.html, so it is not necessary to load them in the index (this would result in double-loading)
2022-05-30 15:48:06 -05:00
{{ define "main" }}
refactor[partials]: reorganize partials to enhance code reuse Partials have been reorganized, to improve general understandability and enhance code reuse (ex. when adding pages, the "wave" will be loaded as a partial)
2022-05-30 17:20:32 -05:00
{{ partial "home/home.html" . }}
refactor[index]: partials are now loaded by baseof, for all pages Due to previous commits, now the partials are being loaded for all the pages through baseof.html, so it is not necessary to load them in the index (this would result in double-loading)
2022-05-30 15:48:06 -05:00
{{ end }}