-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.57 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
---
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="/about" 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/baton-rouge-dsa-cover-image.jpg" width="90%" height="auto" alt="Baton Rouge DSA members at an event" />
</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>
{% if site.posts.size == 0 %}
<div class="col-12">
<p>Baton Rouge DSA blog coming soon!</p>
</div>
{% endif %}
{% 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>
<link href='https://actionnetwork.org/css/style-embed-v3.css' rel='stylesheet' type='text/css' /><script src='https://actionnetwork.org/widgets/v5/form/join-brdsa?format=js&source=widget'></script><div id='can-form-area-join-brdsa' style='width: 100%'><!-- this div is the target for our HTML insertion --></div>
</div>