-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathdefault.html
More file actions
29 lines (25 loc) · 901 Bytes
/
default.html
File metadata and controls
29 lines (25 loc) · 901 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
{% include head.html %}
<body>
{% include google_analytics.html %}
<!-- HEADER -->
<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>
{% if page.download == true %}
{% include download.html %}
{% endif %}
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<div id="main_content" class="inner">{{ content }}</div>
</div>
<div id="footer_wrap" class="outer">
<footer id="footer" class="inner">{% include footer.html %}</footer>
</div>
</body>
</html>