-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
121 lines (120 loc) · 4.58 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---
layout: default
class: front index
map: true
head: |
<script src="/js/index.js"></script>
tags:
- property: "og:type"
content: "website"
- property: "og:image"
content: "http://www.kcbj.be/images/logo/logo.png"
- property: "og:image:type"
content: "image/png"
- property: "og:image"
content: "http://www.kcbj.be/images/logo/logo.svg"
- property: "og:image:type"
content: "image/svg+xml"
redirect_from:
- /info/locaties/
---
<section id="welcome" class="first fullscreen jumbo hero container nomargin">
<div class="overlay blue"></div>
<div class="wrapper">
<h1>Welkom bij korfbalclub KCBJ</h1>
<h2>KCBJ is een korfbalclub uit Betekom met meer dan 200 actieve leden</h2>
<div class="buttons">
</div>
<div id="respect" style="position: absolute; right: 0; bottom: 0; padding: 20px">
<img src="/images/respect-white.png" alt="Respect" style="opacity: 0.5;"/>
</div>
</div>
</section>
<section id="trainingen" class="container">
<div class="horizontal split left">
<div class="background">
<div class="overlay"></div>
</div>
<div class="content">
<h2>Mee komen trainen?</h2>
<p>Je bent altijd welkom! Je mag al eens komen meetrainen met één van onze ploegen om korfbal en KCBJ wat beter te leren kennen. Zo kan je zien of korfbal iets voor jou is.</p>
<div class="buttons right">
<a class="button more" href="/agenda#trainingen" title="Trainingsuren">Trainingsuren</a>
</div>
</div>
</div>
</section>
<section id="lidworden" class="container">
<div class="horizontal split right">
<div class="background">
<div class="overlay"></div>
</div>
<div class="content">
<h2>Lid worden?</h2>
<p>Je hebt beslist bij ons te komen korfballen? De volgende stap is lid worden. Hier vind je alles wat je moet weten om lid te worden van KCBJ.</p>
<div class="buttons left">
<a class="button more" href="/info#lidworden" title="Lid worden van KCBJ">Lid worden</a>
</div>
</div>
</div>
</section>
<section id="social" class="hero container nomargin">
<div class="overlay blue"></div>
<div class="wrapper">
<h1>Volg KCBJ online</h1>
<p class="centered">We zijn actief op zowel Facebook als Instagram. De laatste nieuwtjes, de recentste foto's, ze verschijnen daar als eerste.</p>
<div class="buttons">
<a class="button" href="http://www.facebook.com/kcbj.korfbal"><i class="fa fa-facebook"></i> KCBJ op Facebook</a>
<a class="button" href="https://www.instagram.com/kcbj.korfbal/"><i class="fa fa-instagram"></i> KCBJ op Instagram</a>
</div>
</div>
</section>
<section id="location" class="container hero nomargin">
<div class="wrapper">
<h1>Locaties</h1>
<p class="centered">Korfbal wordt zowel binnen als buiten gespeeld. KCBJ traint en speelt daarom op verschillende locaties. Dit zijn de belangrijkste.</p>
<ol id="location-list" class="buttons">
{% assign locations = site.locations | where: "featured", true | sort: "order" %}
{% for location in locations %}
<li class="button location {% if location.new %}new{% endif %}"
data-location-coordinates="{{ location.coordinates[0] }},{{ location.coordinates[1] }}"
data-location-name="{{ location.name }}"
data-location-notes="{{ location.surface }}"
data-location-address="{{ location.address.street_address | append: ', ' | append: location.address.postal_code | append: ' ' | append: location.address.locality}}"
>{{ location.name }} ({{ location.surface }})</li>
{% endfor %}
</ol>
</div>
<div id="map"></div>
</section>
<script type="application/ld+json">
{% assign location = site.locations | sort: "order" | first %}
{
"@context": "http://schema.org",
"@type": "SportsClub",
"@id": "{{site.url}}",
"name": "Korfbalclub KCBJ",
{% if location.address %}
"address": {
"@type": "PostalAddress",
"streetAddress": "{{location.address.street_address | escape}}",
"postalCode": "{{location.address.postalCode | escape}}",
"addressLocality": "{{location.address.locality | escape}}",
"addressCountry": "Belgium"
},
{% endif %}
"geo": {
"@type": "GeoCoordinates",
"latitude": {{location.coordinates[0]}},
"longitude": {{location.coordinates[1]}}
},
"events": "http://kcbj.be/agenda",
"url": "{{site.url}}",
"logo": "{{site.url}}/images/logo/logo.png",
"sameAs": [
"http://www.facebook.com/kcbj.korfbal",
"http://www.twitter.com/kcbj",
"https://plus.google.com/u/0/+KcbjBe/"
]
}
</script>