diff options
author | Sashi20 | 2022-01-17 16:55:46 +0530 |
---|---|---|
committer | Sashi20 | 2022-01-17 16:55:46 +0530 |
commit | 3afa1e421618d65c1ca97749a40ed6fdb04c00e9 (patch) | |
tree | 0da404ec05bba9ab748fd45ef87873c54cc19db7 | |
parent | 4f720da4f1fbd620efe4ea45677e9dd13480b81f (diff) | |
download | SciPy2021-3afa1e421618d65c1ca97749a40ed6fdb04c00e9.tar.gz SciPy2021-3afa1e421618d65c1ca97749a40ed6fdb04c00e9.tar.bz2 SciPy2021-3afa1e421618d65c1ca97749a40ed6fdb04c00e9.zip |
Rearrange position of the schedule section
-rwxr-xr-x | static/website/templates/home.html | 35 | ||||
-rwxr-xr-x | static/website/templates/navbar.html | 2 |
2 files changed, 16 insertions, 21 deletions
diff --git a/static/website/templates/home.html b/static/website/templates/home.html index 5b6c15e..c5c651d 100755 --- a/static/website/templates/home.html +++ b/static/website/templates/home.html @@ -200,26 +200,6 @@ It provides a unique opportunity to discuss about the latest trends on Scientifi </div> </section> -<section id="schedule" class="section schedule"> - <div class="container"> - <div class="row"> - <h3 class="section-title">Tentative Schedule</h3> - {% if tentative_schedule.display_schedule_table %} - <div class="col-md-12"> - {{ tentative_schedule.schedule_table | safe }} - </div> - - {% else %} - - <div class="col-md-12"> - <p><strong>Schedule will be announced soon</strong></p> - </div> - {% endif %} - </div> - </div> - </section> - - <section id="contribution" class="section contribution"> <div class="container"> <div class="row"> @@ -236,6 +216,21 @@ It provides a unique opportunity to discuss about the latest trends on Scientifi </div> </section> + {% if tentative_schedule.display_schedule_table %} + {{ tentative_schedule.schedule_table | safe }} + {% else %} + <section id="schedule" class="section schedule"> + <div class="container"> + <div class="row"> + <h3 class="section-title">Tentative Schedule</h3> + <div class="col-md-12"> + <p><strong>Schedule will be announced soon</strong></p> + </div> + </div> + </div> + </section> + {% endif %} + <section id="coc" class="section cod"> <div class="container"> <div class="row"> diff --git a/static/website/templates/navbar.html b/static/website/templates/navbar.html index 7c45473..69c857f 100755 --- a/static/website/templates/navbar.html +++ b/static/website/templates/navbar.html @@ -31,7 +31,7 @@ <li><a data-scroll href="{{SITE_URL}}/#speakers">Speakers</a></li> <li><a data-scroll href="{{SITE_URL}}/#registration">Register</a></li> <li><a data-scroll href="{{SITE_URL}}/#contribution">CFP</a></li> - <!-- <li><a data-scroll href="{{SITE_URL}}/#schedule">Schedule</a></li> --> + <li><a data-scroll href="{{SITE_URL}}/#schedule">Schedule</a></li> <li><a data-scroll href="{{SITE_URL}}/#coc">COC</a></li> <!-- <li><a data-scroll href="{{SITE_URL}}/#instructions">Instructions</a></li> --> <!--<li><a data-scroll href="{{SITE_URL}}/#sponsor">Sponsor</a></li> --> |