diff --git a/site/layout/blank.j2 b/site/layout/blank.j2 new file mode 100644 index 0000000..0e70b7e --- /dev/null +++ b/site/layout/blank.j2 @@ -0,0 +1,24 @@ +{% extends "base.j2" %} + +{% block menu %} + +{% endblock %} + +{%- block content -%} +{% mark post -%} +
+
+ {% mark content -%} + {% filter markdown|typogrify -%} + {% block post %}{% endblock %} + {%- endfilter %} + {%- endmark %} +
+
+{% if site.config.mode == "development" %} +{% include media_url('js/disqus.js') %} +{% endif %} +{%- endmark -%} +{% endblock -%} diff --git a/site/layout/macros.j2 b/site/layout/macros.j2 index 141f01a..9e927a2 100644 --- a/site/layout/macros.j2 +++ b/site/layout/macros.j2 @@ -10,7 +10,7 @@ {{ identifier }} {% else %} {% markdown %} -
{{ identifier }}. {{ content|markdown }}
+
{{ identifier }}. {{ content|markdown }}
{% endmarkdown %} {% endif %} {% endmacro %}