Created
September 14, 2014 06:20
-
-
Save liddiard/84c721d67469b58603ae to your computer and use it in GitHub Desktop.
Boilerplate base HTML for Django
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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