This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
veridic/acs/templates/base.html

44 lines
1.2 KiB
HTML

{% load i18n %} <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="{{ MEDIA_URL }}css/style.css" />
<!-- XXX: get a second stylesheet from the settings -->
<title>{% block title %}Access Control System{% endblock %}</title>
<script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.js"></script>
{% block extra_head %}
{% endblock %}
{% block extra_scripts %}
{% endblock %}
</head>
<body {% block bodyargs %}{% endblock %} >
<div id="wrap">
<a href="/"><div id="header">
{% block header %}
<h1>A.C.S.</h1>
<span>Decide for me</span>
{% endblock %}
</div></a>
<div id="splash"></div>
<div id="content">
{% if not request.user.username == '' %}
<div id="user">
</div>
{% endif %}
{% block content %}{% endblock %}
</div>
<div id="footer">
{% block footer %}
Copyright &copy; 2010 Entr'ouvert
{% endblock %}
</div>
</div>
</body>
</html>