Skip to content

Instantly share code, notes, and snippets.

@keshavagrawal89
Last active August 29, 2015 14:05
Show Gist options
  • Save keshavagrawal89/356bb68068ac3ed4ae4e to your computer and use it in GitHub Desktop.
Save keshavagrawal89/356bb68068ac3ed4ae4e to your computer and use it in GitHub Desktop.
<!-- base.html -->
<div>{% block sidebar %}{% endblock %}</div>
<div>{% block content %}{% endblock %}</div>
<!-- MainPage.html -->
{% block sidebar %}
<ul ng-app="myApp" ng-controller="myController">
<li></li>
</ul>
{% endblock %}
{% block content %}
<div ng-app="myApp" ng-controller="myController"> my page content</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment