forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
93 lines (65 loc) · 2.67 KB
/
example.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
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
{% include head.html %}
{% include nav.html %}
<div class="container bs-docs-container">
<div class="row">
<div class="wrapper">
<!-- Left nav -->
<div class="col-sm-2 sidebar-expanded d-none d-md-block sidebar" id="sidebar">
{% include left_nav.html %}
</div>
<!-- Main content -->
<div class="col-sm-9 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>This page contains:</h4>
<p>
<ul>
{% for about_bullet in page.about %}
<li>{{ about_bullet}}</li>
{% endfor %}
</ul>
</p>
<p>
On the JSFiddle example below, click <strong>Result</strong> to see the result.
</p>
<p>
Click <strong>Edit in JSFiddle</strong> to open the example in a new tab.
</p>
<p>
For tips and troubleshooting info, see:
<ul>
<li>
<a href="{{site.github.url}}/dev-docs/troubleshooting-tips.html">Tips for Troubleshooting</a>
</li>
<li>
<a href="{{site.github.url}}/dev-docs/common-issues.html">Common Issues</a>
</li>
</ul>
</p>
<div class="row">
<!-- Build warning -->
<div class="col-md-12">
{% include dev-docs/build-from-source-warning.md %}
</div>
</div>
<div class="row">
<!-- JSFiddle -->
<div id="jsfiddle" class="col-md-12">
<h2>(Sorry, jsfiddle code examples aren't available with your cookie privacy settings.)</h2>
<p><a class="optanon-show-settings">Cookie Settings</a></p><br/>
</div>
</div>
</div>
<!--end main content-->
</div>
</div>
</div>
<script type="text/javascript">
Optanon.InsertHtml('<iframe width="100%" height="{{page.code_height}}" src="//{{page.jsfiddle_link}}" allowfullscreen="allowfullscreen" frameborder="0"></iframe>', 'jsfiddle', null, {deleteSelectorContent: true}, 3);
</script>
{% include footer.html %}