Login
4 branches 0 tags
Ben (Desktop/Arch) Fixed clone url 0613c99 22 days ago 205 Commits
rubhub / templates / macros / 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 %}