forked from RTPSUGMembers/rtpsugmembers.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
28 lines (25 loc) · 793 Bytes
/
blog.html
File metadata and controls
28 lines (25 loc) · 793 Bytes
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
---
layout: blog
title: Our Meetings
group: navigation
tags : [blog, posts, post]
author : RTPSUG
css:
js:
keywords: bootstrap4, UI kit, jekyll
canonical: https://rtpsug.com/blog
---
{% include JB/setup %}
{% for post in site.posts %}
<div class="blog-block post-content-area">
{% if post.img %}
<a href="{{ BASE_PATH }}{{ post.url }}"><img src="{{ BASE_PATH }}/assets/images/{{ post.img }}" alt="{{ post.title }} image"></a>
{% endif %}
<div class="blog-post">
<h3><a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></h3>
<p>{{ post.excerpt }}</p>
<a class="btn btn-common" href="{{ BASE_PATH }}{{ post.url }}">Read More</a>
</div>
</div>
<div class="mb-60"></div>
{% endfor %}