mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
807 B
807 B
title | description | categories | keywords | action | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Page | Returns the Page object from which the shortcode was called. |
|
With this content:
{{< code-toggle file=content/books/les-miserables.md fm=true >}} title = 'Les Misérables' author = 'Victor Hugo' publication_year = 1862 isbn = '978-0451419439' {{< /code-toggle >}}
Calling this shortcode:
{{</* book-details */>}}
We can access the front matter values using the Page
method:
{{< code file=layouts/shortcodes/book-details.html >}}
- Title: {{ .Page.Title }}
- Author: {{ .Page.Params.author }}
- Published: {{ .Page.Params.publication_year }}
- ISBN: {{ .Page.Params.isbn }}