-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.33 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
---
layout: default
---
{% assign about = site.data.copy.global[0] %}
{% assign welcome = site.data.copy.global[1] %}
<div class="container my-5">
<div class="row">
<div class="col-md-6 col-sm-12">
<h1>{{ welcome.welcome }}</h1>
<hr class="large" />
<p>{{ about.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">
<a href="https://peninsula.dsachapters.org/assets/images/ECE%204%20All%20SSF%20volunteers%20at%20campaign%20launch%202022.01.15.jpg">
<img src="assets/images/ECE 4 All SSF volunteers at campaign launch 2022.01.15-thumb.jpg" width="90%" height="auto" alt="Dozens of volunteers at the Pre-school for all campaign launch!" />
</a>
</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>