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

10 lines
249 B
HTML
Raw Normal View History

2013-04-04 17:37:30 +00:00
{% extends "base.html" %}
{% load static %}
2023-04-21 08:12:46 +00:00
{% block extrastyle %}
<link href="{% static 'css/pasteque.css' %}" rel="stylesheet">
2018-05-12 22:22:02 +00:00
{% endblock %}
2023-04-21 12:32:45 +00:00
{% block title %}{{ filename }}{% endblock %}
2013-04-04 17:37:30 +00:00
{% block content %}
{{ highlighted|safe }}
2018-05-07 20:52:15 +00:00
{% endblock %}