-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (53 loc) · 1.27 KB
/
index.html
File metadata and controls
60 lines (53 loc) · 1.27 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
---
{% include header.html %}
<div class="header-container window-height">
<div class="container">
<div class="header">
<h1>
<img title="Python North East" src="{{ "/assets/logo.png" | relative_url }}" />
</h1>
<p>{{ site.data.site.tagline }}</p>
</div>
</div>
</div>
<div class="about-box">
<div class="container">
<h2>Python North East</h2>
{{ site.data.site.about }}
</div>
</div>
<div class="next-event box">
<div class="container">
{% assign post = site.posts.first %}
<div class="box-header">
<h2>
Next Event<br>
{{ post.date | date:"%A %-d %b %Y" }}
</h2>
<h3>{{ post.title }}</h3>
</div>
{{ post.excerpt }}
<p>
<a class="button" href="{{ post.url | relative_url }}">More Details</a>
</p>
</div>
</div>
<div class="container mobile-only">
<a class="map-link" target="_blank" href="https://maps.google.com/?daddr={{ site.data.site.address | join:"," }}">
<img src="{{ "/assets/map.png" | relative_url }}" class="map-img" />
<p>Tapping map opens Google Maps</p>
</a>
</div>
<div class="map-box">
{% include map.html %}
<div class="details">
<div>
<h2>Find us at</h2>
<address>{{ site.data.site.address | join:"<br/>" }}</address>
</div>
</div>
</div>
<div class="container">
</div>
{% include footer.html %}