You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
404 B

{{# layout('layout') }}
{{# const store = await it.injectStore('post') }}
{{# const posts = await store.find() }}
{{# if (posts.data && posts.data.length > 0) { }}
{{# posts.data.forEach((post) => { }}
{{ post.title }}
<img src="{{ it.mediaUrl(post.teaser_media.id, { 'width': 500 }) }}" />
{{! it.marked.parse(post.teaser_content) }}
{{# }) }}
{{# } else { }}
{{# } }}