rochacbruno / marmite

Markdown makes sites - A Static Site Generator for Blogs
https://rochacbruno.github.io/marmite/
GNU Affero General Public License v3.0
340 stars 19 forks source link

[feat] Allow extra data on frontmatter #58

Closed rochacbruno closed 1 week ago

rochacbruno commented 1 week ago

extra: {}

arbitrary extra key:value pair in YAML format (for template customization)

On each individual post there will be an extra arbitrary field, so on list.html and content.html this field can also be accessed.

---
extra:
  banner_image: media/banner.jpg
---

then on template

<img src="{{url_for(content.extra.banner_image)}}">