Add section layout

master
Will Faught 2 years ago
parent 0e25a00fe3
commit 33360afd6f

@ -344,6 +344,16 @@ layout: "paige/search"
title: "Search" title: "Search"
``` ```
### Section
The `paige/section` layout provides a section page.
Example `content/_index.md`:
```yaml
layout: "paige/section"
```
## Shortcodes ## Shortcodes
### Figure ### Figure

@ -0,0 +1,9 @@
{{ define "main" }}
{{ $page := . }}
{{ if $page.Param "paige.section_pages.full_pages" | not }}
{{ partial "paige/article.html" $page }}
{{ end }}
{{ partial "paige/pages.html" $page }}
{{ end }}
Loading…
Cancel
Save