{% set post = __SELF__.post %}
{% if post.category.name %}
{{ post.category.name }}
{% endif %}

{{ post.title }}

bs1.jpg
{{ post.content|raw }}
{% if post.prev().title %}
Previous Post

{{ str_limit(post.prev().title , 20) }}

{% endif %}
{% if post.next().title %}
Next Post

{{ str_limit(post.next().title , 20) }}

{% endif %}