forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.html
More file actions
20 lines (18 loc) · 773 Bytes
/
Copy pathsidebar.html
File metadata and controls
20 lines (18 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- product > category > maptopic > article -->
<div class="sidebar d-none d-lg-block">
<div class="d-flex flex-items-center p-4 position-sticky top-0 sidebar-background-color" style="z-index: 3;" id="github-logo">
<a href="/{{ currentLanguage }}" class="text-white" aria-hidden="true">
{% octicon "mark-github" height="32" %}
</a>
<a href="/{{ currentLanguage }}" class="h4-mktg text-white no-underline no-wrap pl-2 flex-auto">{% data ui.header.github_docs %}</a>
</div>
{% if error == '404' or page.relativePath == 'index.md' %}
<ul class="sidebar-products mt-4">
{% include sidebar-homepage %}
</ul>
{% else %}
<ul class="sidebar-products">
{% include sidebar-specific-product %}
</ul>
{% endif %}
</div>