-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathheader.html
55 lines (54 loc) · 1.92 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<body>
<style>
.txt h1
{
text-align: center;
font-size: 27px;
font-family:'Lucida Grande', 'Calibri',;
color:white;
}
.type
{
color: #00b7ea;
}
</style>
<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 %}
<div class="txt">
<h1>Write and Post your Blog into :<span class="type"></span></h1>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
var typed2 = new Typed('.type', {
strings: ['Wordpress',
'Blogger',
'SharePoint',
'Typed and more'],
typeSpeed: 100,
backSpeed: 200,
fadeOut: true,
loop: true
});
</script>
</header>
</div>
<!-- Tabbed navigation bar -->
<ul class="nav nav-tabs">
<li id="home" class="active" role="presentation"><a href="/">Home</a></li>
<li id="news" role="presentation"><a href="/news">News</a></li>
<li id="blog" role="presentation"><a href="/blog">Blog</a></li>
<li id="GSoC" role="presentation"><a href="/GSoC">GSoC</a></li>
<li id="tutorials" 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 %}