forked from OrlandoDevs/orlandodevs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (19 loc) · 642 Bytes
/
index.html
File metadata and controls
21 lines (19 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
---
<div class="oc-content">
<ul class="oc-posts">
{% for post in site.posts %}
<li class="oc-post">
<h2 class="oc-heading -h2">
<a class="oc-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<span class="oc-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</h2>
<div class="oc-excerpt">
<p>{% if post.description %}{{ post.description }}{% else %}{{ post.excerpt }}{% endif %}</p>
<a class="oc-link" href="{{ post.url | prepend: site.baseurl }}">Read More</a>
</div>
</li>
{% endfor %}
</ul>
</div>