diff --git a/content/demo/index.md b/content/demo/index.md index 0553689..1531070 100644 --- a/content/demo/index.md +++ b/content/demo/index.md @@ -318,10 +318,10 @@ You know what? I'm gonna say some very important stuff, so im ## Buttons ```html.j2 -

+

Go to top File an issue -

+
``` > Look at the end of this page xD diff --git a/templates/404.html b/templates/404.html index 6d4b986..07f1f55 100644 --- a/templates/404.html +++ b/templates/404.html @@ -10,10 +10,10 @@

The requested page could not be found.{% if config.extra.issues_url %} If you feel this is not normal, then you can create an issue on the issue tracker.{% endif %}

-

+

Go Back {% if config.extra.issues_url %} File an Issue {% endif %} -

+
{% endblock content %} diff --git a/templates/article.html b/templates/article.html index e8ea3d6..fb01d26 100644 --- a/templates/article.html +++ b/templates/article.html @@ -103,10 +103,10 @@ {% endif %} -

+

Go to Top {% if config.extra.issues_url %} File an Issue {% endif %} -

+
{% endblock content %} diff --git a/templates/article_list.html b/templates/article_list.html index 36a036b..956ab5c 100644 --- a/templates/article_list.html +++ b/templates/article_list.html @@ -3,7 +3,7 @@ {% block content %}

{{ section.title }}

-

{{ section.description }}

+{{ section.description | markdown | safe }} Filter by tag @@ -28,7 +28,7 @@ {%- endif %} {%- if page.description %} -

{{ page.description }}

+ {{ page.description | markdown | safe }} {%- endif %} {%- if page.date %} diff --git a/templates/base.html b/templates/base.html index 4631cb0..08bd7a7 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,12 +1,12 @@ -{% include "partials/head.html" ignore missing -%} +{% include "partials/head.html" -%} - {% include "partials/nav.html" ignore missing -%} + {% include "partials/nav.html" -%}
{% block custom %}{%- endblock -%} {% block content %}{%- endblock -%}
- {% include "partials/footer.html" ignore missing -%} + {% include "partials/footer.html" -%}