diff options
author | Sashi20 | 2022-01-17 17:32:28 +0530 |
---|---|---|
committer | GitHub | 2022-01-17 17:32:28 +0530 |
commit | 5b68c12233ba6561b29a41d5e4050cd457f607f7 (patch) | |
tree | 0da404ec05bba9ab748fd45ef87873c54cc19db7 | |
parent | da60fbc5e8c035072dc3d9074ebf3a43ebbab018 (diff) | |
parent | 3afa1e421618d65c1ca97749a40ed6fdb04c00e9 (diff) | |
download | SciPy2021-5b68c12233ba6561b29a41d5e4050cd457f607f7.tar.gz SciPy2021-5b68c12233ba6561b29a41d5e4050cd457f607f7.tar.bz2 SciPy2021-5b68c12233ba6561b29a41d5e4050cd457f607f7.zip |
Merge pull request #13 from Sashi20/development
Add section on home page for schedule
-rwxr-xr-x | static/website/templates/home.html | 15 | ||||
-rwxr-xr-x | static/website/templates/navbar.html | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/static/website/templates/home.html b/static/website/templates/home.html index 652452c..c5c651d 100755 --- a/static/website/templates/home.html +++ b/static/website/templates/home.html @@ -216,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> --> |