summaryrefslogtreecommitdiff
path: root/static/website/templates/sponsors.html
blob: d5c3e6c8aa67029fba254bb0ad7c5020beae1b91 (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
{% extends 'website/templates/base.html' %}
{% load static %}

{% block sidebar %}
{% endblock %}

{% block current %}
    Sponsors
{% endblock %}

{% block content %}
<div id="sponsorship-details">
    <div class="row">
        <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
            <h3 class="garmond"><u>Gold Sponsor</u></h3>
            <div class="media">
                <a class="pull-left" href="#">
                    <img class="media-object" src="{% static 'website/images/mhrd-logo.png' %}" alt="mhrd-logo">
                </a>
                <div class="media-body">
                    <h4 class="media-heading">MHRD India</h4>
                    <p>
                    The FOSSEE project undertaken by IIT Bombay is funded by
                    <a href="http://mhrd.gov.in" target="_blank">Ministry of Human Resource Development</a> (Govt. of India) under
                    National Mission on Education through ICT. The essence of Human
                    Resource Development is education, which plays a significant
                    and remedial role in balancing the socio-economic fabric of the
                    Country. Since citizens of India are its most valuable
                    resource, our billion-strong nation needs the nurture and care
                    in the form of basic education to achieve a better quality of
                    life.
                    </p>
                </div>
            </div> <!-- /.media -->
            <hr>
            <h3 class="garmond"><u>Organizer</u></h3>
            <div class="media">
                <a class="pull-left" href="#">
                    <img class="media-object" src="{% static 'website/images/fossee-logo.png' %}" alt="fossee-logo">
                </a>
                <div class="media-body">
                    <h4 class="media-heading">FOSSEE</h4>
                    <p>
                    Annual SciPy India conference is organized by the team members
                    of <a href="http://fossee.in" target="_blank">FOSSEE</a> project.
                    FOSSEE project is part of the National
                    Mission on Education through ICT with the thrust area being
                    "Adaptation and deployment of open source simulation packages
                    equivalent to proprietary software, funded by MHRD, based at
                    the <a href="http://www.iitb.ac.in" target="_blank">Indian Institute of Technology Bombay</a> (IITB).
                    </p>
                </div>
            </div> <!-- /.media -->
        </div> <!-- /.col -->
    </div> <!-- /.row -->
</div> <!-- /#sponsorship-details -->
{% endblock %}