Skip to content

Instantly share code, notes, and snippets.

@ashwoods
Created June 18, 2012 17:17
Show Gist options
  • Save ashwoods/2949487 to your computer and use it in GitHub Desktop.
Save ashwoods/2949487 to your computer and use it in GitHub Desktop.
base.html
<html>
<header></header>
<body>
{% block content %}{% endblock %}
</body>
</html>
<html>
<header></header>
<body>
{% block content %}
Here is my search power.
{% endblock %}
</body>
</html>
{% extends 'base.html' %}
{% block content %}
Here is my search power.
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment