-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathheader.html
More file actions
35 lines (35 loc) · 1.55 KB
/
header.html
File metadata and controls
35 lines (35 loc) · 1.55 KB
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
34
35
<body>
<div class="main-container">
{% include google_analytics.html %}
<!-- OLW banner and GitHub badge -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/OpenLiveWriter">View on GitHub</a>
<h1 id="project_title"><a href="/"><img src="/images/openlivewriter-purpleheader.png" alt="Open Live Writer"/></a></h1>
{% if page.subtitle %}
<h2 id="project_tagline">{{ page.subtitle }}</h2>
{% endif %}
</header>
</div>
<!-- Tabbed navigation bar -->
<ul class="nav nav-tabs">
<li id="home" class="{% if page.url == '/' %}active{% endif %}" role="presentation">
<a href="/">Home</a>
</li>
<li id="news" class="{% if page.url contains '/news' %}active{% endif %}" role="presentation">
<a href="/news">News</a>
</li>
<li id="blog" class="{% if page.url contains '/blog' %}active{% endif %}" role="presentation">
<a href="/blog">Blog</a>
</li>
<li id="GSoC" class="{% if page.url contains '/GSoC' %}active{% endif %}" role="presentation">
<a href="/GSoC">GSoC</a>
</li>
<li id="tutorials" class="{% if page.url contains '/tutorials' %}active{% endif %}" role="presentation">
<a href="/tutorials">Tutorials</a>
</li>
</ul>
<!-- INCLUDE DOWNLOAD BUTTON IF THE PAGE HAS IT SET IN THE FRONT-MATTER -->
{% if page.download == true %}
{% include download_exe.html %}
{% endif %}