mirror of https://github.com/interlegis/sigi.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.
42 lines
1.2 KiB
42 lines
1.2 KiB
{% extends "admin/base.html" %}
|
|
|
|
{% block title %}{{ title }} | SIGI{% endblock %}
|
|
|
|
{% block extrastyle %}
|
|
<link rel="stylesheet" type="text/css"
|
|
href="{{ MEDIA_URL }}css/base_site.css" />
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
<meta name="copyright" content="Copyright (c) 2008 Interlegis. Todos
|
|
Direitos Reservados." />
|
|
<script type="text/javascript"
|
|
src="{{ MEDIA_URL }}js/jquery-1.2.6.min.js"></script>
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block branding %}
|
|
<h1 id="site-name">Sistema de Informações Gerenciais do Interlegis</h1>
|
|
{% endblock %}
|
|
|
|
{% block nav-global %}
|
|
<div id="nav-global">
|
|
<ul>
|
|
<li><a href="/">Dashboard</a></li>
|
|
<li>| <a href="/casas/">Casa Legislativas</a></li>
|
|
<li>| <a href="/parlamentares/">Parlamentares</a></li>
|
|
<li>| <a href="/mesas/">Mesas Diretoras</a></li>
|
|
<li>| <a href="/convenios/">Convênios</a></li>
|
|
<li>| <a href="/inventario/">Inventário</a></li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
<div id="footer">
|
|
<img src="/media/images/logo-interlegis.png">
|
|
|
|
<p>Copyright © 2008 Interlegis. Todos os Direitos Reservados.<br />
|
|
É proibido o uso das informações aqui fornecidas fora do âmbito do Interlegis.
|
|
</div>
|
|
{% endblock %}
|
|
|