forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
31 lines (28 loc) · 943 Bytes
/
post.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
{% include head.html %}
{% include nav.html %}
<div class="container bs-docs-container">
<div class="row">
<div class="col-md-9 pb-blog" role="main">
<div class="bs-docs-section ">
<div class="blog-date">
<h4>{{ page.date | date: '%B %d, %Y' }}</h4>
</div>
<h2>{{page.title}}</h2>
{{content}}
<hr>
<div class="blog-related-posts">
<h4>Other blog posts:</h4>
<ul>
{% for p in site.posts %}
{% if p.id == page.id %}
{% continue %}
{% endif %}
<li><a href="{{ p.url }}">{{ p.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</div>
{% include footer.html %}