Detail teaching to make the webpage a portfolio
This commit is contained in:
parent
44b7655a72
commit
f4f4980e1f
10 changed files with 38 additions and 2 deletions
4
content/teaching/INP/_index.md
Normal file
4
content/teaching/INP/_index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: "Grenoble INP"
|
||||||
|
link: https://www.grenoble-inp.fr/
|
||||||
|
---
|
8
content/teaching/INP/reseau_phelma.md
Normal file
8
content/teaching/INP/reseau_phelma.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Phelma filière SEOC, 4PMIPIN1
|
||||||
|
longtitle: Principes de l'Internet, réseaux
|
||||||
|
date: 2021-11-22
|
||||||
|
start_teaching: 2021
|
||||||
|
role: Chargé de TD 2021-…, lab sessions 2021-…
|
||||||
|
draft: false
|
||||||
|
---
|
|
@ -4,6 +4,7 @@ longtitle: Algorithmique et Programmation Impérative
|
||||||
webpage: https://moodle.caseine.org/course/view.php?id=72
|
webpage: https://moodle.caseine.org/course/view.php?id=72
|
||||||
date: 2021-11-22
|
date: 2021-11-22
|
||||||
start_teaching: 2021
|
start_teaching: 2021
|
||||||
|
role: Chargé de TD 2021-…, lab sessions 2021-…
|
||||||
draft: false
|
draft: false
|
||||||
|
|
||||||
files:
|
files:
|
||||||
|
|
4
content/teaching/X/_index.md
Normal file
4
content/teaching/X/_index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: "École Polytechnique"
|
||||||
|
link: https://www.polytechnique.edu/
|
||||||
|
---
|
8
content/teaching/X/inf559.md
Normal file
8
content/teaching/X/inf559.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: INF 559
|
||||||
|
longtitle: Système et bas niveau
|
||||||
|
date: 2023-06-26
|
||||||
|
start_teaching: 2018
|
||||||
|
role: Lab sessions 2018-2019 and 2019-2020
|
||||||
|
draft: false
|
||||||
|
---
|
|
@ -8,7 +8,7 @@ menu:
|
||||||
weight: 250
|
weight: 250
|
||||||
---
|
---
|
||||||
|
|
||||||
This page is not an exhaustive list of courses in which I've taught -- whatever
|
This page lists the courses in which I teach or taught -- whatever
|
||||||
the exact role --, but more a link to the relevant, publicly-available
|
the exact role --. It also contains links to the relevant, publicly-available
|
||||||
resources I needed to share. Please contact me if you want to reuse this
|
resources I needed to share. Please contact me if you want to reuse this
|
||||||
material -- if possible, I'm usually very keen on sharing such things :)
|
material -- if possible, I'm usually very keen on sharing such things :)
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
<a href="{{ .Permalink }}">
|
<a href="{{ .Permalink }}">
|
||||||
{{- partial "teaching/coursename.html" . -}}
|
{{- partial "teaching/coursename.html" . -}}
|
||||||
</a>
|
</a>
|
||||||
|
{{- with .Params.role -}}<div class="course-role">{{ . }}</div>{{- end -}}
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
$bg_color: white;
|
$bg_color: white;
|
||||||
$link_color: #07a;
|
$link_color: #07a;
|
||||||
$fg_color: #555;
|
$fg_color: #555;
|
||||||
|
$fg_color_light: #555555bb;
|
||||||
$head_bg_color: #060033;
|
$head_bg_color: #060033;
|
||||||
|
|
||||||
$resp_small: 1350px;
|
$resp_small: 1350px;
|
||||||
|
|
|
@ -236,6 +236,11 @@ ul.teaching-courses {
|
||||||
.course-longtitle:before {
|
.course-longtitle:before {
|
||||||
content: ' — '
|
content: ' — '
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.course-role {
|
||||||
|
font-style: italic;
|
||||||
|
color: $fg_color_light;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.course-titleblock {
|
.course-titleblock {
|
||||||
|
|
|
@ -164,6 +164,10 @@ ul.teaching-courses li {
|
||||||
.course-name .course-longtitle:before {
|
.course-name .course-longtitle:before {
|
||||||
content: ' — '; }
|
content: ' — '; }
|
||||||
|
|
||||||
|
.course-name .course-role {
|
||||||
|
font-style: italic;
|
||||||
|
color: #555555bb; }
|
||||||
|
|
||||||
.course-titleblock {
|
.course-titleblock {
|
||||||
margin-bottom: 20px; }
|
margin-bottom: 20px; }
|
||||||
.course-titleblock h2 {
|
.course-titleblock h2 {
|
||||||
|
|
Loading…
Reference in a new issue