summaryrefslogtreecommitdiff
path: root/static/website/templates/header.html
diff options
context:
space:
mode:
authorSashi202018-08-21 16:31:05 +0530
committerSashi202018-08-21 16:31:05 +0530
commitaa955c22ae18d55667006acd222dbc79e39a8b25 (patch)
treef66cce0beb9ec08b473c3d227cf5152a0772b329 /static/website/templates/header.html
downloadnccps-2018-aa955c22ae18d55667006acd222dbc79e39a8b25.tar.gz
nccps-2018-aa955c22ae18d55667006acd222dbc79e39a8b25.tar.bz2
nccps-2018-aa955c22ae18d55667006acd222dbc79e39a8b25.zip
Initial commit
Diffstat (limited to 'static/website/templates/header.html')
-rw-r--r--static/website/templates/header.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/static/website/templates/header.html b/static/website/templates/header.html
new file mode 100644
index 0000000..4d82b7f
--- /dev/null
+++ b/static/website/templates/header.html
@@ -0,0 +1,38 @@
+
+{% 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 2018, Python,SciPy India 2018,SciPy India conference,Scientific Computing">
+ <!-- <link rel="icon" href="{% static 'website/bootstrap-css/assets/images/logo.png' %}" type="icon"> -->
+ <title>NCCSP 2018</title>
+ <script src="{% static 'website/bootstrap-css/assets/js/1.5.2/jquery.min.js' %}"></script>
+ <script src="{% static 'website/bootstrap-css/assets/js/2.8.2/modernizr.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>
+</head>
+
+{% endblock %}