-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'author-metadata' into dev
- Loading branch information
Showing
19 changed files
with
235 additions
and
57 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,17 @@ | ||
+++ | ||
title = "Adam Buttrick" | ||
draft = false | ||
layout = "author" | ||
orcid = "https://orcid.org/0000-0003-1507-1031" | ||
affiliation = "Crossref" | ||
affiliation2 = "California Digital Library" | ||
affiliation2start = "2024-05-23" | ||
ror = "https://ror.org/02twcfp32" | ||
ror2 = "https://ror.org/03yrm5c26" | ||
link = "" | ||
bio = "" | ||
avatar = "" | ||
jobtitle = "" | ||
+++ | ||
|
||
|
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,17 @@ | ||
+++ | ||
title = "Amanda French" | ||
draft = false | ||
layout = "author" | ||
orcid = "https://orcid.org/0000-0002-4325-1809" | ||
affiliation = "Crossref" | ||
affiliation2 = "" | ||
affiliation2start = "" | ||
ror = "https://ror.org/02twcfp32" | ||
ror2 = "" | ||
link = "" | ||
bio = "" | ||
avatar = "" | ||
jobtitle = "" | ||
+++ | ||
|
||
|
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,12 @@ | ||
+++ | ||
title = "DataCite" | ||
draft = false | ||
layout = "author" | ||
orcid = "" | ||
affiliation = "" | ||
ror = "https://ror.org/04wxnsj81" | ||
link = "" | ||
bio = "" | ||
avatar = "" | ||
jobtitle = "" | ||
+++ |
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,15 @@ | ||
+++ | ||
title = "Maria Gould" | ||
draft = false | ||
layout = "author" | ||
orcid = "https://orcid.org/0000-0002-2916-3423" | ||
affiliation = "California Digital Library" | ||
affiliation2 = "DataCite" | ||
affiliation2start = "2024-01-23" | ||
ror = "https://ror.org/03yrm5c26" | ||
ror2 = "https://ror.org/04wxnsj81" | ||
link = "" | ||
bio = "" | ||
avatar = "" | ||
jobtitle = "" | ||
+++ |
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,12 @@ | ||
+++ | ||
title = "ROR Core Team" | ||
draft = false | ||
layout = "author" | ||
orcid = "" | ||
affiliation = "" | ||
ror = "" | ||
link = "https://ror.org/about/#core-team" | ||
bio = "" | ||
avatar = "" | ||
jobtitle = "" | ||
+++ |
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 was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 @@ | ||
+++ | ||
title = "{{ title (replace .ContentBaseName "-" " ") }}" | ||
draft = false | ||
layout = "author" | ||
orcid = "" | ||
affiliation = "" | ||
ror = "" | ||
link = "" | ||
bio = "" | ||
avatar = "" | ||
jobtitle = "" | ||
+++ | ||
|
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
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
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
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
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,17 +1,36 @@ | ||
<p class="author"> | ||
|
||
{{ if .Params.authors }} | ||
|
||
{{ $authors := .Params.authors }} | ||
|
||
By {{ delimit $authors ", " " and " }} | ||
|
||
{{ else if .Params.author }} | ||
By {{ .Params.author }} | ||
|
||
{{ else }} | ||
By {{ .Site.Params.author.name }} | ||
{{ end }} | ||
|
||
| {{ .Date.Format "January 2, 2006" }} | ||
</p> | ||
<div class="clearfix"> | ||
|
||
{{- $blogdate := time.AsTime .Date }} | ||
|
||
<span class="blogauthors"> | ||
By | ||
{{- range $index, $author := .GetTerms "authors" }} | ||
{{- if gt $index 0 }}, {{- end }} | ||
|
||
<a href="/authors/{{ .Page.Title | urlize }}">{{ .Page.Title }}</a> | ||
|
||
{{- with .Page.Params.orcid }}<a href="{{ . }}" class="iconlink"> <img src="/img/ORCID-iD_icon_vector.svg"></a>{{- end }} | ||
|
||
{{- if .Page.Params.affiliation2start }} | ||
{{- $affdate := time.AsTime .Page.Params.affiliation2start }} | ||
{{- if $blogdate.After $affdate }} | ||
{{- with .Page.Params.ror2 }}<a href="{{- . }}" class="iconlink"> <img src="/img/ror-icon-rgb.svg"></a>{{- end }} | ||
{{- else }} | ||
{{- if $blogdate.Before $affdate }} | ||
{{- with .Page.Params.ror }}<a href="{{- . }}" class="iconlink"> <img src="/img/ror-icon-rgb.svg"></a>{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{- else if .Page.Params.ror }} | ||
<a href="{{- .Page.Params.ror }}" class="iconlink"> <img src="/img/ror-icon-rgb.svg"></a> | ||
{{- end }} | ||
|
||
{{- with .Page.Params.link }}<a href="{{- . }}" class="iconlink"> <i class="fa-solid fa-arrow-up-right-from-square"></i></a>{{- end }} | ||
|
||
{{- end -}} | ||
|
||
</span> | ||
|
||
<span class="blogdate">{{- .Date.Format "January 2, 2006" }}</span> | ||
|
||
</div> |
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