mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 02:37:15 +00:00
9 lines
403 B
Django/Jinja
9 lines
403 B
Django/Jinja
{% filter minify_css %}
|
|
{% block style %}
|
|
<style>/*! theme.css */{% include "theme.css" %}</style>
|
|
<style>/*! content.css */{% include "content.css" %}</style>
|
|
<style>/*! custom.css */{% include "custom.css" %}</style>
|
|
{% endblock %}
|
|
{% endfilter %}
|
|
{% block content %}{% endblock %}
|
|
<div class="pdoc" style="margin-top: 4rem">{% block attribution %}{% endblock %}</div>
|