Skip to content

Commit

Permalink
Markdownify course info, add PPA links
Browse files Browse the repository at this point in the history
  • Loading branch information
tpetricek committed Sep 26, 2024
1 parent c97b3bb commit b69ec7c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions _data/courses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
current: yes

- title: Programming Paradigms
schedule: Friday, 9:15, TH:A-s135
schedule: Friday, 9:15 or 11:00, TH:A-s135
lecturer: Tomáš Jakl and Jan Liam Verter, FIT
link: https://bilakniha.cvut.cz/cs/predmet6706506.html
label: An introductory course to the theory of programming languages and to functional and logic programming.
label: An introductory course to the theory of programming languages and to functional and logic programming. See [Czech](https://bilakniha.cvut.cz/cs/predmet6704206.html#gsc.tab=0) or [English](https://bilakniha.cvut.cz/cs/predmet6706506.html#gsc.tab=0) parallel information page.
language: English/Czech
current: yes

Expand All @@ -61,5 +61,5 @@
schedule: Summer 2024/2025
lecturer: Vít Šefl, MFF
link: https://is.cuni.cz/studium/predmety/index.php?do=predmet&kod=NPRG003
label: Learn about all the programming paradigms and how programming languages evolved, from Fortran to Rust.
label: Learn about all the programming paradigms and how programming languages evolved, from Fortran to Rust. Note that this course is taught in Czech.
language: Czech
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ <h3>Winter Semester 2024/25</h3>
{% for it in site.data.courses %}
{% if it.current %}
<li><p><strong><a href="{{ it.link }}">{{ it.title }}</a> - {{ it.lecturer }}</strong> ({{ it.schedule }})</p>
<p>{{ it.label }}</p></li>
{{ it.label | markdownify }}</li>
{% endif %}
{% endfor %}
</ul>
Expand All @@ -112,7 +112,7 @@ <h3>Summer and Future Courses</h3>
{% for it in site.data.courses %}
{% unless it.current %}
<li><p><strong><a href="{{ it.link }}">{{ it.title }}</a> - {{ it.lecturer }}</strong> ({{ it.schedule }})</p>
<p>{{ it.label }}</p></li>
{{ it.label | markdownify }}</li>
{% endunless %}
{% endfor %}
</ul>
Expand Down

0 comments on commit b69ec7c

Please sign in to comment.