Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 70000010 authored by Deepak Khatri's avatar Deepak Khatri :dog:
Browse files

Upde theme layout

parent 51a915c6
Branches
Tags
No related merge requests found
Pipeline #793 passed with stage
in 3 minutes and 25 seconds
......@@ -18,9 +18,18 @@
}
.wy-nav-content {
max-width: 100%;
max-width: 100%;
}
.wy-side-scroll {
overflow-y: hidden;
}
.wy-menu.wy-menu-vertical {
overflow-y: auto;
overflow-x: hidden;
max-height: calc(100% - 247px);
}
.wy-side-nav-search {
background-color: #25282b;
......@@ -33,6 +42,7 @@
}
.wy-nav-side {
padding-bottom: 0px;
background-color: #25282b;
background-color: #25282b;
}
......
{% extends "!layout.html" %}
{% block document %}
{% if pages_slug != "latest" %}
<div class="wy-alert wy-alert-danger">
The <a href="{{pages_url}}/latest">latest development version</a>
of this page may be more current than this released {{ version }} version.
</div>
{% else %}
<div class="wy-alert wy-alert-danger">
This is the latest (main) BeagleBoard documentation.
If you are looking for the previous releases, use the
drop-down menu on the left and select the desired version.
</div>
{% endif %}
{{ super() }}
{% endblock %}
{% block menu %}
{% include "versions.html" %}
{{ super() }}
{% if reference_links %}
<div class="toctree-wrapper compound">
<p class="caption"><span class="caption-text">Reference</span></p>
<ul>
{% for title, url in reference_links.items() %}
<li class="toctree-l1">
<a class="reference internal" href="{{ url }}">{{ title }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endblock %}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment