Created
March 2, 2012 18:35
-
-
Save richleland/1960262 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 compress %}<!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>{% block browser_title %}{{ current_page.browser_title }}{% endblock %}</title> | |
| <meta name="description" content="{% block meta_description %}{{ current_page.meta_description }}{% endblock %}"> | |
| <meta name="keywords" content="{% block meta_keywords %}{{ current_page.meta_keywords }}{% endblock %}"> | |
| <meta name="robots" content="{% block meta_robots %}{{ current_page.meta_robots }}{% endblock %}"> | |
| <link rel="shortcut icon" href="{{ STATIC_URL }}favicon.ico"> | |
| {% compress css %} | |
| <link rel="stylesheet" href="{{ STATIC_URL }}scss/test.scss" type="text/x-scss"> | |
| <link rel="stylesheet" href="{{ STATIC_URL }}scss/beniscool.scss" type="text/x-scss"> | |
| {% endcompress %} | |
| </head> | |
| <body> | |
| {% block content %}{% endblock %} | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment