diff options
author | prashantsinalkar | 2020-02-27 17:12:00 +0530 |
---|---|---|
committer | prashantsinalkar | 2020-02-27 17:12:00 +0530 |
commit | bb1f7457f90f51a531bca2dfc3527432898b0b09 (patch) | |
tree | 2aafd4e11c5b81c26031c2c85b6a65a691b397cc /arduino_blog/templates/footer.html | |
parent | 3fb61ed2b017bfcc2fe663e15d21ff924ee750a6 (diff) | |
download | arduino_projects_website-bb1f7457f90f51a531bca2dfc3527432898b0b09.tar.gz arduino_projects_website-bb1f7457f90f51a531bca2dfc3527432898b0b09.tar.bz2 arduino_projects_website-bb1f7457f90f51a531bca2dfc3527432898b0b09.zip |
updated ui and fixed code
Diffstat (limited to 'arduino_blog/templates/footer.html')
-rw-r--r-- | arduino_blog/templates/footer.html | 108 |
1 files changed, 97 insertions, 11 deletions
diff --git a/arduino_blog/templates/footer.html b/arduino_blog/templates/footer.html index bff98bf..6f6845d 100644 --- a/arduino_blog/templates/footer.html +++ b/arduino_blog/templates/footer.html @@ -2,16 +2,102 @@ {% load static %} <!-- Footer --> {% block footer %} +<!-- Footer --> +<footer class="page-footer font-small blue pt-4 bg-dark text-white"> + + <!-- Footer Links --> + <div class="container-fluid text-center text-md-left"> + + <!-- Grid row --> + <div class="row"> + + <!-- Grid column --> + <div id="contact-us" class="col-md-6 mt-md-0 mt-3"> + + <!-- Content --> + <h3 class="text-uppercase">CONTACT</h3> + <address> + <p> + <i class="fa fa-home pr-10"></i>FOSSEE, IIT Bombay + </p> + <p> + <i class="fa fa-globe pr-10"></i>Mumbai, India + </p> + <p> + <i class="fa fa-phone pr-10"></i>Phone : (+91) 22 25764133 + </p> + <p> + <i class="fa fa-envelope pr-10"></i>Email : info [at] fossee [dot] in + </p> + </address> + + </div> + <!-- Grid column --> + + <hr class="clearfix w-100 d-md-none pb-3"> + + <!-- Grid column --> + <!-- <div class="col-md-3 mb-md-0 mb-3"> + + + <h5 class="text-uppercase">Links</h5> - <footer class="site-footer"> - <div class="container"> - <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:#ceab6a;">Creative Commons Attribution-ShareAlike 4.0 International License</a>. - </center> - </div> - </div> - </div> - </footer> + <ul class="list-unstyled"> + <li> + <a href="#!">Link 1</a> + </li> + <li> + <a href="#!">Link 2</a> + </li> + <li> + <a href="#!">Link 3</a> + </li> + <li> + <a href="#!">Link 4</a> + </li> + </ul> + + </div> --> + <!-- Grid column --> + + <!-- Grid column --> + <div class="col-md-3 mb-md-0 mb-3"> + + <!-- Links --> + <h5 class="text-uppercase">Other Links</h5> + + <ul class="list-styled"> + <li> + <a class="text-white" href="https://fossee.in" target="_blank">FOSSEE</a> + </li> + <li> + <a class="text-white" href="https://scilab.in" target="_blank">Scilab</a> + </li> + <li> + <a class="text-white" href="https://esim.fossee.in" target="_blank">eSim</a> + </li> + <li> + <a class="text-white" href="https://openplc.fossee.in" target="_blank">OpenPlc</a> + </li> + </ul> + + </div> + <!-- Grid column --> + + </div> + <!-- Grid row --> + + </div> + <!-- Footer Links --> + + <!-- Copyright --> + <span class="text-muted"> + <center> + <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. + </center> + </span> + <!-- Copyright --> + +</footer> +<!-- Footer --> {% endblock %}
\ No newline at end of file |