-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
53 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,40 @@ | ||
<section class="moderators"> | ||
<h3>Moderators</h3> | ||
<ul class="moderators-list"> | ||
<li> | ||
<div class="photo-container"> | ||
<picture> | ||
<img | ||
alt="Sara Vieira profile photo" | ||
src="/images/moderators/sara-vieira.jpg" | ||
class="photo" /> | ||
</picture> | ||
</div> | ||
<a href="/moderators/sara-vieira" alt="Sara Vieira">Sara Vieira</a> | ||
<div class="links"> | ||
<a | ||
href="https://twitter.com/NikkitaFTW" | ||
target="_blank" | ||
rel="noopener noreferrer"><img alt="twitter icon" src="/images/icons/twitter-white.svg" /></a> | ||
<a | ||
href="https://iamsaravieira.com/?utm_source=eurorust" | ||
target="_blank" | ||
rel="noopener noreferrer"><img alt="external link icon" src="/images/icons/external-link-white.svg" /></a> | ||
</div> | ||
</li> | ||
<li> | ||
<div class="photo-container"> | ||
<picture> | ||
<img | ||
alt="Stefan Baumgartner profile photo" | ||
src="/images/speakers/stefan.jpg" | ||
class="photo" /> | ||
</picture> | ||
</div> | ||
<a href="/speakers/stefan-baumgartner/" alt="Stefan Baumgartner">Stefan Baumgartner</a> | ||
<div class="links"> | ||
<a | ||
href="https://twitter.com/ddprrt" | ||
target="_blank" | ||
rel="noopener noreferrer"><img alt="twitter icon" src="/images/icons/twitter-white.svg" /></a> | ||
<a | ||
href="https://fettblog.eu/?utm_source=eurorust" | ||
target="_blank" | ||
rel="noopener noreferrer"><img alt="external link icon" src="/images/icons/external-link-white.svg" /></a> | ||
</div> | ||
</li> | ||
</ul> | ||
<div class="container py-10"> | ||
<h2 class="mb-9">Moderators</h2> | ||
<ul class="speakers-list"> | ||
{% for moderator in section.extra.moderators %} | ||
<li> | ||
<div class="photo-container"> | ||
<div class="photo-container-overlay"></div> | ||
<img | ||
alt="{{ moderator.name }} moderator profile photo" | ||
src="/images/moderators/{{moderator.image}}" | ||
class="photo"/> | ||
</div> | ||
<p class="large mt-4"> | ||
{{ moderator.name }} | ||
</p> | ||
<ul class="social mt-3"> | ||
{% if moderator.twitter %} | ||
<li> | ||
<a | ||
href="https://twitter.com/{{ moderator.twitter }}" | ||
target="_blank" | ||
rel="noopener noreferrer" class="btn__icon"><img src="/images/icons/twitter-footer-white.svg" alt="Twitter icon"/></a> | ||
</li> | ||
{% endif %} | ||
{% if moderator.web %} | ||
<li> | ||
<a | ||
href="{{ moderator.web }}" | ||
target="_blank" | ||
rel="noopener noreferrer" class="btn__icon"><img src="/images/icons/external-link-white.svg" alt="email icon"/></a> | ||
</li> | ||
{% endif %} | ||
|
||
</ul> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</section> |