blob: efa1d58441c4b509738b7c2ce40f98f321598a50 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>
{% block title %}
{% endblock %}
</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/bootstrap.min.css">
<link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/base.css">
<style>
body {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
{% block meta %}
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="">
{% endblock %}
{% block css %}
{% endblock %}
<script src="{{ URL_ROOT }}/static/yaksh/js/bootstrap.min.js"></script>
<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=span12>
<h3><center>{% block formtitle %} {% endblock formtitle %}</center></h3><br>
{% block content %}
{% endblock %}
</div>
</div>
</div>
<footer>
<p align="center">© FOSSEE group, IIT Bombay</p>
</footer>
</div>
</body>
</html>
|