Skip to content

Commit

Permalink
Setup new layout for individual API pages
Browse files Browse the repository at this point in the history
Based on bidder layout
  • Loading branch information
bookwyrm committed Jan 18, 2021
1 parent 543ea07 commit 23d00e5
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions _layouts/api_prebidjs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{% include head.html %}

{% include nav.html %}


<div class="container pb-docs-container">

<div class="row ">

<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>

<div class="col-lg-9">
<div class="pb-content" markdown="1">

{% if page.is_full_screen %}
{{content}}
{% else %}

<div class="row">

<div class="col-md-12" role="main">
<div class="bs-docs-section">

<h2>{{ page.title }}</h2>

{{content}}

</div>

{% if page.show_disqus %}
{% include disqus_addon.html %}
{% endif %}
</div>

</div>

{% endif %}


</div>


</div>
</div>
<!--end row-->
</div>
{% if page.title != "Credits" %}
{% if page.layout != "home" %}
{% include footer.html %}
{% endif %}
{% endif %}

</body>
</html>

0 comments on commit 23d00e5

Please sign in to comment.