-
Notifications
You must be signed in to change notification settings - Fork 36
/
index.html
105 lines (97 loc) · 4.08 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
---
layout: default
---
<!--Featured News Carousel-->
<section class="row featured_news">
{% assign motd = site.data.motd[0] %}
<div class="item">
{% if motd.image %}
<img src="/assets/img/motd/{{ motd.image }}" alt="SKGTech">
{% else %}
<img src="/assets/img/motd/skgtech_team.jpg" alt="SKGTech">
{% endif %}
<div class="row caption m0">
<div class="container">
<div class="volunteer_summery_box col-lg-10 col-md-10">
<h3 class="news-title">A VIBRANT COMMUNITY OF DEVELOPERS, DESIGNERS, PRODUCT PEOPLE AND ENTREPRENEURS.</h3>
<p>Welcome to Thessaloniki's Tech Community Official Website</p>
</div>
</div>
{% if motd %}
<div class="container motd">
<div class="col-lg-5 col-md-10">
<h6 class="label label-default white">{{ motd.tagTitle }}</h6>
<h3 class="motd-title"><a href="{{ motd.link }}">{{ motd.title }}</a></h3>
<p>{{ motd.description }}</p>
<a href="{{ motd.link }}" class="btn-primary" target="_blank">learn more</a>
</div>
</div>
{% endif %}
</div>
</div>
</section>
<section class="row newsletter-signup">
<div class="container">
<div class="row">
<div class="col-sm-5">
<h4>JOIN US ON DISCORD</h4>
<p>SKGTech is on Discord, join us for technical, technology and lifestyle related chat.</p>
</div>
<div class="col-sm-offset-3 col-sm-1">
<a href="https://discord.gg/BtyMYpDacK" target="_blank" class="btn btn-primary white">Join us on Discord</a>
</div>
</div>
</div>
</section>
<!-- Communities -->
<a name="communities"></a>
<section class="row communities_row style2">
<div class="container">
<div class="row sectionTitle text-center">
<h6 class="label label-default">SKGTECH COMMUNITIES</h6>
<h3>AWESOME COMMUNITIES TO JOIN</h3>
</div>
<div class="row">
{% assign communities = site.data.communities | sort: "name" %}
{% for c in communities %}
<!-- Item -->
<div class="col-sm-6 col-md-4 community-sizer"></div>
<div class="col-sm-6 col-md-4 community-listing">
<div class="images_row row m0">
<a href="{{ c.website }}">
{% if c.image %}
<img src="/assets/img/communities/{{ c.image }}" alt="{{ c.name }}">
{% else %}
<img src="/assets/img/placeholders/community_placeholder.jpg" alt="{{ c.name }}">
{% endif %}
</a>
</div>
<div class="community_excepts row m0">
<h4 class="community_title"><a href="{{ c.website }}">{{ c.name }}</a></h4>
<h5 class="community-maintainers">
<ul>
{% for m in c.maintainers %}
<li>
{% if m.email %}
<a href="mailto:{{ m.email }}">
{% elsif m.website %}
<a href="{{ m.website }}">
{% endif %}
{{ m.name }}</a>
</li>
{% endfor %}
</ul>
</h5>
<p>{{ c.description }}</p>
<!-- <a href="{{ c.website }}" class="btn-primary btn-outline">more info</a> -->
</div>
<div class="community-date row m0">
<h5><i class="fa fa-calendar"></i>{{ c.period }} Meetings</h5>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
{% include newsletter.html %}
{% include footer-skgtech-info.html %}