Skip to content

Instantly share code, notes, and snippets.

@liddiard
Created September 14, 2014 06:20
Show Gist options
  • Save liddiard/84c721d67469b58603ae to your computer and use it in GitHub Desktop.
Save liddiard/84c721d67469b58603ae to your computer and use it in GitHub Desktop.
Boilerplate base HTML for Django
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{% block meta_description %}Default meta description here.{% endblock %}">
<title>{% block title %}Default title here{% endblock %}</title>
<link rel="icon" type="image/x-icon" href="{{ STATIC_URL }}img/favicon.ico">
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/main.css">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="{{ STATIC_URL }}js/main.js"></script>
</head>
<body>
<header>
</header>
{% block content %}{% endblock %}
<footer>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment