diff --git a/exampleSite/content/installation/elements/_index.en.md b/exampleSite/content/installation/elements/_index.en.md index 72e9d6a..eda0faf 100644 --- a/exampleSite/content/installation/elements/_index.en.md +++ b/exampleSite/content/installation/elements/_index.en.md @@ -94,6 +94,10 @@ Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime This is a simple info. {{< /notice >}} +{{< notice warning >}} + This is a simple warning. +{{< /notice >}} +
#### Tab diff --git a/exampleSite/content/installation/elements/_index.fr.md b/exampleSite/content/installation/elements/_index.fr.md index ac55fa8..487946d 100644 --- a/exampleSite/content/installation/elements/_index.fr.md +++ b/exampleSite/content/installation/elements/_index.fr.md @@ -94,6 +94,10 @@ Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime This is a simple info. {{< /notice >}} +{{< notice warning >}} + This is a simple warning. +{{< /notice >}} +
#### Tab diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index b8cfb07..759ed91 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -7,18 +7,18 @@ {{ "" | safeHTML }} {{ "" | safeHTML }} {{ else }} {{ "" | safeHTML }}
- {{ partial "navigation.html" . }} + {{ partialCached "navigation.html" . }}
{{ "" | safeHTML }} {{ end }} {{ block "main" . }}{{ end }} - {{ partial "footer.html" . }} + {{ partialCached "footer.html" . }} \ No newline at end of file diff --git a/layouts/shortcodes/notice.html b/layouts/shortcodes/notice.html index 3000289..0b03907 100644 --- a/layouts/shortcodes/notice.html +++ b/layouts/shortcodes/notice.html @@ -1,3 +1,3 @@ {{ $_hugo_config := `{ "version": 1 }` }} -

{{ .Inner | markdownify }}

+

{{ .Inner | markdownify }}

\ No newline at end of file