Skip to content

Commit

Permalink
Update teaching page
Browse files Browse the repository at this point in the history
  • Loading branch information
ketaiq committed Jun 2, 2024
1 parent 46ea2d3 commit d2668de
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 12 deletions.
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,5 @@ kramdown:

collections:
- publications
- news
- news
- teachings
2 changes: 2 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
<a class="nav-link" href="https://github.com/ketaiq" target="_blank"><i class="fa-brands fa-github"></i></a>
<a class="nav-link" href="https://www.linkedin.com/in/ketai-qiu/" target="_blank"><i
class="fa-brands fa-linkedin"></i></a>
<a class="nav-link" href="https://orcid.org/0009-0002-9750-2762" target="_blank"><i
class="fa-brands fa-orcid"></i></a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _news/phd_start.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
date: "1 September 2023"
text: "I joined the STAR group as a PhD student! 🎉"
text: "I've joined the STAR group as a PhD student! 🎉"
---
13 changes: 13 additions & 0 deletions _teachings/Software-Atelier-1-2023.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
date: "September 2023"
course_name: "Software Atelier I: Fundamentals of Informatics"
course_link: "https://search.usi.ch/en/courses/35268188/software-atelier-1-fundamentals-of-informatics"
role: "Teaching Assistant"
level: "Undergraduate"
instructor_name: "Gabriele Bavota"
instructor_link: "https://www.inf.usi.ch/faculty/bavota/"
academic_year: "2023-2024"
semester: "Fall"
ects: "6"
language: "English"
---
13 changes: 13 additions & 0 deletions _teachings/Software-Quality-And-Testing-2023.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
date: "February 2024"
course_name: "Software Quality & Testing"
course_link: "https://search.usi.ch/en/courses/35268145/software-quality-testing"
role: "Teaching Assistant"
level: "Graduate"
instructor_name: "Mauro Pezzè"
instructor_link: "https://www.inf.usi.ch/faculty/pezze/"
academic_year: "2023-2024"
semester: "Spring"
ects: "6"
language: "English"
---
4 changes: 2 additions & 2 deletions awards.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
title: "Ketai Qiu's awards"
---
<main>
<div class="container">
<div class="container custom-main">
<h2>Awards</h2>

I'm working hard to gain awards ;)
</div>
</main>
10 changes: 5 additions & 5 deletions publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h2>Publications</h2>

<div class="row py-3">
<div class="col-1 publisher-width">
<span class="badge text-white publisher-badge fs-6">{{ publication.short_name }}</span>
<span class="badge text-white publisher-badge fs-6 shadow">{{ publication.short_name }}</span>
</div>

<div class="col">
Expand All @@ -24,26 +24,26 @@ <h2>Publications</h2>
<p class="no-margin" style="font-size: 0.9rem"><em>{{ publication.long_name }}</em></p>
</div>

<button class="btn btn-secondary pub-button me-2" type="button"
<button class="btn btn-secondary pub-button me-2 shadow" type="button"
onclick="openPDF('{{ publication.doi }}')">
DOI
</button>

<button class="btn btn-secondary pub-button me-2" type="button"
<button class="btn btn-secondary pub-button me-2 shadow" type="button"
onclick="openPDF('{{ publication.pdf }}')">
PDF
</button>

{% if publication.artifact %}

<button class="btn btn-secondary pub-button me-2" type="button"
<button class="btn btn-secondary pub-button me-2 shadow" type="button"
onclick="openPDF('{{ publication.artifact }}')">
Artifact
</button>

{% endif %}

<button class="btn btn-secondary pub-button me-2" type="button"
<button class="btn btn-secondary pub-button me-2 shadow" type="button"
onclick="openPDF('{{ publication.bibtex }}')">
BibTex
</button>
Expand Down
4 changes: 2 additions & 2 deletions services.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
title: "Ketai Qiu's services"
---
<main>
<div class="container">
<div class="container custom-main">
<h2>Services</h2>

I'm working hard to serve the research community ;)
</div>
</main>
41 changes: 40 additions & 1 deletion teaching.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,47 @@
title: "Ketai Qiu's teaching"
---
<main>
<div class="container">
<div class="container custom-main">
<h2>Teaching</h2>

{% for teaching in site.teachings reversed %}
<div class="card my-3">
<div class="card-body">
<div class="card-title fs-5">
<a href="{{ teaching.course_link }}" target="_blank" class="custom-link"
rel="noopener noreferrer">{{ teaching.course_name }}</a>
</div>
<div class="row">
<div class="col-3">Role</div>
<div class="col-3 fira-sans-medium">{{ teaching.role }}</div>
</div>
<div class="row">
<div class="col-3">Level</div>
<div class="col-3 fira-sans-medium">{{ teaching.level }}</div>
</div>
<div class="row">
<div class="col-3">Instructor</div>
<div class="col-3 fira-sans-medium">Prof. <a href="{{ teaching.instructor_link }}" target="_blank"
class="custom-link" rel="noopener noreferrer">{{ teaching.instructor_name }}</a></div>
</div>
<div class="row">
<div class="col-3">Academic year</div>
<div class="col-3 fira-sans-medium">{{ teaching.academic_year }}</div>
</div>
<div class="row">
<div class="col-3">Semester</div>
<div class="col-3 fira-sans-medium">{{ teaching.semester }}</div>
</div>
<div class="row">
<div class="col-3">ECTS</div>
<div class="col-3 fira-sans-medium">{{ teaching.ects }}</div>
</div>
<div class="row">
<div class="col-3">Language</div>
<div class="col-3 fira-sans-medium">{{ teaching.language }}</div>
</div>
</div>
</div>
{% endfor %}
</div>
</main>

0 comments on commit d2668de

Please sign in to comment.