summaryrefslogtreecommitdiff
path: root/yaksh/templates/base.html
blob: 83db7ff5c1fca1fec291253ba8248f90c4b38845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!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>
     <title>
       {% block title %}
       {% endblock %}
     </title>

   {% block meta %}
	<meta charset="utf-8">
   	<meta name="description" content="">
	<meta name="author" content="">
   {% endblock %}
   
   <link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/base.css" type="text/css" /> 
   {% block css %}
   {% endblock %}
<script language="JavaScript" type="text/javascript" src="{{ URL_ROOT }}/static/yaksh/js/jquery-1.4.2.min.js"></script>
   {% block script %}
   {% endblock %}
   </head>

<body {% block onload %}{% endblock %}>
  <div class="container">
     <div class="content">
         <div class="page-header">
		    <h1><Strong><center>{% block pagetitle %} {% endblock pagetitle %}</center></strong></h1>
         </div>
         <div class=row>
            <div class=span14>
               <h3><center>{% block formtitle %} {% endblock formtitle %}</center></h3><br>
	       {% block content %}
	       {% endblock %}
            </div>
         </div>
     </div>
     <footer>
     <p align="center">&copy; FOSSEE group, IIT Bombay</p>
     </footer>
  </div>

</body>
</html>