41 lines
972 B
HTML
41 lines
972 B
HTML
---
|
|
layout: page
|
|
lang: en
|
|
ref: going-online
|
|
---
|
|
|
|
<article class="page-content news-post">
|
|
<div class="content post-item">
|
|
<img src="{{ page.picture }}" alt="">
|
|
<header class="post-header">
|
|
<h2>{{ page.fullname }}</h2>
|
|
</header>
|
|
|
|
<p class="block">
|
|
|
|
</p>
|
|
<div class="post-content">
|
|
<h2>
|
|
About {{ page.fullname }}
|
|
</h2>
|
|
<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>
|
|
{% 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> |