Created
March 27, 2014 16:11
-
-
Save bmoeskau/9811229 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% extends "layouts/main.html" %} | |
| {% block page_title %}Services{% endblock %} | |
| {% set page = 'services' %} | |
| {% if error %} | |
| <h2>Oops</h2> | |
| <p>{{ error }}</p> | |
| {% else %} | |
| {% block content %} | |
| <div id="tpl-content"></div> | |
| {% endblock %} | |
| {% block bootstrap %} | |
| <script> | |
| window.bootstrap = { | |
| user: {{ user | safe }}, | |
| account: {{account|safe}}, | |
| auth: {{auth | safe}} | |
| }; | |
| </script> | |
| {% endblock %} | |
| {% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment