Skip to content

Commit 8845e93

Browse files
committed
add link to partner companies
1 parent 63322dd commit 8845e93

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,12 +259,14 @@ name = "Viten Hub Team"
259259
title = "Project Lead"
260260
description = "Anne Fouilloux founded VitenHub AS and has 25 years of experience in research software engineering and Open Science practices. Expert in semantic technologies and FAIR data stewardship with hands-on approach to technical development."
261261
organization = "VitenHub AS"
262+
url = "http://vitenhub.no/"
262263

263264
[[extra.team.members]]
264265
name = "Knowledge Pixels Team"
265266
title = "Nanopublication Infrastructure"
266267
description = "Swiss startup specializing in nanopublication technology and decentralized scientific knowledge networks. Providing core infrastructure expertise and technical implementation."
267268
organization = "Knowledge Pixels"
269+
url = "https://knowledgepixels.com"
268270

269271
[[extra.team.members]]
270272
name = "Barbara Magagna"

templates/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,11 @@ <h2>{{ config.extra.team.title }}</h2>
474474
<h3>{{ member.name }}</h3>
475475
<h4>{{ member.title }}</h4>
476476
<p>{{ member.description }}</p>
477-
<div class="member-org">{{ member.organization }}</div>
477+
{% if member.url is defined %}
478+
<div class="member-org"> <a href="{{ member.url }}">{{ member.organization }}</a></div>
479+
{% else %}
480+
<div class="member-org">{{ member.organization }}</div>
481+
{% endif %}
478482
</div>
479483
{% endfor %}
480484
</div>

0 commit comments

Comments
 (0)