{% extends "base.html" -%} {%- block title -%} {%- if page.title -%} {{ page.title }} {%- else -%} post № {{ page.slug }} {%- endif -%} {%- endblock title -%} {%- block description %} post № {{ page.slug }} {%- endblock description %} {%- block content %} {{ macros::render_post(post=page, in_feed=false) }} {%- if "mentions" in page.extra and page.extra.mentions | length > 0 -%}

Mentioned posts

{%- for ref in page.extra.mentions %} {%- set page = get_page(path=ref ~ "/index.md") -%} {{ macros::render_post(post=page, mention=true) }} {%- endfor %} {%- endif %} {%- endblock content %}