Skip to content

Instantly share code, notes, and snippets.

@richleland
Created March 2, 2012 18:35
Show Gist options
  • Select an option

  • Save richleland/1960262 to your computer and use it in GitHub Desktop.

Select an option

Save richleland/1960262 to your computer and use it in GitHub Desktop.
{% 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