To do: - Home navigation bar CSS is in the docs_home.html — figure out how to change this from docs.less instead - “Improve this page” has been hacked with negative top-margin to align it with “Next:… ->” link. Move this before the next link in content and style accordingly.
30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
<div class="page-container" id="page-{{ name or page_name }}" data-path="{{ pathname }}"
|
|
{% if page_or_generator=="Generator" %}data-doctype="{{ doctype }}"{% endif %}>
|
|
<div class="page-content">
|
|
<div class="page-content-wrapper">
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
<div class="page-breadcrumbs" data-html-block="breadcrumbs">
|
|
{%- if breadcrumbs is defined -%}{{ breadcrumbs }}{%- endif -%}
|
|
</div>
|
|
<div class="page-header-block" data-html-block="header">
|
|
{%- if header is defined -%}
|
|
{% if header %}{{ header }}{% endif %}
|
|
{%- endif -%}
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="page-header-actions-block" data-html-block="header-actions">
|
|
{%- if header_actions is defined -%}
|
|
{% if header_actions %}{{ header_actions }}{% endif %}
|
|
{%- endif -%}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="page-content-block">
|
|
{%- block content -%}{{ content or "" }}{%- endblock -%}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|