-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
33 lines (31 loc) · 1.13 KB
/
blog.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
---
layout: default
title: Thoughts on diversity and inclusion
subtitle: from our Founder Nancy Roberts
banner: blog
banner-alt-text: Drawing of a man with pages flying away from him. (By Pixeltrue from Ouch!)
---
<section id="single-column-area">
<div class="container" id="blog">
<h2 class="fw-bold">All things diversity, equity and inclusion, <br /><span>written and curated by Umbrella Founder Nancy Roberts</span>
<span class="divider-center"></span>
</h2>
<div class="row">
{% for post in site.posts %}
<article class="blog-post col-12 col-md-6 col-lg-4">
<div class="card h-100">
<div class="card-header">
<h3><a class="stretched-link" href="{{ post.url }}">{{ post.title }}</a></h3>
</div>
<div class="card-body">
<div>
<p class="card-date"><em>{{ post.date | date: '%-d %B %Y' }}</em></p>
<p>{{ post.content | markdownify | strip_html | truncatewords: 50 }}</p>
<p class="read-more">Read more …</p>
</div>
</div>
</div>
</article>
{% endfor %}
</div>
</section>