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

11 lines
252 B
HTML
Raw Normal View History

2013-04-04 17:37:30 +00:00
{% extends "base.html" %}
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 08:12:46 +00:00
2023-04-21 08:16:25 +00:00
{% block title %}{{ slug }}{% endblock %}
2023-04-21 08:12:46 +00:00
{% block nav %}{% endblock %}
2013-04-04 17:37:30 +00:00
{% block content %}
{{ highlighted|safe }}
2018-05-07 20:52:15 +00:00
{% endblock %}