furry/products/templates/base.html

15 lines
550 B
HTML

{% extends "base.html" %}
{% block extra_head %}
<link rel="stylesheet" href="/static/css/furry.css">
<link rel="stylesheet" href="/static/css/furry-theme.css">
<link rel="stylesheet" href="/static/css/products.css">
<link rel="stylesheet" href="/static/css/dashboard.css">
<link rel="icon" type="image/svg+xml" href="/static/images/kasico-logo-simple.svg">
{{ block.super }}
{% endblock %}
{# Der eigentliche Seiteninhalt kommt in den content-Block #}
{% block content %}
{{ block.super }}
{% endblock %}