forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
94 lines (72 loc) · 2.25 KB
/
Copy pathexample.html
File metadata and controls
94 lines (72 loc) · 2.25 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{% include head.html %}
{% include nav.html %}
<div class="container pb-docs-container">
<div class="row">
<!-- Left nav -->
<div class="col-lg-3 sidebar" id="sidebar">
<div>
<button class="navbar-toggler d-lg-none" type="button" data-toggle="collapse" data-target="#sidebarContent" aria-controls="sidebarContent" aria-expanded="false" aria-label="Toggle Sidebar navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse d-lg-block" id="sidebarContent">
{% include left_nav.html %}
</div>
</div>
</div>
<!-- Main content -->
<div class="col-lg-9">
<div class="pb-content" markdown="1">
<h1>{{ page.description }}</h1>
{% if page.why_link %}
<h4>Who should use this example:</h4>
<ul>
<li>Please refer to the <a href="{{page.why_link}}" target="_blank">product feature launch notes</a>.</li>
</ul>
{% endif %}
<h4>About this example:</h4>
<p>
<ul>
{% for about_bullet in page.about %}
<li>{{ about_bullet}}</li>
{% endfor %}
</ul>
</p>
<div class="row">
<!-- Build warning -->
<div class="col-md-12">
{% include dev-docs/not-for-production-warning.md %}
</div>
</div>
<div class="row">
<div class="col-md-12">
{{ content }}
</div>
</div>
<div class="row">
<!-- Build warning -->
<div class="col-md-12">
{% include dev-docs/build-from-source-warning.md %}
</div>
</div>
<h2>Further Reading</h2>
<p>
<ul>
<li>
<a href="/dev-docs/getting-started.html">Getting Started for Developers</a>
</li>
<li>
<a href="/troubleshooting/troubleshooting-guide.html">Troubleshooting Guide</a>
</li>
<li>
<a href="/dev-docs/common-issues.html">Common Issues</a>
</li>
</ul>
</p>
</div>
<!--end main content-->
</div>
</div>
</div>
{% include footer.html %}
</body>
</html>