Skip to content

Instantly share code, notes, and snippets.

@libbkmz
Created August 5, 2013 15:41
Show Gist options
  • Save libbkmz/6156918 to your computer and use it in GitHub Desktop.
Save libbkmz/6156918 to your computer and use it in GitHub Desktop.
<html>
{% block sidebar_user_2 %}
<div class="span2">
</div>
{% endblock sidebar_user_2 %}
</html>
{% extends "base.html" %}
{% block sidebar_user_2 %}
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
{% endblock sidebar_user_2 %}
1st variant. Without extends block sidebar_user_2 i want to get:
<html>
</html>
2st variant. I want to get:
<html>
<div class="span2">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment