Login
4 branches 0 tags
Ben (T14s/Arch Linux) Nicer issue filter buttons 5e64f33 1 month ago 178 Commits
rubhub / templates / markdown_content.html
{% macro render(frontmatter, html) %}
{% if !frontmatter.is_empty() %}
<dl class="frontmatter">
  {% for (key, value) in frontmatter %}
  <div class="frontmatter-item">
    <dt>{{ key }}</dt>
    <dd>{{ value }}</dd>
  </div>
  {% endfor %}
</dl>
{% endif %}
<div class="markdown">{{- html|safe -}}</div>
{% endmacro %}