forked from ruangrupa/konfluks
15 lines
529 B
Markdown
15 lines
529 B
Markdown
---
|
|
title: "{{ frontmatter.title }}"
|
|
date: "{{ frontmatter.date }}" #2021-06-10T10:46:33+02:00
|
|
draft: false
|
|
summary: "{{ frontmatter.summary }}"
|
|
authors: {% if frontmatter.author %} ["{{ frontmatter.author }}"] {% endif %}
|
|
original_link: "{{ frontmatter.original_link }}"
|
|
feed_name: "{{ frontmatter.feed_name}}"
|
|
categories: ["{{ frontmatter.card_type }}", "{{ frontmatter.feed_name}}"]
|
|
tags: {{ frontmatter.tags }}
|
|
{% if frontmatter.featured_image %}featured_image: "{{frontmatter.featured_image}}"{% endif %}
|
|
---
|
|
|
|
{{ content }}
|