{% macro section_meta(section, author) %}
{% endmacro section_meta %} {% macro meta(page, author) %} {% endmacro meta %} {% macro taxonomies(taxonomy, disp_cat, disp_tag) %} {%- if taxonomy.categories -%} {{ posts::categories(categories=taxonomy.categories) }} {%- endif -%} {%- if taxonomy.tags -%} {{ posts::tags(tags=taxonomy.tags) }} {%- endif -%} {% endmacro taxonomies %} {% macro categories(categories) %} :: { {%- for cat in categories -%} {%- if loop.last -%} {{ cat }} {%- else -%} {{ cat }}, {%- endif -%} {%- endfor -%}}{# <--- NOTE: OPEN CURLY BRACE #} {% endmacro categories %} {% macro tags(tags) %} :: {% for tag in tags -%} #{{ tag }} {% endfor -%} {% endmacro tags %} {% macro thanks(who) %} {%- if who is object -%} {%- if who.url -%} {{ who.name }} {%- else -%} {{ who.name }} {%- endif -%} {%- if who.why %} for {{ who.why }}{%- endif -%} {%- else -%} {{ who }} {%- endif -%} {% endmacro %}