30 lines
771 B
HTML
30 lines
771 B
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{# base meta #}
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'Palto/favicon.svg' %}"/>
|
|
<title>{% block page-title %}Palto{% endblock %}</title>
|
|
|
|
{# base style #}
|
|
|
|
{% block style %}
|
|
<style>
|
|
{# font #}
|
|
@font-face {
|
|
font-family: "Century Gothic";
|
|
src: url("{% static 'Palto/font/CenturyGothic.ttf' %}");
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="{% static "Palto/css/base.css" %}" />
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{# body #}
|
|
{% block body %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|