forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
86 lines (48 loc) · 1.63 KB
/
Copy pathtest.html
File metadata and controls
86 lines (48 loc) · 1.63 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
{% include head.html %}
{% include nav.html %}
<div class="container bs-docs-container">
<div class="row ">
<div class="wrapper">
<div class="col-sm-2 sidebar-expanded d-none d-md-block sidebar" id="sidebar">
{% include left_nav.html %}
</div>
<div class="col-sm-9 pb-content" markdown="1">
{% if page.is_full_screen %}
{{content}}
{% else %}
<div class="row">
<div class="col-md-9" role="main">
<div class="bs-docs-section">
<h3>{{ page.title }}</h3>
<h4>Bidder Code</h4>
{% if page.s2s_only == true %}
<div class="pb-bidder-s2">
<h3>Note:</h3> This is a S2S adapter only.</h3>
</div>
{% endif %}
<code>{{ page.biddercode }}</code>
{% if page.biddercode_longer_than_12 != true %}
<h4>Send All Bids Ad Server Keys</h4>
<code>hb_pb_{{ page.biddercode }}</code>
<code>hb_adid_{{ page.biddercode }}</code>
<code>hb_size_{{ page.biddercode }}</code>
{% endif %}
{{content}}
</div>
</div>
</div>
{% endif %}
</div>
</div>
<!--end wrapper-->
</div>
<!--end row-->
<p></p>
<hr>
{% if page.title != "Credits" %}
{% if page.layout != "home" %}
{% include footer.html %}
{% endif %}
{% endif %}
</div>
</body>