Skip to content

Instantly share code, notes, and snippets.

@jklingsporn
Created January 4, 2016 18:41
Show Gist options
  • Save jklingsporn/381df1f186495d4d35ff to your computer and use it in GitHub Desktop.
Save jklingsporn/381df1f186495d4d35ff to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
{% include './header.html'%}
<body>
{% include './navbar.html'%}
<div class="container-fluid">
<div class="row">
<div class="col-md-offset-1 col-md-10 col-md-offset-1">
<div class="starter-template" id="content">
{% block content %}
{# This section is to be overriden by child templates #}
{% endblock content %}
</div>
</div>
</div>
</div>
{% include './footer.html'%}
<div id="footer">
{% block footer %}
{# This section is to be overridden by child templates #}
{% endblock footer %}
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment