Compare commits
3 commits
f931f7b565
...
60ca028760
Author | SHA1 | Date | |
---|---|---|---|
60ca028760 | |||
7e759cb925 | |||
c29b67e181 |
5 changed files with 71 additions and 32 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
.hugo_build.lock
|
||||
public
|
||||
|
|
|
@ -9,28 +9,58 @@ menu:
|
|||
|
||||
authors:
|
||||
tobast:
|
||||
name: "T. Bastian"
|
||||
short: "T. Bastian"
|
||||
name: "Théophile Bastian"
|
||||
fzn:
|
||||
name: "F. Zappa Nardelli"
|
||||
short: "F. Zappa Nardelli"
|
||||
name: "Francesco Zappa Nardelli"
|
||||
page: "https://fzn.fr/"
|
||||
skell:
|
||||
name: "S. Kell"
|
||||
short: "S. Kell"
|
||||
name: "Stephen Kell"
|
||||
page: "https://www.cs.kent.ac.uk/people/staff/srk21/"
|
||||
jch:
|
||||
name: "J. Chroboczek"
|
||||
short: "J. Chroboczek"
|
||||
name: "Juliusz Chroboczek"
|
||||
page: "https://www.irif.fr/~jch/"
|
||||
msheeran:
|
||||
name: "M. Sheeran"
|
||||
short: "M. Sheeran"
|
||||
name: "Mary Sheeran"
|
||||
page: "http://www.cse.chalmers.se/~ms/"
|
||||
cseger:
|
||||
name: "C-J. Seger"
|
||||
short: "C-J. Seger"
|
||||
name: "Carl-Johan Seger"
|
||||
page: "https://www.chalmers.se/en/Staff/Pages/secarl.aspx"
|
||||
gwinskel:
|
||||
name: "G. Winskel"
|
||||
short: "G. Winskel"
|
||||
name: "Glynn Winskel"
|
||||
page: "https://www.cl.cam.ac.uk/~gw104/"
|
||||
pclairambault:
|
||||
name: "P. Clairambault"
|
||||
short: "P. Clairambault"
|
||||
name: "Pierre Clairambault"
|
||||
page: "http://perso.ens-lyon.fr/pierre.clairambault/"
|
||||
frastello:
|
||||
short: "F. Rastello"
|
||||
name: "Fabrice Rastello"
|
||||
page: "https://team.inria.fr/corse/team-members/fabrice-rastello/"
|
||||
nderumigny:
|
||||
short: "N. Derumigny"
|
||||
name: "Nicolas Derumigny"
|
||||
fgruber:
|
||||
short: "F. Gruber"
|
||||
name: "Fabian Gruber"
|
||||
cguillon:
|
||||
short: "C. Guillon"
|
||||
name: "Christophe Guillon"
|
||||
giooss:
|
||||
short: "G. Iooss"
|
||||
name: "Guillaume Iooss"
|
||||
page: "https://guillaume.iooss.fr/"
|
||||
lnp:
|
||||
short: "L-N. Pouchet"
|
||||
name: "Louis-Noël Pouchet"
|
||||
page: "https://www.cs.colostate.edu/~pouchet/"
|
||||
|
||||
|
||||
publications:
|
||||
- authors:
|
||||
|
@ -52,6 +82,22 @@ publications:
|
|||
links:
|
||||
- name: datatracker
|
||||
url: "https://datatracker.ietf.org/doc/draft-bastian-babel-v4ov6/"
|
||||
- authors:
|
||||
- nderumigny
|
||||
- tobast
|
||||
- fgruber
|
||||
- cguillon
|
||||
- giooss
|
||||
- lnp
|
||||
- frastello
|
||||
year: 2022
|
||||
title: "PALMED: Throughput Characterization for Any Architecture"
|
||||
journal: "preprint, being published"
|
||||
links:
|
||||
- name: arXiv
|
||||
url: "https://arxiv.org/abs/2012.11473"
|
||||
|
||||
|
||||
|
||||
talks:
|
||||
- date: 2018-11-14
|
||||
|
|
8
layouts/partials/research/quote_author.html
Normal file
8
layouts/partials/research/quote_author.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<span class="author" title="{{ .name }}">
|
||||
{{- if isset . "page" -}}
|
||||
<a href="{{ .page }}">{{ .short }}</a>
|
||||
{{- else -}}
|
||||
{{- .short -}}
|
||||
{{- end -}}
|
||||
</span>
|
||||
{{- print "" -}}
|
|
@ -3,20 +3,12 @@
|
|||
{{ range sort .Page.Params.publications "year" "desc" }}
|
||||
<li>
|
||||
<span class="authors">
|
||||
{{ range .authors }}
|
||||
{{- range .authors }}
|
||||
{{ $author := . }}
|
||||
{{ with $authors }}
|
||||
{{ with (index . $author) }}
|
||||
<span class="author">
|
||||
{{- if isset . "page" -}}
|
||||
<a href="{{ .page }}">{{ .name }}</a>
|
||||
{{- else -}}
|
||||
{{ .name -}}
|
||||
{{- end -}}
|
||||
</span>
|
||||
{{- end -}}
|
||||
{{- with $authors -}}
|
||||
{{ partial "research/quote_author.html" (index . $author) }}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{ end -}}
|
||||
</span>.
|
||||
<span class="title">{{ .title }}</span> in
|
||||
<span class="journal">{{ .journal }}</span>
|
||||
|
|
|
@ -5,20 +5,12 @@
|
|||
<span class="title">{{ .title }}</span>,
|
||||
<span class="freetext">{{ .freetext }}</span>. With
|
||||
<span class="authors">
|
||||
{{ range .with }}
|
||||
{{- range .with }}
|
||||
{{ $author := . }}
|
||||
{{ with $authors }}
|
||||
{{ with (index . $author) }}
|
||||
<span class="author">
|
||||
{{- if isset . "page" -}}
|
||||
<a href="{{ .page }}">{{ .name }}</a>
|
||||
{{- else -}}
|
||||
{{ .name -}}
|
||||
{{- end -}}
|
||||
</span>
|
||||
{{- end -}}
|
||||
{{- with $authors -}}
|
||||
{{ partial "research/quote_author.html" (index . $author) }}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{ end -}}
|
||||
</span>.
|
||||
|
||||
{{ range .links }}
|
||||
|
|
Loading…
Reference in a new issue