summaryrefslogtreecommitdiff
path: root/static/website
diff options
context:
space:
mode:
authorprashantsinalkar2018-08-06 12:31:06 +0530
committerprashantsinalkar2018-08-06 12:31:06 +0530
commit6764815d3711a42f022e86f153f2931ed8348d06 (patch)
tree7f847b4cda453fd8d62ab864cdca111ec81f1a47 /static/website
parent7db8cfb600cf58378f8c33ae5427c5fca96092c4 (diff)
downloadSciPy2018-6764815d3711a42f022e86f153f2931ed8348d06.tar.gz
SciPy2018-6764815d3711a42f022e86f153f2931ed8348d06.tar.bz2
SciPy2018-6764815d3711a42f022e86f153f2931ed8348d06.zip
added new content and css
Diffstat (limited to 'static/website')
-rw-r--r--static/website/bootstrap-css/assets/css/main.css22
-rwxr-xr-xstatic/website/bootstrap-css/custom.css14
-rw-r--r--static/website/templates/index.html39
3 files changed, 60 insertions, 15 deletions
diff --git a/static/website/bootstrap-css/assets/css/main.css b/static/website/bootstrap-css/assets/css/main.css
index 3c132f4..9df1051 100644
--- a/static/website/bootstrap-css/assets/css/main.css
+++ b/static/website/bootstrap-css/assets/css/main.css
@@ -453,10 +453,10 @@ ul li {
/*
* 6.7 Section: Schedule
*/
-.partner .organiser {
+.sponsor .organiser {
background-color: #f8f8f8;
}
-.partner .partner-box {
+.sponsor .sponsor-box {
display: block;
opacity: 0.3;
height: 150px;
@@ -465,10 +465,10 @@ ul li {
-webkit-transition: 0.5s all linear;
transition: 0.5s all linear;
}
-.partner .partner-box:hover {
+.sponsor .sponsor-box:hover {
opacity: 1;
}
-.partner .partner-box-1 {
+.sponsor .sponsor-box-1 {
background: url(../images/partner/mhrd.png) no-repeat center center/contain;
}
.organiser .organiser-box {
@@ -487,25 +487,25 @@ ul li {
background: url(../images/partner/fossee.png) no-repeat center center/contain;
}
/*
-.partner .partner-box-2 {
+.sponsor .sponsor-box-2 {
background: url(../images/partner/partner-2.png) no-repeat center center/contain;
}
-.partner .partner-box-3 {
+.sponsor .sponsor-box-3 {
background: url(../images/partner/partner-3.png) no-repeat center center/contain;
}
-.partner .partner-box-4 {
+.sponsor .sponsor-box-4 {
background: url(../images/partner/partner-4.png) no-repeat center center/contain;
}
-.partner .partner-box-5 {
+.sponsor .sponsor-box-5 {
background: url(../images/partner/partner-5.png) no-repeat center center/contain;
}
-.partner .partner-box-6 {
+.sponsor .sponsor-box-6 {
background: url(../images/partner/partner-6.png) no-repeat center center/contain;
}
-.partner .partner-box-7 {
+.sponsor .sponsor-box-7 {
background: url(../images/partner/partner-7.png) no-repeat center center/contain;
}
-.partner .partner-box-8 {
+.sponsor .sponsor-box-8 {
background: url(../images/partner/partner-8.png) no-repeat center center/contain;
}
*/
diff --git a/static/website/bootstrap-css/custom.css b/static/website/bootstrap-css/custom.css
index e69de29..25a4231 100755
--- a/static/website/bootstrap-css/custom.css
+++ b/static/website/bootstrap-css/custom.css
@@ -0,0 +1,14 @@
+/* Paste this css to your style sheet file or under head tag */
+/* This only works with JavaScript,
+if it's not present, don't show loader */
+.no-js #loader { display: none; }
+.js #loader { display: block; position: absolute; left: 100px; top: 0; }
+.se-pre-con {
+ position: fixed;
+ left: 0px;
+ top: 0px;
+ width: 100%;
+ height: 100%;
+ z-index: 9999;
+ background: url(images/loader-64x/Preloader_2.gif) center no-repeat #fff;
+}
diff --git a/static/website/templates/index.html b/static/website/templates/index.html
index 229b455..f2e5896 100644
--- a/static/website/templates/index.html
+++ b/static/website/templates/index.html
@@ -5,16 +5,35 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="title" content="SciPy India - International conference on Python for education and computing">
+ <meta name="description" content="SciPy India is a conference providing opportunities to spread the use of the Python programming language in the Scientific Computing community in India. It provides a unique opportunity to interact with the Who's who of the Python for Scientific Computing fraternity and learn, understand, participate, and contribute to Scientific Computing using Python. One of the goals of the conference is to combine education, engineering, and science with computing through the medium of Python.">
+ <meta name="keywords" content="SciPy, SciPyIndia 2018, Python,SciPy India 2018,SciPy India conference,Scientific Computing">
<title>SciPy India 2018</title>
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
+ <script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.2/modernizr.js"></script>
<!-- css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="{% static 'website/bootstrap-css/bower_components/bootstrap/dist/css/bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'website/bootstrap-css/bower_components/ionicons/css/ionicons.min.css' %}">
<link rel="stylesheet" href="{% static 'website/bootstrap-css/assets/css/main.css' %}">
+ <link rel="stylesheet" href="{% static 'website/bootstrap-css/assets/css/custom.css' %}">
+
+<script type="text/javascript">
+// Wait for window load
+jQuery(document).ready(function($){
+ $(window).load(function() {
+ // Animate loader off screen
+ $(".se-pre-con").fadeOut("slow");
+ });
+
+ });
+
+</script>
</head>
<body data-spy="scroll" data-target="#site-nav">
+<div class="se-pre-con"></div>
<nav id="site-nav" class="navbar navbar-fixed-top navbar-custom">
<div class="container">
<div class="navbar-header">
@@ -46,7 +65,7 @@
<li class="active"><a data-scroll href="#about">About</a></li>
<li><a data-scroll href="#speakers">Speakers</a></li>
<li><a data-scroll href="#schedule">Schedule</a></li>
- <li><a data-scroll href="#partner">Partner</a></li>
+ <li><a data-scroll href="#sponsor">Sponsor</a></li>
<!-- <li><a data-scroll href="#">Sponsorship</a></li> -->
<li><a data-scroll href="#faq">FAQ</a></li>
<li><a data-scroll href="#photos">Photos</a></li>
@@ -319,16 +338,27 @@
</section>
- <section id="partner" class="section partner">
+ <section id="sponsor" class="section sponsor">
<div class="container">
<div class="row">
<div class="col-md-12">
- <h3 class="section-title">Partner</h3>
+ <h3 class="section-title">Sponsor</h3>
</div>
</div>
<div class="row">
<div class="col-sm-12">
- <a href="http://mhrd.gov.in" class="partner-box partner-box-1" target="_blank"></a>
+ <a href="http://mhrd.gov.in" class="sponsor-box sponsor-box-1" target="_blank"></a>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-sm-12">
+ <p class="text-justify">
+ Thank you for your interest to sponsor Scipy India 2018.</p>
+<p class="text-justify">
+ SciPy India, an annual conference organized by FOSSEE (Free and Open Source Software for Education) based at IIT Bombay, provides the opportunity to unfurl the use of the Python programming language in the Scientific Computing community in India. SciPy India being organized since 2009, attracts more than 250 students and faculty every year. This conference provides the participants with a unique opportunity to interact and connect with the Python community.
+</p><p class="text-justify">
+ Here’s a call to the interested organizations to sponsor this conference and get associated with the event. Through this sponsorship, you could engage with top professionals and enhance your organization’s brand visibility amongst Python users.
+ </p>
</div>
</div>
</section>
@@ -589,5 +619,6 @@
<script src="{% static 'website/bootstrap-css/bower_components/bootstrap/dist/js/bootstrap.min.js' %}"></script>
<script src="{% static 'website/bootstrap-css/bower_components/smooth-scroll/dist/js/smooth-scroll.min.js' %}"></script>
<script src="{% static 'website/bootstrap-css/assets/js/main.js' %}"></script>
+
</body>
</html>