1
0
Fork 0
IdreXyz/templates/base.html

39 lines
754 B
HTML
Raw Normal View History

2015-03-14 22:38:12 +01:00
<!DOCTYPE html>
{% load static %}
<html>
<head>
<meta charset="utf-8" />
<title>{% block title %}Idiocrates Records{% endblock %}</title>
<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>
<div id="global">
<header>
<a href="/"><img src="{% static 'img/header.png' %}" alt="khe" /></a>
</header>
<nav>
<a href="/artists/">artists</a> |
<a href="/releases/">releases</a>
</nav>
<section id="content">
{% block content %}
{% endblock %}
</section>
</div>
</body>
</html>