Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding mediavine as pub member #1371

Merged
merged 1 commit into from
Jun 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions _data/partners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@
imgURL: /assets/images/partners/standard/Pubnative-RGB-Logo.png
type: standard

- company: Mediavine
link: https://www.mediavine.com/
imgURL: /assets/images/partners/publisher/mediavine-sq-teal-navy-pn-RGB.png
type: publisher

- company: GoBrowsi
link: https://gobrowsi.com
imgURL: /assets/images/partners/community/Browsi-Logo.png
Expand Down
20 changes: 20 additions & 0 deletions _includes/partners.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,26 @@
writeDynamicTable({div:"memberTableStandard", data:"memberDataStandard", sort:"rowFirst"});
</script>

<div class="tableTitle"><h3>Prebid.org Publisher Members</h3></div>
<script type="text/javascript">
var memberDataPub=[];
var idx=0;

{% for item in site.data.partners %}
{% if item.type == "publisher" %}
memberDataPub[idx]={};
memberDataPub[idx].href="{{item.link}}";
memberDataPub[idx].text="<img src=\"{{item.imgURL}}\" width=\"88\">";
idx++;
{% endif %}
{% endfor %}
</script>

<div id="memberTablePub"></div>
<script>
writeDynamicTable({div: "memberTablePub", data: "memberDataPub", sort:"rowFirst"});
</script>

<div class="tableTitle"><h3>Prebid.org Community Members</h3></div>
<script type="text/javascript">
var memberDataComm=[];
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.