project/templates/base.html
author Parth buch <parth.buch.115@gmail.com>
Fri, 30 Sep 2011 20:39:50 +0530
branch2011
changeset 427 ee98f2b50ffa
parent 389 fe49720e67bf
child 431 9674d40c44e7
permissions -rw-r--r--
added twitter and fb on the page
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     2
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-us" xml:lang="en-us" >
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     3
<head>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     4
  <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
389
fe49720e67bf Modified the registration file
primal primal007@gmail.com
parents: 379
diff changeset
     5
  <title>{% block title %}{% endblock %} SciPy.in 2011, December 4 - 7, 2011, Mumbai, Maharashtra, India</title>
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     6
310
3541adaa5cd3 Provide Javascript support and add all view related changes for form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 300
diff changeset
     7
  <link rel="stylesheet" type="text/css" href="/static/css/jquery.jgrowl.css" />
3541adaa5cd3 Provide Javascript support and add all view related changes for form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 300
diff changeset
     8
  <link rel="stylesheet" type="text/css" href="/static/css/jquery-ui-lightness/jquery-ui-1.7.3.custom.css" />
129
5be95b4b3ac3 Made changes to CSS for right menu and changed the file name.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 113
diff changeset
     9
  <link rel="stylesheet" type="text/css" href="/static/css/styles-20100720.css" />
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    10
91
dd6426394a9a Added dynamic form jquery plugin to the repository.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 83
diff changeset
    11
  <script type="text/javascript" src="/static/jquery/jquery.min.js"></script>
310
3541adaa5cd3 Provide Javascript support and add all view related changes for form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 300
diff changeset
    12
  <script type="text/javascript" src="/static/jquery/jquery-ui-1.7.3.custom.min.js"></script>
78
795dd8aeba9f All changes freeze along with Apache static file serving.
hg@fossee.in
parents: 71
diff changeset
    13
  <script type="text/javascript" src="/static/jquery/jquery.jgrowl_minimized.js"></script>
795dd8aeba9f All changes freeze along with Apache static file serving.
hg@fossee.in
parents: 71
diff changeset
    14
  <script type="text/javascript" src="/static/jquery/jquery.cookie.pack.js"></script>
795dd8aeba9f All changes freeze along with Apache static file serving.
hg@fossee.in
parents: 71
diff changeset
    15
  <script type="text/javascript" src="/static/js/kiwipycon.js"></script>
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    16
91
dd6426394a9a Added dynamic form jquery plugin to the repository.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 83
diff changeset
    17
  {% block addscripts %}{% endblock %}
dd6426394a9a Added dynamic form jquery plugin to the repository.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 83
diff changeset
    18
78
795dd8aeba9f All changes freeze along with Apache static file serving.
hg@fossee.in
parents: 71
diff changeset
    19
  <link rel="icon" href="/static/img/favicon.ico" type="image/x-icon" />
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    20
81
d03e5260947e Commented RSS feeds.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 79
diff changeset
    21
  <!--<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/feeds/blog" />-->
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    22
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    23
</head>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    24
<body>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    25
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    26
<div id="logo">
78
795dd8aeba9f All changes freeze along with Apache static file serving.
hg@fossee.in
parents: 71
diff changeset
    27
  <a href="/"><img src="/static/img/scipyshiny_small.png"
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    28
    alt="SciPy.in Logo" title="SciPy.in Logo"
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    29
    width="139" height="130" /></a>
427
ee98f2b50ffa added twitter and fb on the page
Parth buch <parth.buch.115@gmail.com>
parents: 389
diff changeset
    30
    <div id="social-badge">
ee98f2b50ffa added twitter and fb on the page
Parth buch <parth.buch.115@gmail.com>
parents: 389
diff changeset
    31
    	<a href="http://twitter.com/scipydotin" target="_blank"><img src="/static/img/twitter.png" alt="Twitter" Title="Connect to us of Twitter" /></a>
ee98f2b50ffa added twitter and fb on the page
Parth buch <parth.buch.115@gmail.com>
parents: 389
diff changeset
    32
    	<a href="http://facebook.com/scipydotin" target="_blank"><img src="/static/img/facebook.png" alt="Facebook" Title="Connect to us of Facebook" /></a>
ee98f2b50ffa added twitter and fb on the page
Parth buch <parth.buch.115@gmail.com>
parents: 389
diff changeset
    33
    </div>
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    34
</div>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    35
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    36
<div id="header">
379
7e843a934d74 Changed the title and header to Scipy 2011
Parth buch <parth.buch.115@gmail.com>
parents: 310
diff changeset
    37
  <h1>{% block header %}SciPy.in 2011</h1>
7e843a934d74 Changed the title and header to Scipy 2011
Parth buch <parth.buch.115@gmail.com>
parents: 310
diff changeset
    38
  <h3>December 4 - 7, Mumbai, India{% endblock %}</h3>
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    39
  {% include '_menu_user.html' %}
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    40
</div>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    41
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    42
<div id="wrapper">
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    43
  <div id="left">
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    44
  {% include '_menu.html' %}
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    45
  </div>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    46
  <div id="content">
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    47
  {% if user.is_authenticated %}
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    48
      {% include 'user/_usermenu.html' %}
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    49
  {% endif %}
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    50
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    51
    {% block content %}{% endblock %}
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    52
  </div>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    53
  <div id="right">
113
87a87487580d Renamed sponsors template as right side menu template.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 97
diff changeset
    54
  {% include '_right_menu.html' %}
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    55
  </div>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    56
</div>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    57
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    58
<div id="footer">
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    59
   <p rel="credits">Content by the <a href="/about/team/" alt="SciPy.in Team">SciPy.in Team</a>,
140
dd313f32bbe3 Changed Website author details.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 129
diff changeset
    60
   website by <a href="http://hg.fossee.in/scipycon/file/tip/AUTHORS" alt="Website's Creators">FOSSEE using Kiwi Djangonauts original code</a>,
79
a5d348588b5b Added /static to speakers images.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 78
diff changeset
    61
   hosting by <a href="http://fossee.in/" alt="Free and Open Source software in Science and Engineering Education">Free and Open Source software in Science and Engineering Education</a>,
145
2bb21b96f246 Added contact info to footer.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 140
diff changeset
    62
   Rants, Bugs and Flames to: <a href="mailto:admin@scipy.in">admin@scipy.in</a>
140
dd313f32bbe3 Changed Website author details.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 129
diff changeset
    63
   </p>
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    64
</div>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    65
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    66
</body>
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    67
</html>