Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ contact: Arnaud BLOUIN
email: arnaud.blouin@irisa.fr
summary: Develop cutting-edge threat modeling tools for next-generation compartmentalized embedded systems
pdf: /pdf/2026_PhD-position_MBTM-compartmentalized-systems.pdf
hide: false
---

 
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ title: Conception d'un meta-modèle (ontologie) d'architectures cryptographiques
duration: 6-8 months
starts: Summer 2020
pdf: /pdf/2020_stage-ete_IDM4AC.pdf
---
hide: true
---
8 changes: 7 additions & 1 deletion layouts/positions/list.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{{ define "content" }}
{{ $data := newScratch }}
{{ $data.Set "filter" "phd" }}
{{ $previousYear := (now.AddDate -1 0 0).Year }}

<!--
<div class="list-preamble">
Expand All @@ -16,7 +17,12 @@
{{ range (.Pages.GroupByParam "position").Reverse }}
<ul class="list-unstyled page-list">
{{ range (.Pages.ByParam "starts").Reverse }}
{{ if and (not .Params.private) }}
{{ $yearMatch := findRE `\d{4}` .Params.starts }}
{{ $startsYear := 0 }}
{{ if $yearMatch }}
{{ $startsYear = int (index $yearMatch 0) }}
{{ end }}
{{ if and (not .Params.hide) (ge $startsYear $previousYear) }}
<li> {{ .Render "item" }} </li>
{{ end }}
{{ end }}
Expand Down
4 changes: 2 additions & 2 deletions layouts/positions/pos2badge.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{ $map := (dict "postdoc" "green" "phd" "blue" "master" "gray" "internship" "red" "engineer" "black") }}
{{ $style := (default "primary" (index $map .)) }}
{{ $map := (dict "postdoc" "blue" "phd" "purple" "master" "pink" "internship" "red" "engineer" "orange") }}
{{ $style := (default "primary" (index $map (. | lower))) }}
{{ if . }}
<span class="text-light badge badge-{{ $style }}">{{ . | upper }}</span>
{{ end }}
Loading