summaryrefslogtreecommitdiff
path: root/static/website/templates/footer.html
diff options
context:
space:
mode:
authorPrashant S2018-08-13 11:31:17 +0530
committerGitHub2018-08-13 11:31:17 +0530
commit9674af451d6ede8fc3a3ee1527eb8ac2f1a61cb2 (patch)
tree85f6497e0d8477ab9b75a50ae39eba0fede0776c /static/website/templates/footer.html
parentce524bb8ecd1c41f36366e2c8c56f48723ecc35c (diff)
parent03841a2e16520b08aaa5b54b77eec5262b25482e (diff)
downloadSciPy2018-9674af451d6ede8fc3a3ee1527eb8ac2f1a61cb2.tar.gz
SciPy2018-9674af451d6ede8fc3a3ee1527eb8ac2f1a61cb2.tar.bz2
SciPy2018-9674af451d6ede8fc3a3ee1527eb8ac2f1a61cb2.zip
Merge pull request #6 from prashantsinalkar/master
added new files and code
Diffstat (limited to 'static/website/templates/footer.html')
-rw-r--r--static/website/templates/footer.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/static/website/templates/footer.html b/static/website/templates/footer.html
new file mode 100644
index 0000000..01c7e51
--- /dev/null
+++ b/static/website/templates/footer.html
@@ -0,0 +1,49 @@
+
+{% load static %}
+<!-- Footer -->
+{% block footer %}
+
+ <footer class="site-footer">
+ <div class="container">
+ <div class="row">
+ <div class="col-md-6">
+ <ul class="social-block">
+ <li><a href="https://twitter.com/scipyindia"><i class="ion-social-twitter"></i></a></li>
+ <li><a href="https://www.facebook.com/ScipyIndia2017-737085366490623/"><i class="ion-social-facebook"></i></a></li>
+ <li><a href="https://plus.google.com/u/0/104012350840765676803"><i class="ion-social-googleplus"></i></a></li>
+ </ul>
+ </div>
+ <div class="col-md-6">
+ <ul class="social-block">
+ Visit SciPy.in/
+ <a style="color:blue;" target="_blank" href="https://scipy.in/2009">2009</a>/
+ <a style="color:white;" target="_blank" href="https://scipy.in/scipyin/2010/">2010</a>/
+ <a style="color:blue;" target="_blank" href="https://scipy.in/scipyin/2011/">2011</a>/
+ <a style="color:white;" target="_blank" href="https://scipy.in/2012">2012</a>/
+ <a style="color:blue;" target="_blank" href="https://scipy.in/2013">2013</a>/
+ <a style="color:white;" target="_blank" href="https://scipy.in/2014">2014</a>/
+ <a style="color:blue;" target="_blank" href="https://scipy.in/2015">2015</a>/
+ <a style="color:white;" target="_blank" href="https://scipy.in/2016">2016</a>/
+ <a style="color:blue;" target="_blank" href="https://scipy.in/2017">2017</a>
+ </ul>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-12">
+ <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/" style="color:blue;">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
+ </center>
+ </div>
+ </div>
+ </div>
+ </footer>
+
+ <!-- script -->
+ <script src="{% static 'website/bootstrap-css/bower_components/jquery/dist/jquery.min.js' %}"></script>
+ <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>
+ <script src="{% static 'website/js/custom.js' %}"></script>
+ <script src="{% static 'website/js/team-profile.js' %}"></script>
+
+{% endblock %}