-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
executable file
·25 lines (23 loc) · 1.02 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
---
layout: blog
title: Oklahoma City SEO Blog
seotitle: Oklahoma City SEO Blog | Bricktown SEO
permalink: /oklahoma-city/
---
<div class="container mtb">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
{% for post in site.categories['blog'] %}
<a href="{{ post.url | prepend: site.baseurl }}">
<img class="img-responsive" src="{{ "/assets/img/blog/" | prepend: site.baseurl }}{{ post.img }}">
</a>
<a href="{{ post.url | prepend: site.baseurl }}"><h3 class="ctitle">{{ post.title }}</h3></a>
<p><csmall>{{ post.date | date: "%b %-d, %Y" }}. | By: <a rel="author" target="_blank" href="https://plus.google.com/+PhilSwitzerOKC">{{ post.author }}</a></csmall></p>
{{ post.excerpt }}
<p><a href="{{ post.url | prepend: site.baseurl }}">[Read More]</a></p>
<div class="hline"></div>
<div class="spacing"></div>
{% endfor %}
</div>
</div>
</div>