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
|
||||
position: General Secretary
|
||||
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.
|
||||
|
||||
|
@ -1,41 +1,41 @@
|
||||
<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 %}
|
||||
|
||||
{% assign slug = (member.name | downcase | replace: ' ', '-') %}
|
||||
{% assign slug = (member.name | downcase | replace: ' ', '-' | replace: 'ü', 'ue') %}
|
||||
|
||||
<div class="grid__col">
|
||||
<div class="boardmember">
|
||||
<div class="boardmember__info">
|
||||
<img class="boardmember__avatar" src="/assets/img/board/{{ slug }}.jpg">
|
||||
<div class="grid__col">
|
||||
<div class="boardmember">
|
||||
<div class="boardmember__info">
|
||||
<img class="boardmember__avatar" src="/assets/img/board/{{ slug }}.jpg">
|
||||
|
||||
<div class="boardmember__meta">
|
||||
<h1 class="boardmember__name">
|
||||
{% if member.prefix %}{{ member.prefix }} {% endif %}
|
||||
{{ member.name }}
|
||||
</h1>
|
||||
<p class="boardmember__position">{{ member.position }}</p>
|
||||
<div class="boardmember__meta">
|
||||
<h1 class="boardmember__name">
|
||||
{% if member.prefix %}{{ member.prefix }} {% endif %}
|
||||
{{ member.name }}
|
||||
</h1>
|
||||
<p class="boardmember__position">{{ member.position }}</p>
|
||||
|
||||
{% if member.social %}
|
||||
<p class="boardmember__social">
|
||||
{% for item in member.social %}
|
||||
<a href="{{ item.link }}" title="{{ item.name }}">
|
||||
<svg class="icon" aria-labelledby="title">
|
||||
<title>{{ item.name }}</title>
|
||||
<use xlink:href="/assets/img/sprite.svg#icon-{{ item.name | downcase }}"></use>
|
||||
</svg>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% if member.social %}
|
||||
<p class="boardmember__social">
|
||||
{% for item in member.social %}
|
||||
<a href="{{ item.link }}" title="{{ item.name }}">
|
||||
<svg class="icon" aria-labelledby="title">
|
||||
<title>{{ item.name }}</title>
|
||||
<use xlink:href="/assets/img/sprite.svg#icon-{{ item.name | downcase }}"></use>
|
||||
</svg>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="boardmember__bio">{{ member.bio | markdownify }}</div>
|
||||
</div>
|
||||
|
||||
<div class="boardmember__bio">{{ member.bio | markdownify }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user