Skip to content

Commit

Permalink
add dept map link into program page
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopo-massa committed May 8, 2024
1 parent 7f8be06 commit 7317da4
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions program.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,21 @@
</p>
</div>


<div id="days" class="alert alert-success rounded text-center mx-3">
{% for day in site.data.program.schedule %}
<a class="h6 alert-link" href="#day{{forloop.index}}">Day {{ forloop.index }}</a>
{% if forloop.last %} {% else %} | {% endif %}
{% endfor %}
<div class="row">
<div class="col-6">
<div id="days" class="alert alert-success rounded text-center mx-3">
{% for day in site.data.program.schedule %}
<a class="h6 alert-link" href="#day{{forloop.index}}">Day {{ forloop.index }}</a>
{% if forloop.last %} {% else %} | {% endif %}
{% endfor %}
</div>
</div>
<div class="col-6">
<div id="days" class="alert alert-info rounded text-center mx-3">
<a class="h6 alert-link" href="./assets/images/maps/dept.pdf" target="_blank">Map of the
Department</a>
</div>
</div>
</div>

{% if site.data.program.schedule != nil %}
Expand Down

0 comments on commit 7317da4

Please sign in to comment.