-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmarkdown.html
36 lines (35 loc) · 998 Bytes
/
markdown.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
---
layout: default
---
{% for post in site.categories['markdown'] limit:1 %}
<div class="container-fluid image-header" style="background-image: url('{{ post.image }}');">
<div class="row">
<div class="image-header-overlay">
<div class="container">
<div class="col-md-10 col-md-offset-1">
<h3>The Latest in Markdown</h3>
<div class="borderline"></div>
<h1 class="featured">{{post.title}}</h1>
<a href="{{ post.url }}" class="btn btn-orange btn-blog">READ POST</a>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
<div class="container">
<div class="col-md-12">
<h2 class="posts-intro">Posts About Markdown</h2>
</div>
</div>
<div class="container">
<div class="col-md-12">
<div class="posts">
<div class="row">
{% for post in site.categories.markdown offset:1 %}
{% include listpost.html p=post %}
{% endfor %}
</div>
</div>
</div>
</div>