-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.html
More file actions
33 lines (33 loc) · 1007 Bytes
/
Copy pathheader.html
File metadata and controls
33 lines (33 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<header>
<div class="flexbox">
<div class="center-on-mobiles">
<h1>
<a href="{{ '/' | relative_url }}" class="logo">
<img src="{{ site.logo | relative_url }}?_={{ site.time | date: '%s%N' }}" width="{{ site.logo_width | times:65 | divided_by:site.logo_height }}" height="65" alt="{{ site.name }} Logo">
<span style="color: #aaa">Sublime</span><span style="color: #fff">CodeIntel</span>
</a>
</h1>
</div>
<nav class="main-nav hide-on-mobiles">
{% include nav.html %}
</nav>
<div class="search hide-on-mobiles">
{% include search/input.html %}
</div>
<div class="meta hide-on-mobiles">
<ul>
{% if site.version %}
<li>
<a href="{{ site.repository }}/releases/tag/v{{ site.version }}">v{{ site.version }}</a>
</li>
{% endif %}
<li>
<a href="{{ site.repository }}"><i class="fa fa-github"></i> GitHub</a>
</li>
</ul>
</div>
</div>
<nav class="mobile-nav show-on-mobiles">
{% include nav_mobile.html %}
</nav>
</header>