Skip to content

Instantly share code, notes, and snippets.

@mtigas
Created December 21, 2012 21:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mtigas/4355997 to your computer and use it in GitHub Desktop.
Save mtigas/4355997 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>test</title>
{% block extra_head_tags %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>
{% extends "base.html" %}
{% block content %}
<h1>this is some content</h1>
{% endblock %}
{% block newblock %}
<p>This is a new block. Where would it go?</p>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment