forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
56 lines (44 loc) · 1.56 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{% include head.html %}
{% include main_nav.html %}
<div class="bs-docs-header" id="content">
<div class="container">
<h1>Prebid.org Blog</h1>
<p>A collection of helpful tips for implementing header bidding with.</p>
</div>
</div>
<div class="container bs-docs-container">
<div class="row">
<div class="col-md-9" role="main">
<div class="bs-docs-section">
<h1>{{page.title}}</h1>
{{content}}
<div class="blog-related-posts">
<h4>You may also enjoy:</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>
{% include disqus_addon.html %}
</div>
<div class="col-md-3">
<div class="bs-docs-sidebar hidden-print">
<h5>Related Posts</h5>
<ul class="nav bs-docs-sidenav">
{% 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>
{% include foot.html %}