29 lines
711 B
HTML
29 lines
711 B
HTML
<!DOCTYPE html>
|
|
|
|
{% load static %}
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{% block title %}Idiocrates Records{% endblock %}</title>
|
|
|
|
<link rel="icon" href="{% static 'img/favicon.ico' %}" sizes="any" />
|
|
<link rel="stylesheet" href="{% static 'css/base.css' %}" />
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato" />
|
|
|
|
{% block stylesheets %}{% endblock %}
|
|
{% block scripts %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
|
|
<main>
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|