templates/base.html
author anoop
Thu, 03 Jun 2010 19:08:31 +0530
branchanoop
changeset 27 48a86d8956f7
child 30 11f828503666
permissions -rw-r--r--
added base.html and did needed changes, (forgot to add files in previous commit).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     1
<html>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     2
<head>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     3
    <title>{% block title %}SAGE DAYS 25, India{% endblock %}</title>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     4
    {% block js_script %} {% endblock %}
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     5
<style type="text/css">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     6
        body {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     7
        font-family: Verdana, Arial, Helvetica, sans-serif;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     8
        font-size: 11px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
     9
        color: #333;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    10
        text-align: center;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    11
        margin: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    12
        padding: 20px 0px 20px 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    13
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    14
        #wrapper {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    15
        width: 956px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    16
        padding: 10px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    17
        margin: 0px auto 0px auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    18
        height: auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    19
        text-align: left;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    20
        border: 1px solid #ddd;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    21
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    22
        #header {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    23
        margin: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    24
        padding: 5px 0px 5px 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    25
        height: auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    26
        width: auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    27
        text-align: center;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    28
        background-color: #f1f1f1;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    29
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    30
        #container {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    31
        padding: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    32
        margin: 10px 0px 0px 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    33
        background-attachment: scroll;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    34
        background-image: url(back.gif);
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    35
        background-repeat: repeat-y;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    36
        background-position: 0px 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    37
        height: auto; #default was 1%
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    38
        width: auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    39
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    40
        #left {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    41
        margin: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    42
        width: 160px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    43
        padding: 10px 20px 10px 20px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    44
        float: left;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    45
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    46
        #nav {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    47
        margin: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    48
        padding: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    49
        list-style-image: none;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    50
        list-style-type: none;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    51
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    52
        #nav li {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    53
        margin: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    54
        padding: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    55
        display: block;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    56
        background-attachment: scroll;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    57
        background-image: url(bullet.gif);
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    58
        background-repeat: no-repeat;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    59
        background-position: 0px 50%;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    60
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    61
        #nav li a:link, #nav li a:visited, #nav li a:active {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    62
        color: #666;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    63
        text-decoration: none;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    64
        display: block;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    65
        margin: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    66
        padding: 3px 15px 3px 15px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    67
        width: 130px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    68
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    69
        #nav li a:hover {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    70
        color: #999;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    71
        text-decoration: none;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    72
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    73
        #center {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    74
        height: auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    75
        width: 504px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    76
        padding: 10px 20px 10px 20px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    77
        float: left;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    78
        margin: 0px 0px 0px 6px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    79
        line-height: 1.8em;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    80
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    81
        h1 {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    82
        font-size: 14px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    83
        margin: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    84
        padding: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    85
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    86
        #right {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    87
        padding: 10px 20px 10px 20px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    88
        height: auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    89
        width: 160px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    90
        float: left;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    91
        margin: 0px 0px 0px 6px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    92
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    93
        .clearer {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    94
        font-size: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    95
        line-height: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    96
        display: block;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    97
        margin: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    98
        padding: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
    99
        clear: both;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   100
        height: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   101
        width: auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   102
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   103
        #footer {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   104
        margin: 10px 0px 0px 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   105
        text-align: left;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   106
        padding: 5px 0px 5px 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   107
        background-color: #f1f1f1;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   108
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   109
        #footer p {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   110
        color: #999;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   111
        margin: 0px auto 0px auto;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   112
        padding: 0px;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   113
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   114
        #footer a:link, #footer a:visited, #footer a:active {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   115
        color: #999;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   116
        text-decoration: none;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   117
        }
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   118
        #footer a:hover {
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   119
        color: #ccc;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   120
        text-decoration: none;
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   121
        } 
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   122
</style>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   123
</head>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   124
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   125
<body>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   126
<div id="wrapper">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   127
    <div id="header">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   128
        <!--<h2><a href="/sage_days">-->SAGE DAYS 25, India<!--</a></h2>-->
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   129
    </div>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   130
    <div id="container">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   131
        <div id="left">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   132
        <ul id="nav">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   133
            <li><a href="/sage_days" title="home">home</a></li>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   134
        </ul>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   135
        </div>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   136
        <div id="center">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   137
            {% block content %}This is the default content{% endblock %}
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   138
        </div>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   139
        <div id="right">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   140
            <!--{% if user.is_authenticated %}
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   141
            <a href="/accounts/logout">logout</a> 
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   142
            {% endif %}-->
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   143
        </div>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   144
        <div class="clearer">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   145
        </div>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   146
    </div>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   147
    <div id="footer">
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   148
    Designed by <a href="http://fossee.in">FOSSEE</a>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   149
    </div>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   150
</div> 
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   151
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   152
</body>
48a86d8956f7 added base.html and did needed changes, (forgot to add files in previous commit).
anoop
parents:
diff changeset
   153
</html>