53 lines
2.2 KiB
HTML
53 lines
2.2 KiB
HTML
---
|
|
# This file is licensed under the MIT License (MIT) available on
|
|
# http://opensource.org/licenses/MIT.
|
|
|
|
layout: base
|
|
id: events
|
|
---
|
|
{% assign date_sorted_conferences = site.conferences | sort: 'date' %}
|
|
<!-- Note: this file is built non-deterministically -->
|
|
<link rel="alternate" type="application/rss+xml" href="/en/rss/events.rss" title="Bitcoin conferences and events">
|
|
<div class="hero">
|
|
<div class="container hero-container">
|
|
<h1>{% translate pagetitle %}</h1>
|
|
<p class="summary">{% translate pagedesc %} <a class="rss-link" type="application/rss+xml" href="/en/rss/events.rss">{% translate rsslink %}</a></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="events">
|
|
<div class="container">
|
|
<h2 class="section-title events-title center" id="upcoming">{% translate upcoming %}</h2>
|
|
<ul class="post-list clearfix">
|
|
{% for p in date_sorted_conferences %}
|
|
<li class="post">
|
|
<div class="post-inner">
|
|
<p class="post-date">{{ p.date | date:"%Y-%m-%d" }}</p>
|
|
<p class="post-name">{{ p.title | htmlescape }}</p>
|
|
<p class="post-location">{{ p.city | htmlescape }}, {{ p.country | htmlescape }}</p>
|
|
<p class="post-description">
|
|
<!-- Event description -->
|
|
</p>
|
|
<a class="button btn-bright" href="{{ p.link | htmlescape }}">{% translate informbut getting-started %}</a>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<div class="btn-container">
|
|
<button class="button btn-dark" id="loadMore">{% translate loadmore-events %}</button>
|
|
</div>
|
|
<div class="additional-links events-links row">
|
|
<div>
|
|
<p>{% translate meetupgroup %}</p>
|
|
<p>{% translate meetupbitcointalk %}</p>
|
|
<p>{% translate meetupwiki %}</p>
|
|
</div>
|
|
<div>
|
|
<a class="button btn-bright event-btn" href="https://github.com/bitcoin-dot-org/bitcoin.org/issues/new?title=New%20event&body=%20%20%20%20-%20date%3A%20YYYY-MM-DD%0A%20%20%20%20%20%20title%3A%20%22%22%0A%20%20%20%20%20%20venue%3A%20%22%22%0A%20%20%20%20%20%20address%3A%20%22%22%0A%20%20%20%20%20%20city%3A%20%22%22%0A%20%20%20%20%20%20country%3A%20%22%22%0A%20%20%20%20%20%20link%3A%20%22%22">{% translate eventsubmit %}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/js/loadMorePosts.js"></script>
|