diff options
author | Sashi20 | 2018-11-06 12:31:04 +0530 |
---|---|---|
committer | Sashi20 | 2018-11-06 12:31:04 +0530 |
commit | 2f697bb58fa5f42fdc021783110fcc40f4e7b592 (patch) | |
tree | 6086a36e2d1a0872d7bdd212c443a536d8d38299 /static | |
parent | 9fac63d218a5391b0873d04e863189794f3efabe (diff) | |
download | nccps-2018-2f697bb58fa5f42fdc021783110fcc40f4e7b592.tar.gz nccps-2018-2f697bb58fa5f42fdc021783110fcc40f4e7b592.tar.bz2 nccps-2018-2f697bb58fa5f42fdc021783110fcc40f4e7b592.zip |
Re-arranged navigation menu and added workshops section in home page
Diffstat (limited to 'static')
-rw-r--r-- | static/website/templates/home.html | 25 | ||||
-rw-r--r-- | static/website/templates/navbar.html | 2 |
2 files changed, 26 insertions, 1 deletions
diff --git a/static/website/templates/home.html b/static/website/templates/home.html index 1aa6ce1..0ca91d3 100644 --- a/static/website/templates/home.html +++ b/static/website/templates/home.html @@ -114,6 +114,31 @@ </div><!-- /.row --> </div> </section> + + <section id="workshops" class="section workshops"> + <div class="container"> + <div class="row"> + <div class="col-md-12"> + <h3 class="section-title">Workshops</h3> + </div> + </div> + <div class="row"> + <div class="col-md-12"> + <p class="text-justify"> + Improve your skills by attending workshops on DWSIM and OpenModelica organized for you at NCCPS-2018. + We are organizing free workshops for all the participants who have registered for NCCPS-2018. Attend the workshop suitable for you and explore the tools available, free of cost for your field of interest. + </p> + </div> + </div> + <div class="row"> + <div class="col-md-12"> + <center> + <a href="{% url 'website:workshops' %}" class="btn btn-primary"> Read more</a> + </center> + </div> + </div> + </div> + </section> <section id="registration" class="section registration"> <div class="container"> diff --git a/static/website/templates/navbar.html b/static/website/templates/navbar.html index 1a54cab..28097c7 100644 --- a/static/website/templates/navbar.html +++ b/static/website/templates/navbar.html @@ -32,6 +32,7 @@ <!-- navigation menu --> <li class="active"><a data-scroll href="{{SITE_URL}}/#about">About</a></li> <li><a data-scroll href="{{SITE_URL}}/#speakers">Speakers</a></li> + <li><a href="{{SITE_URL}}/#workshops">Workshops</a></li> <li><a data-scroll href="{{SITE_URL}}/#registration">Register</a></li> <!-- <li><a data-scroll href="{{SITE_URL}}/#submit">CFP</a></li> --> <li><a data-scroll href="{{SITE_URL}}/#coc">C0C</a></li> @@ -41,7 +42,6 @@ <!--<li><a data-scroll href="{{SITE_URL}}/#organiser">Organiser</a></li> --> <li><a data-scroll href="{{SITE_URL}}/#contact-us">Contact Us</a></li> <li><a href="{% url 'website:dwsimquiz' %}">DWSIM QUIZ</a></li> - <li><a href="{% url 'website:workshop' %}">Workshop</a></li> <!-- <li><a href="{% url 'website:jobfair' %}">Job Fair</a></li> --> <li><a href="{% url 'website:cfp' %}">cfp</a></li> {% if user.is_authenticated %} |