feat(sidebar): Add sidebar support

This commit is contained in:
Michael Beemer
2021-06-17 14:56:27 -04:00
parent a9bb6df01f
commit 75717374a8
4 changed files with 19 additions and 5 deletions

10
main.go
View File

@@ -299,11 +299,13 @@ func processFile(
&buffer,
"ac:layout",
struct {
Layout string
Body string
Layout string
Sidebar string
Body string
}{
Layout: meta.Layout,
Body: html,
Layout: meta.Layout,
Sidebar: meta.Sidebar,
Body: html,
},
)
if err != nil {