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
@@ -1,6 +1,6 @@
---
# personal photo
avatar: "aaanaqreh.jpg"
avatar: "aanaqreh.jpg"

# position index is used for sorting/positioning on the website
position: 2
Expand Down
4 changes: 2 additions & 2 deletions content/people/dsodin/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ role: "PhD student"

# Organizations/Affiliations
organizations:
- name: Jožef Stefan Institute
url: https://ijs.si
- name: Comsensus
url: https://comsensus.eu
- name: Jožef Stefan Institute
url: https://ijs.si

# COBISS/SICRIS identifier
cobiss: 50930
Expand Down
4 changes: 2 additions & 2 deletions content/people/gcerar/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ role: "Research Associate"

# Organizations/Affiliations
organizations:
- name: Jožef Stefan Institute
url: https://ijs.si
- name: Comsensus
url: https://comsensus.eu
- name: Jožef Stefan Institute
url: https://ijs.si

# COBISS/SICRIS identifier
cobiss: 39131
Expand Down
2 changes: 1 addition & 1 deletion content/people/hyetgin/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ role: "Postdoc"
# Organizations/Affiliations
organizations:
- name: Middlesex University London, UK
url:
url: https://www.mdx.ac.uk/

# COBISS/SICRIS identifier
cobiss: 53669
Expand Down
4 changes: 1 addition & 3 deletions content/people/mvucnik/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ title: "Matevž Vučnik"
role: "Research associate"

# Organizations/Affiliations
organizations:
- name: Jožef Stefan Institute
url: https://ijs.si
organizations: []

# COBISS/SICRIS identifier
cobiss: 33453
Expand Down
6 changes: 3 additions & 3 deletions content/people/tgale/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ prefix: ""
title: "Timotej Gale"

# Role/position
role: ""
role: "BSc Student"

# Organizations/Affiliations
organizations:
- name: University of Ljubljana
url:
- name: Faculty of Computer Science, University of Ljubljana
url: https://www.fri.uni-lj.si/en

# COBISS/SICRIS identifier
cobiss:
Expand Down
8 changes: 4 additions & 4 deletions content/people/tsolc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ position: 0
prefix: ""

# Display name
title: "Tomaz Solc"
title: "Tomaž Šolc"

# Role/position
role: ""
role: "PhD Student"

# Organizations/Affiliations
organizations:
- name: Klevio, Slovenia
url:
url: https://klevio.com/

# COBISS/SICRIS identifier
cobiss:
cobiss: 34648

# The date when joined / departed from the lab. Empty if not used
date_start:
Expand Down
27 changes: 24 additions & 3 deletions layouts/people/alumni.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
<li>
<a href="{{ .Permalink }}" class="text-decoration-none">
{{- with .Params.prefix -}}
<small class="text-body-secondary">{{ . }}</small>&nbsp;
{{- end -}}
{{- .Params.title -}}
{{- with index .Params.organizations 0 -}}
<small class="text-body-secondary">, {{ .name | markdownify | title -}}</small>
{{- end -}}
</a>
</li>


{{/*

{{- $resource := .Resources.GetMatch .Params.avatar -}}
{{- $img := $resource.Fill "250x250 jpeg q90" -}}
{{- $img := $resource.Fill "150x150 jpeg q90" -}}


<li class="p-2 align-items-stretch" style="max-width:250px;">
<li class="p-2 align-items-stretch" style="max-width:150px;">
<a href="{{ .Permalink }}" class="link-unstyled">
<div class="card" style="height:100%">
<img
Expand All @@ -19,8 +34,14 @@ <h5 class="card-title">
{{- end -}}
{{- .Params.title -}}
</h5>
<p class="card-text">{{ .Params.role | markdownify | title }}</p>
{{- with index .Params.organizations 0 -}}
<p class="card-text">{{ .name | markdownify | title }}</p>
{{- else -}}
<p class="card-text">No organization information available</p>
{{- end -}}
</div>
</div>
</a>
</li>

*/}}
4 changes: 2 additions & 2 deletions layouts/people/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ <h1>Members</h1>

<section>
<h1>Alumni</h1>
<ul class="list-unstyled row d-flex align-items-stretch justify-content-center justify-content-sm-start">
{{ range sort .Pages ".Params.position" "asc" }}
<ul class="list-unstyled">
{{ range sort .Pages ".Params.title" "asc" }}
{{ if in .Params.user_groups "alumni" }}
{{ .Render "alumni" }}
{{ end }}
Expand Down
Loading