-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from aidos-lab/er
Er
- Loading branch information
Showing
19 changed files
with
114 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name = "Corinna Coupette" | ||
image = "cc.jpg" | ||
web = "https://www.coupette.io" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
name = "Irene Cannistraci" | ||
image = "ic.jpg" | ||
web = "https://irene.cannistraci.dev" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,45 @@ | ||
<div class="card"> | ||
<div class="card-person"> | ||
{{ $person := .Get 0 }} | ||
{{ $person := index .Site.Data.people $person }} | ||
|
||
<div class="card-left"> | ||
<figure class="person"> | ||
<img src="{{ $person.image }}" width="180" alt="{{ $person.name }}" /> | ||
</figure> | ||
</div> | ||
|
||
<div class="card-right"> | ||
<span class="card-name">{{ $person.name }}</span><br /> | ||
<span class="card-job">{{ $person.job }}</span> | ||
|
||
<dl class="card-profiles"> | ||
<ul class="card-icons"> | ||
{{ with $person.github }} | ||
{{ $link := printf "https://github.com/%s" $person.github }} | ||
{{ partial "profile.html" (dict "name" "GitHub" "link" $link "text" $person.github) }} | ||
<li> | ||
<a href="https://github.com/{{ . }}"> | ||
<img src="/github-mark.svg" alt=""> | ||
</a> | ||
</li> | ||
{{end }} | ||
|
||
{{ with $person.orcid }} | ||
<li> | ||
<a href="{{ . }}"> | ||
<img src="/orchid-id.svg" alt=""> | ||
</a> | ||
</li> | ||
{{end }} | ||
|
||
{{ with $person.orcid }} | ||
{{ $link := printf "https://orcid.org/%s" $person.orcid }} | ||
{{ partial "profile.html" (dict "name" "ORCID" "link" $link "text" $person.orcid) }} | ||
{{end }} | ||
{{ with $person.twitter }} | ||
<li> | ||
<a href="https://twitter.com/{{ . }}"> | ||
<img src="/logo-x-black.png" alt=""> | ||
</a> | ||
</li> | ||
{{ end }} | ||
{{ with $person.web }} | ||
<li> | ||
<a href="{{ . }}"> | ||
<img src="/home.png" alt=""> | ||
</a> | ||
</li> | ||
{{ end }} | ||
|
||
</ul> | ||
|
||
{{ with $person.twitter }} | ||
{{ $link := printf "https://twitter.com/%s" $person.twitter }} | ||
{{ $name := printf "@%s" $person.twitter }} | ||
{{ partial "profile.html" (dict "name" "Twitter" "link" $link "text" $name) }} | ||
{{ end }} | ||
|
||
{{ with $person.web }} | ||
{{ partial "profile.html" (dict "name" "Web" "link" $person.web "text" $person.web) }} | ||
{{ end }} | ||
</dl> | ||
|
||
<div class="card-bio"> | ||
{{ $person.bio | markdownify }} | ||
</div> | ||
</div> | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.