rf-web/_layouts/participant.html

41 lines
972 B
HTML
Raw Normal View History

---
layout: page
lang: en
ref: going-online
---
<article class="page-content news-post">
<div class="content post-item">
2020-07-29 16:24:30 +00:00
<img src="{{ page.picture }}" alt="">
<header class="post-header">
2020-07-29 16:24:30 +00:00
<h2>{{ page.fullname }}</h2>
</header>
<p class="block">
</p>
<div class="post-content">
<h2>
About {{ page.fullname }}
</h2>
2020-07-29 16:24:30 +00:00
<p>
Events :
</p>
{% for id in page.events %}
{% for event in site.data.rf2020.events %}
{% if event.id == id %}
<a class="block with-url-arrow" href="/events/{{ id }}.html">{{ event.title_ }}</a>
{% endif %}
{% endfor %}
{% endfor %}
<p>
{{ page.bio }}
</p>
2020-07-29 16:24:30 +00:00
{% for site in page.links %}
<a class="block with-url-arrow" href="{{ site }}">{{ site | remove_first: "https://" | remove_first: "http://" | remove_first: "www." }}</a>
{% endfor %}
</div>
</div>
</article>