Skip to content

Commit

Permalink
revision
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrsay committed Nov 30, 2024
1 parent 8ebf034 commit 2f72c90
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions schedule.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,26 @@ title: schedule
{% assign ans = site.static_files | where: "path", ans_path | first %}
<tr>
<td colspan="5" style="text-align:center">
Reading Week
Revision Week
{% if qns %}
(Revision <a href="{{ qns_path | remove_first: "/" }}" target="_blank">qns</a>
(Syntax Revision <a href="{{ qns_path | remove_first: "/" }}" target="_blank">qns</a>
{% if ans %}
/ <a href="{{ ans_path | remove_first: "/" }}" target="_blank">ans</a>
{% endif %}
)
{% endif %}
</td>
</tr>
{% elsif calendar_week == 12 %}
{% assign qns_path = "/questions/sheet12.pdf" %}
{% assign ans_path = "/answers/sheet12.pdf" %}
{% assign qns = site.static_files | where: "path", qns_path | first %}
{% assign ans = site.static_files | where: "path", ans_path | first %}
<tr>
<td colspan="5" style="text-align:center">
Revision Week
{% if qns %}
(Semantics and Computability Revision <a href="{{ qns_path | remove_first: "/" }}" target="_blank">qns</a>
{% if ans %}
/ <a href="{{ ans_path | remove_first: "/" }}" target="_blank">ans</a>
{% endif %}
Expand Down

0 comments on commit 2f72c90

Please sign in to comment.