pages/_includes/post-description.html
JustinVollmer 1e3657f788
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 3m59s
init
2025-02-27 22:54:37 +01:00

17 lines
450 B
HTML

{%- comment -%}
Get post description or generate it from the post content.
{%- endcomment -%}
{%- assign max_length = include.max_length | default: 200 -%}
{%- capture description -%}
{%- if post.description -%}
{{- post.description -}}
{%- else -%}
{%- include no-linenos.html content=post.content -%}
{{- content | markdownify | strip_html -}}
{%- endif -%}
{%- endcapture -%}
{{- description | strip | truncate: max_length | escape -}}