File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ layout: papers
3
3
title : " Eclares: Energy-Aware Clarity-Driven Ergodic Search"
4
4
date : 2024-05-13
5
5
authors :
6
- - devanshagrawal
7
6
- kalebbennaveed
7
+ - devanshagrawal
8
8
- Christopher Vermillion
9
9
- dimitrapanagou
10
10
image : /images/2024-eclares.png
Original file line number Diff line number Diff line change @@ -19,9 +19,28 @@ <h3>Abstract</h3>
19
19
</ div >
20
20
21
21
22
- {{ .Content }}
23
22
24
23
24
+ <!-- AUTHOR LIST -->
25
+ < h2 > Authors</ h2 >
26
+ < div class ="row row-cols-2 row-cols-md-4 my-3 g4 ">
27
+ {{ range .Params.authors }}
28
+ <!-- construct url to search for -->
29
+ {{ $url := printf "/people/%s" . }}
30
+
31
+ <!-- check if the url exists -->
32
+ {{ $authorPage := $.Site.GetPage $url }}
33
+ <!-- if it does, create a link, else just print the name -->
34
+ {{ if $authorPage }}
35
+ < div class ="row ">
36
+ {{ partial "person-card" $authorPage }}
37
+ </ div >
38
+ {{ end }}
39
+ {{ end }}
40
+ </ div >
41
+
42
+ {{ .Content }}
43
+
25
44
{{ if .Params.bib }}
26
45
< div class ="my-3 ">
27
46
< h3 > Bib</ h3 >
@@ -36,4 +55,5 @@ <h3>Bib</h3>
36
55
{{ end }}
37
56
38
57
58
+
39
59
{{ end }}
You can’t perform that action at this time.
0 commit comments