forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'refs/remotes/prebid/master'
# Conflicts: # download.md
- Loading branch information
Showing
65 changed files
with
1,660 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<h5>All Examples</h5> | ||
|
||
<ul id="example-tab"> | ||
|
||
{% assign example_pages = (site.pages | where: "layout", "example") | sort: "pid" %} | ||
{% for epage in example_pages %} | ||
<li> | ||
<a href="{{ epage.url }}">{{ epage.title }}</a> | ||
{% if epage.is_beta %} | ||
<span class="label label-warning">Beta</span> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
<br> | ||
{% assign pl_example_pages = (site.pages | where: "layout", "player_example" | sort: "pid" %} | ||
{% for p_epage in pl_example_pages %} | ||
<li> | ||
<a href="{{ p_epage.url }}">{{ p_epage.title }}</a> | ||
{% if p_epage.is_beta %} | ||
<span class="label label-warning">Beta</span> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
{% include head.html %} | ||
|
||
{% include main_nav.html %} | ||
|
||
<div class="container bs-docs-container"> | ||
<div class="row"> | ||
|
||
<div class="col-md-5"> | ||
<div class="docs-sidebar"> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
{% include left_nav.html %} | ||
</div> | ||
|
||
<div class="col-md-6"> | ||
{% include example_tab.html %} | ||
<!-- </div> --> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-md-7" role="main"> | ||
<div class="bs-docs-section" 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 %} | ||
<p>This page is an example of using prebid video with a specific player. For a general guide to using video in prebid, click <a href="{{site.github.url}}/dev-docs/show-video-with-a-dfp-video-tag.html">here.</a></p> | ||
<br> | ||
|
||
<h4>This page contains:</h4> | ||
|
||
<p> | ||
<ul> | ||
{% for about_bullet in page.about %} | ||
<li>{{ about_bullet}}</li> | ||
{% endfor %} | ||
</ul> | ||
</p> | ||
<br> | ||
<h4>Player specific notes:</h4> | ||
<p> | ||
<ul> | ||
{% for player_bullet in page.player_notes %} | ||
<li>{{ player_bullet}}</li> | ||
{% endfor %} | ||
</ul> | ||
</p> | ||
<br> | ||
<p> | ||
|
||
Click <a href="//{{page.demo_link}}">here</a> to view a demo page with this example. Click <strong>Edit in JSFiddle</strong> to open the example in a new tab. | ||
|
||
</p> | ||
|
||
<p> | ||
For tips and troublshooting info, see: | ||
<ul> | ||
<li> | ||
<a href="{{site.github.url}}/dev-docs/toubleshooting-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> | ||
</div> | ||
|
||
</div> | ||
|
||
<br> | ||
|
||
<div class="row"> | ||
|
||
<div class="col-sm-6"> | ||
|
||
|
||
<table class="jsfiddle-line-number"> | ||
<tr> | ||
<td class="line-number"> | ||
|
||
{% for num in (1..page.code_lines) %} | ||
|
||
{{ num }} <br> | ||
|
||
{% endfor %} | ||
|
||
</td> | ||
|
||
<td> | ||
|
||
<iframe width="100%" height="{{page.code_height}}" src="//{{page.jsfiddle_link}}" allowfullscreen="allowfullscreen" frameborder="0"></iframe> | ||
|
||
</td> | ||
</tr> | ||
</table> | ||
|
||
|
||
</div> | ||
|
||
<div class="col-sm-6"> | ||
|
||
|
||
{% include dev-docs/build-from-source-warning.md %} | ||
|
||
{{content}} | ||
|
||
</div> | ||
<br><br> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
|
||
{% include foot.html %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.