mirror of
https://github.com/ipdb/website.git
synced 2024-11-22 01:26:52 +01:00
photos fix
This commit is contained in:
parent
2aca73c43e
commit
fbe210fb7e
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
@ -31,7 +31,7 @@
|
|||||||
- name: Thomas Fürstner
|
- name: Thomas Fürstner
|
||||||
position: General Secretary
|
position: General Secretary
|
||||||
bio: |
|
bio: |
|
||||||
Tom Fuerstner is a research scientist and university professor with over 30 years of experience in formal logic, social economy theory and digital art. Tom is the founder and CTO of Riddle & Code, a company focused on developing dedicated hardware for the physical internet and public ledger systems.
|
Tom Fürstner is a research scientist and university professor with over 30 years of experience in formal logic, social economy theory and digital art. Tom is the founder and CTO of Riddle & Code, a company focused on developing dedicated hardware for the physical internet and public ledger systems.
|
||||||
|
|
||||||
These days, he is working on hardened server systems for operating BigchainDB and IPFS. The aim is to enable sustainable and resilient identity services in an emerging world of shared sovereignty between humans, machines, algorithms and protocols.
|
These days, he is working on hardened server systems for operating BigchainDB and IPFS. The aim is to enable sustainable and resilient identity services in an emerging world of shared sovereignty between humans, machines, algorithms and protocols.
|
||||||
|
|
||||||
|
@ -1,41 +1,41 @@
|
|||||||
<div class="board grid grid--full grid-small--half grid--gutters">
|
<div class="board grid grid--full grid-small--half grid--gutters">
|
||||||
|
|
||||||
{% assign board = site.data.board %}
|
{% assign board = site.data.board %}
|
||||||
|
|
||||||
{% for member in board %}
|
{% for member in board %}
|
||||||
|
|
||||||
{% assign slug = (member.name | downcase | replace: ' ', '-') %}
|
{% assign slug = (member.name | downcase | replace: ' ', '-' | replace: 'ü', 'ue') %}
|
||||||
|
|
||||||
<div class="grid__col">
|
<div class="grid__col">
|
||||||
<div class="boardmember">
|
<div class="boardmember">
|
||||||
<div class="boardmember__info">
|
<div class="boardmember__info">
|
||||||
<img class="boardmember__avatar" src="/assets/img/board/{{ slug }}.jpg">
|
<img class="boardmember__avatar" src="/assets/img/board/{{ slug }}.jpg">
|
||||||
|
|
||||||
<div class="boardmember__meta">
|
<div class="boardmember__meta">
|
||||||
<h1 class="boardmember__name">
|
<h1 class="boardmember__name">
|
||||||
{% if member.prefix %}{{ member.prefix }} {% endif %}
|
{% if member.prefix %}{{ member.prefix }} {% endif %}
|
||||||
{{ member.name }}
|
{{ member.name }}
|
||||||
</h1>
|
</h1>
|
||||||
<p class="boardmember__position">{{ member.position }}</p>
|
<p class="boardmember__position">{{ member.position }}</p>
|
||||||
|
|
||||||
{% if member.social %}
|
{% if member.social %}
|
||||||
<p class="boardmember__social">
|
<p class="boardmember__social">
|
||||||
{% for item in member.social %}
|
{% for item in member.social %}
|
||||||
<a href="{{ item.link }}" title="{{ item.name }}">
|
<a href="{{ item.link }}" title="{{ item.name }}">
|
||||||
<svg class="icon" aria-labelledby="title">
|
<svg class="icon" aria-labelledby="title">
|
||||||
<title>{{ item.name }}</title>
|
<title>{{ item.name }}</title>
|
||||||
<use xlink:href="/assets/img/sprite.svg#icon-{{ item.name | downcase }}"></use>
|
<use xlink:href="/assets/img/sprite.svg#icon-{{ item.name | downcase }}"></use>
|
||||||
</svg>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="boardmember__bio">{{ member.bio | markdownify }}</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="boardmember__bio">{{ member.bio | markdownify }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user