mirror of
https://github.com/nicholaswilde/recipes.git
synced 2025-12-01 12:36:44 +00:00
29 lines
821 B
HTML
29 lines
821 B
HTML
<!-- 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" %}
|