-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add 'database' for people and affiliations
Signed-off-by: Torbjörn Klatt <[email protected]>
- Loading branch information
1 parent
084c369
commit de8f669
Showing
4 changed files
with
143 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# A 'database' of the organisations participating in JLESC. | ||
# | ||
# | ||
|
||
anl: | ||
title: Argonne National Laboratory | ||
logo: anl_logo.jpg | ||
|
||
bsc: | ||
title: Barcelona Supercomputing Center | ||
logo: bsc_logo.svg | ||
|
||
inria: | ||
title: INRIA | ||
logo: inria_logo.png | ||
|
||
jsc: | ||
title: Jülich Supercomputing Centre | ||
logo: jsc_logo.svg | ||
|
||
ncsa: | ||
title: NCSA | ||
logo: ncsa_vertical_logo.png | ||
|
||
riken: | ||
title: RIKEN | ||
logo: riken_logo.png |
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,66 @@ | ||
# A 'database' of people participating in the JLESC cooperation | ||
# | ||
# Each entry consists of a unique identifier and some fields: | ||
# | ||
# identifier: | ||
# sur_name: Doe | ||
# given_name: John | ||
# affiliation: affiliation_id | ||
# email: official email | ||
# homepage: link to homepage | ||
# | ||
# The identifier should be constructed from the surname and the initial letter of the first name, | ||
# all lower case and separated by an underscore. | ||
# | ||
# The affiliation must be an affiliation identifier as found in /_data/orgs.yml. | ||
# | ||
# The email should be the official 'work' email of the person, e.g. @fz-juelich.de. | ||
# | ||
# The homepage field can be left empty, but should point to a personal page with more details on | ||
# research interests, publications and contact data. | ||
# | ||
# !! NOTE !! | ||
# Please keep the entries below in alphanumerical order according to the identifier. Thanks! | ||
# | ||
|
||
cappello_f: | ||
sur_name: Cappello | ||
given_name: Franck | ||
affiliation: anl | ||
email: [email protected] | ||
homepage: | ||
|
||
kramer_b: | ||
sur_name: Kramer | ||
given_name: Bill | ||
affiliation: ncsa | ||
email: | ||
homepage: | ||
|
||
labarta_j: | ||
sur_name: Labarta | ||
given_name: Jesus | ||
affiliation: bsc | ||
email: | ||
homepage: | ||
|
||
sato_m: | ||
sur_name: Sato | ||
given_name: Mitsuhisa | ||
affiliation: riken | ||
email: | ||
homepage: | ||
|
||
speck_r: | ||
sur_name: Speck | ||
given_name: Robert | ||
affiliation: jsc | ||
email: [email protected] | ||
homepage: http://www.fz-juelich.de/ias/jsc/speck_r | ||
|
||
yves_r: | ||
sur_name: Yves | ||
given_name: Robert | ||
affiliation: inria | ||
email: | ||
homepage: |
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,10 @@ | ||
module Jekyll | ||
module ObfuscateEmailFilter | ||
def obfuscate_email(input) | ||
input.strip! | ||
input.reverse! | ||
end | ||
end | ||
end | ||
|
||
Liquid::Template.register_filter(Jekyll::ObfuscateEmailFilter) |
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