diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-02-23 13:29:58 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-02-23 13:29:58 +0100 |
commit | 5d7f257e303d581a4b75f3feb12940a172ec89ed (patch) | |
tree | dc137ede5a336445b85433741da2bd5174feea8d /layouts | |
parent | 5cba28f865dda37570b393739b6fce335a8b0146 (diff) |
#150, Add content-before and content-after inject partials
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/baseof.html | 2 | ||||
-rw-r--r-- | layouts/partials/docs/inject/content-after.html | 0 | ||||
-rw-r--r-- | layouts/partials/docs/inject/content-before.html | 0 |
3 files changed, 2 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index a9c4da1..95524a0 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -18,7 +18,9 @@ {{ template "header" . }} <!-- Mobile layout header --> </header> + {{ partial "docs/inject/content-before" . }} {{ template "main" . }} <!-- Page Content --> + {{ partial "docs/inject/content-after" . }} <footer class="book-footer"> {{ template "footer" . }} <!-- Footer under page content --> diff --git a/layouts/partials/docs/inject/content-after.html b/layouts/partials/docs/inject/content-after.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/partials/docs/inject/content-after.html diff --git a/layouts/partials/docs/inject/content-before.html b/layouts/partials/docs/inject/content-before.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/layouts/partials/docs/inject/content-before.html |