Files
nicholaswilde_recipes/overrides/partials/content.html
nιcнolaѕ wιlde 92bc90b3bd feat: add foot next prev page and tags in header
Signed-off-by: nιcнolaѕ wιlde <ncwilde43@gmail.com>
2024-11-02 10:16:34 -07:00

29 lines
821 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- Edit and view button -->
{% if page.edit_url %}
{% set edit = "https://github.com/nicholaswilde/recipes/edit" %}
{% set view = "https://raw.githubusercontent.com/nicholaswilde/recipes" %}
<a
href="{{ page.edit_url }}"
title="{{ lang.t('edit.link.title') }}"
class="md-content__button md-icon"
>
{% include ".icons/material/file-edit-outline.svg" %}
</a>
<a
href="{{ page.edit_url | replace(edit, view) }}"
title="View source of this page"
class="md-content__button md-icon"
>
{% include ".icons/material/file-eye-outline.svg" %}
</a>
{% endif %}
<!-- Tags -->
{% if "material/tags" in config.plugins and tags %}
{% include "partials/tags.html" %}
{% endif %}
<!-- Markdown content -->
{{ page.content }}
{% include "partials/comments.html" %}