-
Notifications
You must be signed in to change notification settings - Fork 62
/
index.html
91 lines (85 loc) · 3.02 KB
/
index.html
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
layout: default
title: Home
---
<!--
<div class="textbody container">
<div class="row">
<div class="textbody-text span12">
<p> </p>
</div>
</div>
</div>
-->
{% for post in site.posts limit:1 %}
<div class="slots container">
<div class="row">
{{ post.content }}
</div>
</div>
{% endfor %}
<!-- Site Description -->
<div class="presentation container">
{% for post in site.posts limit:1 %}
<div class="row">
<div class="span8">
<h2>Welcome to the Berlin <span class="violet">PHP</span> Usergroup</h2>
<p>
Next Meetup:
{% if post.cancelled %}
<!-- cancelled announcement START: -->
<span class="violet">{{ post.datetitle }}</span> <span style="background-color:#d00;color:#fff;"> CANCELLED - {{post.cancelled}} </span>
<!-- cancelled announcement END -->
{% else %}
<!-- regular announcement: START -->
<span class="violet">{{ post.datetitle }}</span>, Opening at 7:00 pm, Start at 7:30pm.
<!-- regular announcement: END -->
{% endif %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "{{ post.title }}",
"location": {
"@type": "Place",
"name": "co.up coworking",
"url": "https://co-up.de/",
"address": {
"@type": "PostalAddress",
"addressLocality": "Berlin",
"postalCode": "10999",
"streetAddress": " Adalbertstraße 8"
}
},
"startDate": "{{ post.meetupdate }}T19:00",
"url": "https://www.bephpug.de/"
}
</script>
{% if post.lanyrd %} <br/><span class="lanyrd">Feel free to save your attendance at our <a href="{{ post.lanyrd }}">Lanyrd Event</a></span> {% endif %}
</p>
</div>
<div class="span4">
<h2>
<img alt="Meetup.com Logo" src="https://img1.meetupstatic.com/img/logo.svg">
Meetup
</h2>
<p>
You can find us at
<a href="https://www.meetup.com/Berlin-PHP-Usergroup/">Meetup.com</a>
</p>
{% if post.meetupid %}
<p>
<a href="https://www.meetup.com/Berlin-PHP-Usergroup/events/{{ post.meetupid }}/" data-event="{{ post.meetupid }}" class="mu-rsvp-btn">RSVP</a>
</p>
{% endif %}
</div>
</div>
{% endfor %}
</div>
<div class="textbody container">
<div class="row">
<div class="textbody-text span12">
<p> </p>
</div>
</div>
</div>