Skip to content

Commit d825317

Browse files
committed
Merge pull request #72 from hashhar/post-title
Fixes #71 - Title on every post page
2 parents 71334eb + 2dcc66a commit d825317

23 files changed

+86
-71
lines changed
File renamed without changes.

_includes/footer.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
<div style="text-align: right">
2-
<p>Copyright &copy; {{ site.time | date: "%Y" }} <a href="http://dotnetfoundation.org">.NET Foundation</a>.</p>
1+
<div id="footer_wrap" class="outer">
2+
<footer id="footer" class="inner">
3+
<div style="text-align: right">
4+
<p>Copyright &copy; {{ site.time | date: "%Y" }} <a href="http://dotnetfoundation.org">.NET Foundation</a>.</p>
5+
</div>
6+
<!-- DOWNLOAD SOURCE IN THE FOOTER -->
7+
{% include download_source.html %}
8+
</footer>
39
</div>

_includes/header.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<body>
2+
<div class="main-container">
3+
{% include google_analytics.html %}
4+
<!-- OLW banner and GitHub badge -->
5+
<div id="header_wrap" class="outer">
6+
<header class="inner">
7+
<a id="forkme_banner" href="https://github.com/OpenLiveWriter">View on GitHub</a>
8+
<h1 id="project_title"><a href="/"><img src="/images/openlivewriter-purpleheader.png" alt="Open Live Writer"/></a></h1>
9+
{% if page.subtitle %}
10+
<h2 id="project_tagline">{{ page.subtitle }}</h2>
11+
{% endif %}
12+
</header>
13+
</div>
14+
<!-- Tabbed navigation bar -->
15+
<ul class="nav nav-tabs">
16+
<li id="home" class="active" role="presentation"><a href="/">Home</a></li>
17+
<li id="news" role="presentation"><a href="/news">News</a></li>
18+
<li id="blog" role="presentation"><a href="/blog">Blog</a></li>
19+
<li id="GSoC" role="presentation"><a href="/GSoC">GSoC</a></li>
20+
<li id="tutorials" role="presentation"><a href="/tutorials">Tutorials</a></li>
21+
</ul>
22+
<!-- INCLUDE DOWNLOAD BUTTON IF THE PAGE HAS IT SET IN THE FRONT-MATTER -->
23+
{% if page.download == true %}
24+
{% include download_exe.html %}
25+
{% endif %}

_layouts/default.html

Lines changed: 3 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,6 @@
11
{% include head.html %}
2-
<body>
3-
<div class="main-container">
4-
{% include google_analytics.html %}
5-
<!-- OLW banner and GitHub badge -->
6-
<div id="header_wrap" class="outer">
7-
<header class="inner">
8-
<a id="forkme_banner" href="https://github.com/OpenLiveWriter">View on GitHub</a>
9-
<h1 id="project_title"><a href="/"><img src="/images/openlivewriter-purpleheader.png" alt="Open Live Writer"/></a></h1>
10-
{% if page.subtitle %}
11-
<h2 id="project_tagline">{{ page.subtitle }}</h2>
12-
{% endif %}
13-
</header>
14-
</div>
15-
<!-- Tabbed navigation bar -->
16-
<ul class="nav nav-tabs">
17-
<li id="home" class="active" role="presentation"><a href="/">Home</a></li>
18-
<li id="news" role="presentation"><a href="/news">News</a></li>
19-
<li id="blog" role="presentation"><a href="/blog">Blog</a></li>
20-
<li id="GSoC" role="presentation"><a href="/GSoC">GSoC</a></li>
21-
<li id="tutorials" role="presentation"><a href="/tutorials">Tutorials</a></li>
22-
</ul>
23-
<!-- INCLUDE DOWNLOAD BUTTON IF THE PAGE HAS IT SET IN THE FRONT-MATTER -->
24-
{% if page.download == true %}
25-
{% include download.html %}
26-
{% endif %}
2+
<!-- HEADER AND NAVIGATION -->
3+
{% include header.html %}
274
<!-- MAIN CONTENT -->
285
<div id="main_content_wrap" class="outer">
296
<div id="main_content" class="inner">
@@ -32,13 +9,7 @@ <h2 id="project_tagline">{{ page.subtitle }}</h2>
329
</div>
3310
</div>
3411
<!-- FOOTER -->
35-
<div id="footer_wrap" class="outer">
36-
<footer id="footer" class="inner">
37-
{% include footer.html %}
38-
<!-- DOWNLOAD SOURCE IN THE FOOTER -->
39-
{% include download_source.html %}
40-
</footer>
41-
</div>
12+
{% include footer.html %}
4213
<!-- SCRIPTS AND STYLES -->
4314
<script>
4415
// This function manages which navigation tab is currently active

_layouts/post.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<article class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
</header>
9+
10+
<div class="post-content">
11+
{{ content }}
12+
</div>
13+
14+
</article>

_posts/2015-12-09-initial-public-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: 'Initial public release'
44
version: 0.5.0.0
55
categories: [news, release]

_posts/2015-12-17-blogger-v3-api-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: 'Blogger V3 API Support'
44
version: 0.5.1.2
55
categories: [news, release]

_posts/2016-01-16-Contributing-to-Open-Live-Writer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: 'Contributing to Open Live Writer'
44
categories: [blog]
55
date: 2016-01-16 00:00:00 -0800

_posts/2016-02-05-Contributing-to-documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: 'Contributing to Documentation'
44
categories: [blog]
55
date: 2016-02-05 00:00:00 -0800

_posts/2016-02-11-Contributing-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: 'How to contribute by testing'
44
categories: [blog]
55
date: 2016-02-11 00:00:00 -0800

_posts/2016-02-11-GitHub.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: 'Brief overview of GitHub'
44
categories: [blog]
55
date: 2016-02-16 00:00:00 -0800

_posts/2016-02-14-version-0-dot-6-now-available.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
layout: default
3-
title: "Version 0.6 Now Available"
2+
layout: post
3+
title: "Open Live Writer Version 0.6 Is Now Available"
44
date: 2016-02-14 05:22:23 +0530
55
categories: [news, release]
66
author: hashhar
77
download: true
88
---
9-
# Open Live Writer v0.6.0.0 is now available!
109

1110
After about two months since the initial public release the team and community have managed to add features, fix issues and fulfill the demand for some of the more requested features like spell checking (it will only work on Windows 8 and later though) and support for Blogger categories. We hope you enjoy the new features as much as we enjoyed working on them. Read on to learn more about what issues have been fixed and what features have been added.
1211

_posts/2016-02-18-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: 'This is how I test'
44
categories: [blog]
55
date: 2016-02-16 00:00:00 -0800

tutorials/addBlogAccts/blogger.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
layout: default
3-
title: "Open Live Writer"
2+
layout: post
3+
title: "Adding a Google Blogger Blog"
44
download: true
55
---
66

tutorials/addBlogAccts/other.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
layout: default
3-
title: "Open Live Writer"
2+
layout: post
3+
title: "Adding Other Blogs"
44
download: true
55
---
66

tutorials/addBlogAccts/typepad.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
layout: default
3-
title: "Open Live Writer"
2+
layout: post
3+
title: "Adding Typepad Blogs"
44
download: true
55
---
66

tutorials/addBlogAccts/wordpress.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
layout: default
3-
title: "Open Live Writer"
2+
layout: post
3+
title: "Adding Wordpress Blogs"
44
download: true
55
---
66

tutorials/automaticallyUpdate.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
layout: default
3-
title: Automatically Update
2+
layout: post
3+
title: Automatically Update Open Live Writer
44
download: false
55
---
66

tutorials/commandLine.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
layout: default
3-
title: Command Line
2+
layout: post
3+
title: Opening Open Live Writer From The Command Line
44
download: false
55
---
66

@@ -10,7 +10,7 @@
1010
<p>Or you can edit your shortcut properties</p>
1111
<p>In fact, if you look at the default shortcut properties, some tweaking has already been done.
1212
You'll see that an update check is done before OpenLiveWriter is started:<p>
13-
<pre>C:\Users\kathw\AppData\Local\OpenLiveWriter\Update.exe --processStart OpenLiveWriter.exe</pre>
13+
<pre>C:\Users\&lt;username&gt;\AppData\Local\OpenLiveWriter\Update.exe --processStart OpenLiveWriter.exe</pre>
1414
<p>Just add your command line options at the end.</p>
1515
<br>
1616
Note: Not all of the command line options may be available now, but they should be soon.

tutorials/googleblogger.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: "Google Blogger Features"
44
download: false
55
---
@@ -15,4 +15,4 @@
1515
</br>
1616
You can find it by going to http://www.blogger.com, find your blog overview,
1717
click Settings > Language and formatting > Time Zone</p>
18-
18+

tutorials/registryKeys.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
layout: default
3-
title: Registry Keys
2+
layout: post
3+
title: Complete Uninstallation of Open Live Writer
44
download: false
55
---
66

77
<p>Open Live Writer uses several registry keys. For a complete uninstall, you should delete them.
8-
They are located at HKEY_CURRENT_USER\SOFTWARE\OpenLiveWriter\
8+
They are located at <code>HKEY_CURRENT_USER\SOFTWARE\OpenLiveWriter\</code>
99
</p>
1010
<p>There are several keys of special interest:</p>
1111
</br>
12-
<P>HKEY_CURRENT_USER\SOFTWARE\OpenLiveWriter\Updates</br>
13-
For automatically loading the nightly builds - use this carefully as we may be unsuccessfully testing a new feature, create a dword key for CheckForBetaUpdates 1 = beta, 0 = regular</P>
14-
You can turn off automatic updates by turning off AutoUpdate, change the DWord key to 0</p>
12+
<P><code>HKEY_CURRENT_USER\SOFTWARE\OpenLiveWriter\Updates</code></br>
13+
For automatically loading the nightly builds - use this carefully as we may be unsuccessfully testing a new feature, create a dword key for <code>CheckForBetaUpdates</code> 1 = beta, 0 = regular</P>
14+
You can turn off automatic updates by turning off <code>AutoUpdate</code>, change the DWord key to 0</p>
1515
<br>
16-
<p>HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows Live\Writer\Weblogs </br>
17-
Stores the location and information for your weblogs. Many users have copied the entries from LiveWriter rather then reenter them.</p>
16+
<p><code>HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows Live\Writer\Weblogs</code> </br>
17+
Stores the location and information for your weblogs. Many users have copied the entries from LiveWriter rather then reenter them.</p>

tutorials/spellCheck.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: default
2+
layout: post
33
title: Spell Check
44
download: false
55
---
@@ -17,4 +17,4 @@
1717
See <a href=http://windows.microsoft.com/en-us/windows-10/how-to-add-an-input-language-to-your-pc#v1h=tab01>How to add an input language to your PC</a>
1818
</p>
1919
<p>There are additional options which should be self-explanatory</p>
20-
20+

tutorials/watermarkPictures.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
layout: default
3-
title: Watermark Pictures
2+
layout: post
3+
title: Watermarking Pictures
44
download: false
55
---
66

0 commit comments

Comments
 (0)