-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.14 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
---
layout: default
---
{% assign about = site.data.copy.global.about %}
{% assign welcome = site.data.copy.global.welcome %}
<div class="container my-5">
<div class="row">
<div class="col-md-6 col-sm-12">
<h1>{{ welcome }}</h1>
<hr class="large" />
<p>{{ about }}</p>
<a href="/our-work" class="btn btn-secondary">Read More <i class="fa fa-arrow-right"></i></a>
</div>
<div class="col-md-6 col-sm-12 text-right">
<img src="assets/images/homepage.png" width="100%" height="auto"
alt="Comrades from Southern New Hampshire DSA at a Medicare for All rally!" />
</div>
</div>
<div class="row">
<div class="col-12 text-center">
<i class="fa fa-arrow-down my-5 text-red"></i>
</div>
</div>
<div class="row">
<div class="col-12">
<h3 class="my-5">Recent Statements</h2>
</div>
{% for post in site.posts limit:3 %}
<div class="col-12">
<h6 class="my-0 text-black-tint-2">{{ post.date | date: "%b %-d, %Y" }}</h6>
<a class="my-0 article-link" href="{{ post.url }}">{{ post.title }}</a>
<p>{{ post.short_description }}</p>
</div>
{% endfor %}
</div>
</div>