-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup new layout for individual API pages
Based on bidder layout
- Loading branch information
Showing
1 changed file
with
66 additions
and
0 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,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> | ||
|