Created
February 6, 2014 19:33
-
-
Save vickoman/8851034 to your computer and use it in GitHub Desktop.
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
{% load staticfiles %} | |
<!doctype html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>{% block title %}Mi App con Django 1.6{% endblock title %}</title> | |
</head> | |
<body> | |
{% block body %} | |
{% endblock body %} | |
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css'%}" /> | |
<link rel="stylesheet" href="{% static 'css/app.css'%}" /> | |
<script src="{% static 'js/jquery-2.1.0.min.js' %}"></script> | |
<script src="{% static 'js/bootstrap.min.js' %}"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment