{{ post.body|markdown }}
{% from "usersite/macros/urls.html" import site_ipns_url %} {% macro render_blog_post_tags(post, from_index=false) %} {% if post.tags %} Tags: {% for tag in post.tags %} {% set planet, ptag = tag.split('#') %} {% set planet = planet|replace('@', '') %} {% if from_index %} {{ tag }} {% else %} {{ tag }} {% endif %} {% endfor %} {% endif %} {% endmacro %} {# Adapted from lektor's macro #} {% macro render_blog_post(post, from_index=false) %}
{{ post.body|markdown }}