blob: d29571ed3b2e052b27368e53328a524a828a765f (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
{% load compress %}
{% load static %}
<html>
<head>
<title>
{% block title %}
Spoken Tutorial Forums
{% endblock %}
</title>
{% compress css %}
<link rel="stylesheet" href="{% static 'website/css/bootstrap.min.css' %}" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="{% static 'website/slick/slick.css' %}" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="{% static 'website/css/main.css' %}" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="{% static 'website/css/nice-bar.css' %}" type="text/css" media="screen" charset="utf-8" />
{% endcompress %}
</head>
<body>
{% load nice_bar %}
{% if request|is_nice_bar_visible %}
<div class="nice-bar">
<p class="nice-text">
One day Oscad workshop on 10<sup>th</sup> May 2014.
<a class="nice-button" href="http://oscad.in/one-day-workshop">View more</a> details about the workshop.
<a class="nice-button" href="http://pesit-oscad-workshop.doattend.com">Click here</a> for registration.
<span class="nice-close">x</span>
</p>
</div>
{% endif %}
<div id="page-wrapper">
<div id="header-wrapper">
<div id="header-inner">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="{% url 'website:home' %}">
<img id="logo" src="{% static 'website/images/logo.png' %}">
Spoken Tutorial Forums
</a>
</div> <!-- /.navbar-header -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="{% url 'website:search' %}">
<span class="glyphicon glyphicon-search"></span>
Search
</a>
</li>
<li>
<a href="{% url 'website:new_question' %}">
<span class="glyphicon glyphicon-pencil"></span>
Ask Question
</a>
</li>
{% if user.is_authenticated %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<span class="glyphicon glyphicon-user"></span>
{{ user }}<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="{% url 'website:user_questions' user.id %}">My Questions</a></li>
<li><a href="{% url 'website:user_answers' user.id %}">My Answers</a></li>
<li>
<a href="{% url 'website:user_notifications' user.id %}">
Notifications
<span class="badge" style="background:#a26dc8; color:#ffffff;">
{% load notify %}
{% notification_count user.id %}
</span>
</a>
</li>
<li class="divider"></li>
<li><a href="{% url 'user_logout' %}">Logout</a></li>
</ul>
</li> <!-- /li.dropdown -->
{% else %}
<li>
<a href="{% url 'user_login' %}">
<span class="glyphicon glyphicon-user"></span>
Login
</a>
</li>
{% endif %}
</ul>
</div> <!-- /.navbar-collapse -->
</div> <!-- /.container -->
</nav>
</div> <!-- /#header-inner -->
</div> <!-- /#header-wrapper -->
<div id="content-wrapper">
<div id="content-inner" class="container">
<div id="content" class="col-lg-12 col-md-12 col-sm-12">
{% block content %}
{% endblock %}
</div> <!-- /#content -->
</div> <!-- /#content-inner -->
</div> <!-- /#content-wrapper -->
<div id="footer-wrapper" class="container">
<div id="footer-inner" class="col-lg-12 col-md-12 col-sm-12">
<div class="pull-left">
<!--[if lte IE 8]><span style="filter: FlipH; -ms-filter: "FlipH"; display: inline-block;"><![endif]-->
<span style="-moz-transform: scaleX(-1); -o-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); display: inline-block;">
<a href="http://www.gnu.org/copyleft/" target="_blank">©</a>
</span>
<!--[if lte IE 8]></span><![endif]-->
2013 <a href="http://spoken-tutorial.org" target="_blank">spoken-tutorial.org</a>
</div>
<div class="pull-right">
Developed at IIT Bombay
</div>
</div> <!-- /#footer-inner -->
</div> <!-- /#footer-wrapper -->
</div> <!-- /#page-wrapper -->
{% compress js %}
<script src="{% static 'website/js/jquery.min.js' %}"></script>
<script src="{% static 'website/js/bootstrap.min.js' %}"></script>
<script src="{% static 'website/slick/slick.min.js' %}"></script>
<script src="{% static 'website/js/nice-bar.js' %}"></script>
{% block javascript %}
<!-- overide with custom javascript -->
{% endblock %}
{% endcompress %}
</body>
</html>
|