-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode-challenge.html
40 lines (30 loc) · 1.12 KB
/
code-challenge.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
38
---
layout: blog-layout
---
<section class="eleven columns">
{% for post in site.categories.code-challenge | limit:20 %}
<article class="blog-post">
<div class="one columns alpha frame">
<div class="blog-date-sec"> <span>{{ post.date | date: '%B' }}</span>
<h3>{{ post.date | date: '%d' }}</h3>
<span>{{ post.date | date: '%Y' }}</span>
</div>
</div>
<div class="ten columns omega">
<div class="img-container">
<img class="frame" src="{{ post.image-thumb }}" alt="">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<div class="postmetadata">
<span>by </span><h6 class="blog-author"> {{ post.author }}</h6>
<span>in </span><h6 class="blog-author"> {{ post.category }}</h6>
</div>
</div>
<p style="margin-left: 60px;">{{ post.content | strip_html | truncate: 200}}</p>
<a href="{{ post.url }}"><btn style="float: right;" class="btn btn-sm btn-info"><strong>Read More</strong></btn></a>
</div>
<br class="clear">
</article>
{% endfor %}
<!-- {{ content }} -->
</section>
<!-- end-main-content -->