forked from palantir/tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.html
25 lines (23 loc) · 1.04 KB
/
header.html
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
<header class="header">
<section class="site-header">
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
<nav class="site-nav">
<a class="page-link" href="{{site.baseurl}}/usage/cli">Usage</a>
<a class="page-link" href="{{site.baseurl}}/rules">Rules</a>
<a class="page-link" href="{{site.baseurl}}/formatters">Formatters</a>
<a class="page-link" href="{{site.baseurl}}/develop/custom-rules">Develop</a>
<a class="page-link" href="{{site.baseurl}}/news">News</a>
</nav>
</section>
{% if page.title == site.title %}
<section class="page-header">
<h1 class="project-name">{{page.title}}</h1>
{% if page.subtitle %}
<h2 class="project-tagline">{{page.subtitle}}</h2>
{% endif %}
<a href="https://github.com/palantir/tslint" class="btn">View on GitHub</a>
<a href="{{site.baseurl}}/usage/cli" class="btn">Learn More</a>
<a href="https://github.com/palantir/tslint/tarball/master" class="btn">Download .tar.gz</a>
</section>
{% endif %}
</header>