1
0
Fork 0
IdreXyz/templates/base.html

29 lines
711 B
HTML
Raw Normal View History

2015-03-14 22:38:12 +01:00
<!DOCTYPE html>
{% load static %}
<html>
2023-09-14 00:19:12 +02:00
<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>
2016-02-02 18:28:58 +01:00
</html>