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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
{% load static %}
<!------------ contact ------------- -->
<section id="contact_us">
<br>
<br>
<br>
<br>
<div class="container">
<div class="align-items-center">
<div class="col-md-offset-4">
<center>
<h2>Contact Us</h2>
</center>
<hr>
<div class="panel panel-default">
<div class="panel-body">
<dl class="alt">
<dt>Phone</dt>
<dd> (+91) 22 25764133</dd>
<dt>Email</dt>
<dd>
<a style="color:black;" href="mailto:scipy@fossee.in">scipy [at] fossee [dot] in
</a>
</dd>
</dl>
<ul class="list-inline">
<li class="list-inline-item">
<a style="font-size:40px;" target="_blank" href="https://twitter.com/scipyindia">
<i class="fa fa-twitter-square" aria-hidden="true"></i>
<span class="label"></span>
</a>
</li>
<li class="list-inline-item">
<a style="color:#3b5998;font-size:40px;" target="_blank" href="https://www.facebook.com/ScipyIndia2017-737085366490623/">
<i class="fa fa-facebook-square" aria-hidden="true"></i>
<span class="label"></span>
</a>
</li>
<li class="list-inline-item">
<a style="color:#d34836;font-size:40px;" target="_blank" href="https://plus.google.com/u/0/104012350840765676803">
<i class="fa fa-google-plus-square" aria-hidden="true"></i>
<span class="label"></span>
</a>
</li>
</ul>
Visit SciPy.in/
<a style="color:blue;" target="_blank" href="http://scipy.in/2009">2009</a>/
<a style="color:blue;" target="_blank" href="http://scipy.in/scipyin/2010/">2010</a>/
<a style="color:blue;" target="_blank" href="http://scipy.in/scipyin/2011/">2011</a>/
<a style="color:blue;" target="_blank" href="http://scipy.in/2012">2012</a>/
<a style="color:blue;" target="_blank" href="http://scipy.in/2013">2013</a>/
<a style="color:blue;" target="_blank" href="http://scipy.in/2014">2014</a>/
<a style="color:blue;" target="_blank" href="http://scipy.in/2015">2015</a>/
<a style="color:blue;" target="_blank" href="http://scipy.in/2016">2016</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-------------------------->
<!--------------------------->
<!-- Footer -->
<br>
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">
<center style="color:white;font-size: 10px;">
This work is licensed under a <a target="_blank" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</center>
</p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src='https://www.google.com/recaptcha/api.js'></script>
<script src="{% static 'vendor/jquery/jquery.min.js' %}"></script>
<script src="{% static 'vendor/popper/popper.min.js' %}"></script>
<script src="{% static 'vendor/bootstrap/js/bootstrap.min.js' %}"></script>
<script>
$(function(){
$('.nav-tabs a').on('click', function (e) {
e.preventDefault();
$(this).tab('show');
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-26098261-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript">
function validateMessage() {
var x = document.getElementById("message").value;
var y = x.trim().length;
if (x.trim()==null || x.trim()==""|| x.trim()==" ") {
alert("Enter a message");
return false;
}
else if (y<15) {
alert("Minimum character limit is 15");
return false;
}
else
{
alert('Thank you for your feedback.');
}
}
</script>
<script type="text/javascript">
window.onload = function () {
var n1 = Math.round(Math.random() * 10 + 1);
var n2 = Math.round(Math.random() * 10 + 1);
$("#a").val(n1 + " + " + n2 + " = ");
var add = n1 + n2;
$("#b").on('keyup', function (){
if (this.value == add){
$('#myButton').removeAttr('disabled');
document.getElementById("error").innerHTML = "";
}
else{
$('#myButton').attr('disabled', true);
document.getElementById("error").innerHTML = "Incorrect!";
}
});
}
</script>
|