Browse Source

add webpack blocks no index de painel

pull/2485/head
Leandro Roberto 7 years ago
parent
commit
3790992703
  1. 16
      sapl/templates/painel/index.html

16
sapl/templates/painel/index.html

@ -15,8 +15,14 @@
<!-- TODO: does it need this head_title here? --> <!-- TODO: does it need this head_title here? -->
<title>{% block head_title %}{% trans 'SAPL - Sistema de Apoio ao Processo Legislativo' %}{% endblock %}</title> <title>{% block head_title %}{% trans 'SAPL - Sistema de Apoio ao Processo Legislativo' %}{% endblock %}</title>
{% block webpack_loader_css %}
{% render_chunk_vendors 'css' %}
{% render_bundle 'global' 'css' %}
{% endblock webpack_loader_css %}
{% block webpack_loader_chunks_css %}
{% endblock webpack_loader_chunks_css %}
{% render_bundle 'global'%}
<style type="text/css"> <style type="text/css">
html, body { html, body {
@ -145,6 +151,14 @@
</div> </div>
</body> </body>
{% block webpack_loader_js %}
{% render_chunk_vendors 'js' %}
{% render_bundle 'global' 'js' %}
{% endblock webpack_loader_js %}
{% block webpack_loader_chunks_js %}
{% endblock webpack_loader_chunks_js %}
<script type="text/javascript"> <script type="text/javascript">
var d = new Date(); var d = new Date();
var n = d.toLocaleDateString(); var n = d.toLocaleDateString();

Loading…
Cancel
Save