| {% extends "soc/base.html" %} |
| {% comment %} |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| {% endcomment %} |
| {% block meta %} |
| {{ block.super }} |
| <meta name="viewport" content="width=device-width,initial-scale=1"/> |
| {% endblock meta %} |
| |
| {% block stylesheets %} |
| <link type="text/css" rel="stylesheet" href="/soc/content/{{ app_version }}/css/gci/style.css" /> |
| <!--[if lte IE 7]> |
| <link type="text/css" rel="stylesheet" href="/soc/content/{{ app_version }}/css/gci/ie.css" /> |
| <![endif]--> |
| <link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oswald" /> |
| {% endblock stylesheets %} |
| |
| {% block body %} |
| {% block extra_header %} |
| {% endblock extra_header %} |
| |
| <div id="wrap"> |
| <div id="main"> |
| {% block header %} |
| {{ header.render }} |
| {% endblock header %} |
| |
| {% block main_content %} |
| <div class="grid_3 side"> |
| <div class="block block-main-nav"> |
| {{ mainmenu.render }} |
| </div> |
| <!-- end .block.block-main-nav --> |
| |
| {% block usermenu %} |
| {% comment %} |
| Empty here. Can be utilized in derived templates |
| {% endcomment %} |
| {% endblock usermenu %} |
| |
| {% if status %} |
| {{ status.render }} |
| {% endif %} |
| </div> |
| <!-- end .grid_3.side --> |
| |
| <div class="grid_9 main"> |
| {% if ds_write_disabled %} |
| <div id="user-message" class="error"> |
| <strong>ALERT: </strong>Google Appengine datastore write |
| capability has been disabled at the moment. You will |
| <strong>NOT</strong> be able to save your changes at this |
| time. We are sorry for the inconvenience caused. Please visit |
| <a href="http://code.google.com/status/appengine"> |
| http://code.google.com/status/appengine</a> to check |
| Appengine datastore status. |
| </div> |
| {% endif %} |
| {% block page_content %} |
| {{ tmpl.render }} |
| {% endblock page_content %} |
| </div> |
| <!-- end .grid_9.main --> |
| </div> |
| <!-- end .container_12 --> |
| {% endblock main_content %} |
| |
| </div> |
| <!-- end #main --> |
| </div> |
| <!-- end #wrap --> |
| |
| {% block footer %} |
| {{ footer.render }} |
| {% endblock footer %} |
| |
| {% endblock body %} |