-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathblog.html
37 lines (34 loc) · 1.4 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
34
35
36
37
---
layout: page
title: Blog
tagline: All the <b style='color :#007bff; font-weight:900!important;'>posts</b> of jorigamy.github.io theme.
group: "navigation"
tags :
author : Antonio Trento
css:
js:
keywords:
img:
image: assets/images/antonio-trento-logo-social.jpg
floating: shard-1-5x-3.png
btn-icon: fa-github
btn-text: fork
btn-link: https://github.com/jorigamy/jorigamy.github.io
---
{% include themes/floating.html %}
<!-- Cards -->
<div id="cards" class="container mb-2" style="padding-bottom: 1px">
<div class="example col-md-12 ml-auto mr-auto">
<div class="row">
{% for post in site.posts %}
<div class="col-lg-4 col-md-6 col-sm-12 mb-4">
<div style="margin-top:2em" class="card">{% if post.img %}<img class="card-img-top ll-image" data-img-src="{{ site.url }}{{ site.baseurl }}/assets/images/{{ post.img }}" alt="{{ post.title }} image missing">{% endif %}
<div class="card-body">
<h4 class="card-title">{{ post.title }}</h4>
<p class="card-text">{{ post.excerpt }}</p><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}" class="btn btn-primary">Read More</a></div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>