pasteque/paste/templates/paste/show-markdown.html

12 lines
293 B
HTML
Raw Normal View History

2023-04-25 07:22:03 +00:00
{% extends "base.html" %}
{% load static %}
2023-04-25 07:22:03 +00:00
{% block extrastyle %}
<link href="{% static 'css/github-markdown.css' %}" rel="stylesheet">
2023-04-25 07:22:03 +00:00
{% endblock %}
{% block title %}{{ filename }}{% endblock %}
{% block content %}
<div class="markdown-body">
{{ highlighted|safe }}
</div>
{% endblock %}