-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathbanner.html
More file actions
28 lines (25 loc) · 1004 Bytes
/
banner.html
File metadata and controls
28 lines (25 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<header class="header">
<div class="wrapper">
{% if this.image %}
<img src="{{ this.image|url }}" />
{% else %}
<img src="{{ '/static/img/pythonrio.png'|url }}" />
{% endif %}
<h1 class="logo-name">
<a class="logo-link" href="#" title="Meetup PythonRio" itemprop="name">{{ this.title }}</a>
</h1>
<h2 class="tagline">
{% if this.date %}{{ this.date }}, {% endif %}
{% if this.local %}{{ this.local }}, {% endif %}
{% if this.city %}{{ this.city }}{% endif %}
</h2>
<div class="call-action-area">
{% if this.url_applications|trim %}
<a href="{{ this.url_applications }}" class="call-action-link" title="Registre-se" target="_blank">Registre-se</a>
{% else %}
<a href="#" class="call-action-link" title="Em Breve!" target="_blank">Inscrições em breve!</a>
{% endif %}
</div>
</div>
</header>
<hr>