We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75dbf10 commit a1b7277Copy full SHA for a1b7277
models/blog-post.ini
@@ -32,5 +32,5 @@ type = markdown
32
33
[fields.excerpt]
34
label = Excerpt
35
-type = text
+type = markdown
36
width = 1/2
themes/vocabulary_theme/templates/macros/posts.html
@@ -10,7 +10,7 @@ <h4 class="b-header"><a class="blog-title" href="{{ post|url }}">{{ post.title }
10
{{ render_authors_byline(post) }}
11
<div class="excerpt">
12
{% if post.excerpt %}
13
- {{ post.excerpt | string | striptags() }}
+ {{ post.excerpt }}
14
{% else %}
15
{{ post.body | excerpt | string | striptags() | truncate(100) }}
16
{% endif %}
0 commit comments