{% extends "base.html" %} {% block seo_tags %} {% endblock seo_tags %} {% block title %}{{ metadata.title | title }}{% endblock title %} {% block content %}
{% if post.truncate_char is defined and post.truncate_char is matching("^nil$") %} {% set truncate_char = "" %} {% else %} {% set truncate_char = "…" %} {% endif %} {{ post.raw | striptags | truncate(length=post.truncate | default(value=300), end=truncate_char) | safe }}
Read more …