blob: 9a72f975e186b9df14a61d18f579785d52824bcb (
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
|
{% load static %}
<!-- Header-->
{% block header %}
<head>
<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 2019, Python,SciPy India 2019,SciPy India conference,Scientific Computing">
<link rel="icon" href="{% static 'website/bootstrap-css/assets/images/logo.png' %}" type="icon">
<title>SciPy India 2019</title>
<script src="{% static 'website/bootstrap-css/assets/js/jquery.min.js' %}"></script>
<script src="{% static 'website/bootstrap-css/assets/js/2.8.2/modernizr.js' %}"></script>
<script src="{% static 'website/bootstrap-css/bower_components/bootstrap/dist/js/bootstrap.min.js' %}"></script>
<!-- css -->
<link rel="stylesheet" href="{% static 'website/bootstrap-css/assets/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' %}">
<link rel="stylesheet" href="{% static 'website/bootstrap-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>
<script>
function countChar(val) {
var len = val.value.length;
var count = $('#charNum').text(0 + len);
};
</script>
</head>
{% endblock %}
|