diff options
author | prashantsinalkar | 2019-08-27 12:29:12 +0530 |
---|---|---|
committer | prashantsinalkar | 2019-08-27 12:29:12 +0530 |
commit | b9c709823e26f5b20d3732e1788b871cdd961a03 (patch) | |
tree | a9089f56541854b48ddbda733832a153c6d53927 /static/website/templates/base.html | |
parent | 50e8fc0832d81d124abd7606b15502545bf84b23 (diff) | |
download | SciPy2019-b9c709823e26f5b20d3732e1788b871cdd961a03.tar.gz SciPy2019-b9c709823e26f5b20d3732e1788b871cdd961a03.tar.bz2 SciPy2019-b9c709823e26f5b20d3732e1788b871cdd961a03.zip |
added intial code for project
Diffstat (limited to 'static/website/templates/base.html')
-rw-r--r-- | static/website/templates/base.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/static/website/templates/base.html b/static/website/templates/base.html new file mode 100644 index 0000000..aa61d01 --- /dev/null +++ b/static/website/templates/base.html @@ -0,0 +1,53 @@ +{% load static %} +<!DOCTYPE html> +<html lang="en"> + {% include 'header.html' %} + <body data-spy="scroll" data-target="#site-nav"> + {% include 'navbar.html' %} + {% block content %}{% endblock content %} + {% include 'footer.html' %} + <div class="modal fade" id="registermdl" role="dialog"> + <div class="modal-dialog"> + <div class="modal-content"> + <div class="modal-header"> + <button type="button" class="close" data-dismiss="modal">×</button> + </div> + <div class="modal-body"> + <p class="text-justify">Registrations for the conference will open from next week. Keep checking our website for further notifications.</p> + </div> + <div class="modal-footer"> + <button type="button" class="btn btn-info" data-dismiss="modal">Close</button> + </div> + </div> + </div> + </div> + <div class="modal fade" id="modal_terms_and_conditions" role="dialog"> + <div class="modal-dialog"> + <div class="modal-content"> + <div class="modal-header"> + <button type="button" class="close" data-dismiss="modal">×</button> + </div> + <div class="modal-body"> + <center> + <h1>Terms and conditions</h1> + </center> + <div class="row"> + <div class="col-md-12"> + <ul> + <li>The decision of the organization will be final.</li> + <li>All authors must register for the conference.</li> + <li>The copyright for the content uploaded or shared by any means will be transferred to FOSSEE, IIT Bombay.</li> + <li>The Organization reserves the rights to release this content under Creative Commons Attribution-ShareAlike 4.0 International License in any format.</li> + </ul> + </div> + </div> + </div> + <div class="modal-footer"> + <button type="button" class="btn btn-info" data-dismiss="modal">Close</button> + </div> + </div> + </div> + </div> + </body> +</html> + |