16 lines
514 B
HTML
16 lines
514 B
HTML
<div hidden>
|
|
{% assign strings = site.data.strings %}
|
|
<h2 class="sr-only">{{ strings.templates | default: "Templates"}}{{ strings.colon | default:":" }}</h2>
|
|
|
|
{% include templates/animation.html %}
|
|
{% include templates/loading.html %}
|
|
{% include templates/error.html %}
|
|
{% include templates/permalink.html %}
|
|
{% if site.pivoine.dark_mode.icon %}
|
|
{% include templates/dark-mode.html %}
|
|
{% endif %}
|
|
{% if site.pivoine.search.icon %}
|
|
{% include templates/search.html %}
|
|
{% endif %}
|
|
</div>
|