diff options
Diffstat (limited to 'src/themes/serene/templates/macros/prose.html')
| -rw-r--r-- | src/themes/serene/templates/macros/prose.html | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/themes/serene/templates/macros/prose.html b/src/themes/serene/templates/macros/prose.html deleted file mode 100644 index bd9a894..0000000 --- a/src/themes/serene/templates/macros/prose.html +++ /dev/null @@ -1,32 +0,0 @@ -{% macro back_link(path) %} -<header> - <nav> - <a href="{{ path }}">← {{ config.extra.back_link_text }}</a> - </nav> -</header> -{% endmacro %} - - -{% macro callout(name) %} -<blockquote class="callout {{ name }} {% if title %}has-title{% else %}no-title{% endif %}"> - {% set icon = load_data(path="icon/" ~ name ~ ".svg") %} - {% if title %} - <p class="title"> - <span class="icon"> - {{ icon | safe }} - </span> - <strong>{{ title }}</strong> - </p> - <div class="content"> - {{ body | markdown | safe }} - </div> - {% else %} - <div class="icon"> - {{ icon | safe }} - </div> - <div class="content"> - {{ body | markdown | safe }} - </div> - {% endif %} -</blockquote> -{% endmacro %} |
