Files
website-v2/templates/markdown_template.html
Greg Newman 057c16bb9f 🎨 cleaning up some home page styles
First pass with rustywind is doing massive cleanup
2023-04-28 09:27:38 -04:00

19 lines
447 B
HTML

{% extends "base.html" %}
{% load static %}
{% block title %}{{ frontmatter.title }}{% endblock %}
{% block description %}{{ frontmatter.description }}{% endblock %}
{% block keywords %}{{ frontmatter.keywords }}{% endblock %}
{% block author %}{{ frontmatter.author }}{% endblock %}
{% block content %}
<div class="py-0 px-3 mb-3 md:py-6 md:px-0">
<div class="mb-6 md:mb-0">
{{ content|safe }}
</div>
</div>
{% endblock %}