-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
58 lines (44 loc) · 1.23 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
---
title: "The home of the Glasgow tech startup community | Coworking for startups in Glasgow"
layout: page
---
<div class="header-img">
<div class="vert-text">
<h2>{{ site.data.home.header }}</h2>
</div>
</div>
<div class="section">
<h2>{{ site.data.home.subheader }}</h2>
<p>{{ site.data.home.introduction }}</p>
</div>
{% include subscribe.html %}
<div class="home-middle-img">
<div class="vert-text">
<h2>{{ site.data.home.middle }}</h2>
</div>
</div>
<div class="section partners">
<h2>Partners</h2>
{% for partner in site.data.partners %}
<a href="{{ partner.url }}"><img class="partner" src="/images/{{ partner.image }}"></a>
{% endfor %}
</div>
<div class="recent">
<h2>Recent Posts</h2>
{% for post in site.posts limit:2 %}
<div class="post">
<h3 class="post-title"><a href={{ post.permalink }}>{{ post.title }}</h3>
<img class="post-image" src="{{ post.headerImage }}"></a>
<div class="post-excert">
{{ post.content |truncatehtml | truncatewords: 50 }}
</div>
</div>
{% endfor %}
</div>
<div class="section">
<h2>{{ site.data.home.info_subheader }}</h2>
<p>{{ site.data.home.info_paragraph }}</p>
</div>
<div class="section">
<h3>Want to chat? Email [email protected]</h3>
</div>