summaryrefslogtreecommitdiff
path: root/static/website/templates/base.html
blob: 49c5f18b9466db5a0e9fdcca6ca1db5ce1e6dd7b (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
{% load static %}
<html>
    <head>
        <title>Spoken-Tutorial Forums</title>
        <link rel="stylesheet" href="{% static 'website/css/bootstrap.min.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" />
    </head>
    <body>
        <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="http://spoken-tutorial.org/sites/all/themes/spoken/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_replies' user.id %}">My Replies</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">&copy;</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 -->

        <script src="{% static 'website/js/jquery.min.js' %}"></script>
        <script src="{% static 'website/js/bootstrap.min.js' %}"></script>

        {% block javascript %}
            <!-- overide with custom javascript -->
        {% endblock %}
    </body>
</html>