mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
{% load i18n %}
|
|
{% load staticfiles %}
|
|
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block head_title %}{% trans 'SAPL - Sistema de Apoio ao Processo Legislativo' %}{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% block header_content %}
|
|
<link rel="stylesheet" href="{% static 'foundation/css/foundation.min.css' %}">
|
|
<script type="text/javascript" src="{% static 'foundation/js/vendor/modernizr.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'foundation/js/vendor/jquery.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'foundation/js/vendor/fastclick.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'foundation/js/foundation.min.js' %}"></script>
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
... header ...
|
|
<hr/>
|
|
</header>
|
|
|
|
<!-- Content -->
|
|
{% block content_container %}
|
|
{# FIXME: row class is not for that: replace it keeping the layout (notice width) #}
|
|
<div id="body_content" class="row">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
{% endblock %}
|
|
<!-- END Content -->
|
|
|
|
<footer id="footer">
|
|
<hr/>
|
|
... footer...
|
|
</footer>
|
|
|
|
{% block foot_more_js %}{% endblock %}
|
|
|
|
{# Init Foundation #}
|
|
{% block foundation_js_init %}
|
|
<script>
|
|
$(document).foundation();
|
|
</script>
|
|
{% endblock foundation_js_init %}
|
|
</body>
|
|
</html>
|
|
|