<!DOCTYPE html> {% load static %} <html> <head> <meta charset="utf-8" /> <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> <div id="global"> <header> <a href="/"><img src="{% static 'img/header.jpg' %}" alt="khe" /></a> </header> <nav> <a class="link" href="/news/">news</a> <a class="link" href="/artists/">artists</a> <a class="link" href="/releases/">releases</a> <a class="link" href="/videos/">videos</a> <a class="link" href="/about/">about</a> </nav> <section id="content"> {% block content %} {% endblock %} </section> </div> </body> </html>