|
|
|
@ -1,7 +1,9 @@ |
|
|
|
{% load i18n %} |
|
|
|
{% load staticfiles sass_tags %} |
|
|
|
{% load common_tags %} |
|
|
|
|
|
|
|
{% load render_bundle from webpack_loader %} |
|
|
|
{% load webpack_static from webpack_loader %} |
|
|
|
|
|
|
|
<!DOCTYPE HTML> |
|
|
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> |
|
|
|
<!--[if gt IE 8]><!--> |
|
|
|
@ -9,12 +11,13 @@ |
|
|
|
<!--<![endif]--> |
|
|
|
<head> |
|
|
|
<meta charset="UTF-8"> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
|
<!-- TODO: does it need this head_title here? --> |
|
|
|
<link rel="stylesheet" href="{% sass_src 'bootstrap-sass/assets/stylesheets/_bootstrap.scss' %}" type="text/css"> |
|
|
|
<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"> |
|
|
|
<script type="text/javascript" src="{% static 'jquery/dist/jquery.js' %}"></script> |
|
|
|
<script type="text/javascript" src="{% static 'js/jquery.runner.js' %}"></script> |
|
|
|
|
|
|
|
|
|
|
|
{% render_bundle 'global'%} |
|
|
|
{% render_bundle THEME_CUSTOM %} |
|
|
|
|
|
|
|
<style type="text/css"> |
|
|
|
html, body { |
|
|
|
@ -41,7 +44,7 @@ |
|
|
|
|
|
|
|
</head> |
|
|
|
<body> |
|
|
|
<audio type="hidden" id="audio" src="{% static 'audio/ring.mp3' %}"></audio> |
|
|
|
<audio type="hidden" id="audio" src="{% webpack_static 'audio/ring.mp3' %}"></audio> |
|
|
|
|
|
|
|
<h1 id="title"></h1> |
|
|
|
<input id="json_url" type="hidden" value="{% url 'sapl.painel:dados_painel' sessao_id %}"> |
|
|
|
|