Skip to content

Instantly share code, notes, and snippets.

@vickoman
Created February 6, 2014 19:33
Show Gist options
  • Save vickoman/8851034 to your computer and use it in GitHub Desktop.
Save vickoman/8851034 to your computer and use it in GitHub Desktop.
{% 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