1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-02 09:42:35 +00:00
This commit is contained in:
2020-05-12 11:15:32 -05:00
parent 70a7f09146
commit 63e7b5d333
8 changed files with 130 additions and 9 deletions

23
blog.html Normal file
View File

@ -0,0 +1,23 @@
---
layout: page
title: Blog
permalink: /blog/
---
<div class="blog mt-5">
<div class="row">
{% for post in site.posts %}
<div class="col-6">
<a href="{{ post.url | prepend: site.baseurl }}" class="text-decoration-none">
<div class="card bg-secondary" {%- if post.cover -%} style="background-image: linear-gradient(to bottom, rgba(40, 50, 63, 0.3), rgba(40, 50, 63, 0.9)), url(/assets/img/blog/{{ post.cover }}); background-size: cover;"{%- endif -%}>
<div class="card-body d-flex flex-column align-self-end" style="min-height: 300px;">
<h2 class="card-title mt-auto text-light">{{ post.title }}</h2>
<p class="card-text text-light">{{ post.excerpt }} <strong>Continue Reading...</strong></p>
<p class="card-text"><small class="text-light">{{ post.author }} - {{ post.date | date: "%b %-d, %Y" }}</small></p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</div>