source: remit/remit_templates/base.html @ a6806bf

client
Last change on this file since a6806bf was 5cbf234, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Slightly more interesting default theme

  • Property mode set to 100644
File size: 499 bytes
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4  <head>
5    <title>{% block title %}TITLE{% endblock %}</title>
6
7    <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}style/style.css" />
8    <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}style/default.css" />
9
10  </head>
11  <body>
12{% block content %}{% endblock %}
13  </body>
14</html>
Note: See TracBrowser for help on using the repository browser.