title: {{ post.title }}
Article: {{ post.content | split(pat=" ") | slice(end=100) | join(sep=" ") }}
Author: kirbylife Date: {{ post.created_at | date(format="%Y-%m-%d") }} }
{% extends "base" %}
{% block extracss %}
{% endblock extracss %}
{% block content %}
{% for post in posts %}
title: {{ post.title }} Article: {{ post.content | split(pat=" ") | slice(end=100) | join(sep=" ") }}
Author: kirbylife Date: {{ post.created_at | date(format="%Y-%m-%d") }} }