-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
145 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{% include assign.html %} | ||
<!DOCTYPE html> | ||
<html lang="{{ site.lang | default: "en-US" }}"> | ||
{% include head.html %} | ||
<body> | ||
<div id="headerDefault"> | ||
{% include header.html %} | ||
</div> | ||
<div id="content"> | ||
{% include breadcrumbs.html %} | ||
<div id="contentInner"> | ||
{% if page.title != nil %} | ||
<h1>{{ page.title }}</h1> | ||
{% endif %} | ||
{% if page.lead != nil %} | ||
<p class="lead">{{ page.lead }}</p> | ||
{% endif %} | ||
<div class="blocks"> | ||
{% for post in site.posts %} | ||
<div class="block newsblock"> | ||
<a href="{{ post.url }}"> | ||
{% if post.image != nil %} | ||
<img class="blogImage" src="{{ post.image }}"> | ||
{% endif %} | ||
<h2>{{ post.title }}</h2> | ||
</a> | ||
<p class="center">{{ post.date | date: "%-d %B %Y" }}<br><span class="category"><a href="{{ site.url }}/{{ post.categories}}">{{ post.categories }}</a></span></p> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> | ||
<div id="footer"> | ||
{% include footer.html %} | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{% include assign.html %} | ||
<!DOCTYPE html> | ||
<html lang="{{ site.lang | default: "en-US" }}"> | ||
{% include head.html %} | ||
<body> | ||
<div id="headerDefault"> | ||
{% include header.html %} | ||
</div> | ||
<div id="content"> | ||
<div id="contentInner"> | ||
{% if page.title != nil %} | ||
<h1>{{ page.title }}</h1> | ||
{% endif %} | ||
{% if page.lead != nil %} | ||
<p class="lead">{{ page.lead }}</p> | ||
{% endif %} | ||
<div class="blocks"> | ||
{% for post in site.categories.quicktips reversed %} | ||
<div class="block newsblock"> | ||
<a href="{{ post.url }}"> | ||
{% if post.image != nil %} | ||
<img class="blogImage" src="{{ post.image }}"> | ||
{% endif %} | ||
<h2>{{ post.title }}</h2> | ||
</a> | ||
<p class="center">{{ post.date | date: "%-d %B %Y" }}<br><span class="category"><a href="{{ site.url }}/{{ post.categories}}">{{ post.categories }}</a></span></p> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> | ||
<div id="footer"> | ||
{% include footer.html %} | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{% include assign.html %} | ||
<!DOCTYPE html> | ||
<html lang="{{ site.lang | default: "en-US" }}"> | ||
{% include head.html %} | ||
<body> | ||
<div id="headerDefault"> | ||
{% include header.html %} | ||
</div> | ||
<div id="content"> | ||
{% include breadcrumbs.html %} | ||
<div id="contentInner"> | ||
{% if page.title != nil %} | ||
<h1>{{ page.title }}</h1> | ||
{% endif %} | ||
{% if page.lead != nil %} | ||
<p class="lead">{{ page.lead }}</p> | ||
{% endif %} | ||
<div class="blocks"> | ||
{% for post in site.categories.releases %} | ||
<div class="block newsblock"> | ||
<a href="{{ post.url }}"> | ||
{% if post.image != nil %} | ||
<img class="blogImage" src="{{ post.image }}"> | ||
{% endif %} | ||
<h2>{{ post.title }}</h2> | ||
</a> | ||
<p class="center">{{ post.date | date: "%-d %B %Y" }}<br><span class="category"><a href="{{ site.url }}/{{ post.categories}}">{{ post.categories }}</a></span></p> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> | ||
<div id="footer"> | ||
{% include footer.html %} | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: "News and Releases" | ||
layout: post | ||
title: "News/Blog" | ||
layout: news | ||
permalink: news/ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "Quick Tips" | ||
layout: quicktips | ||
permalink: quicktips/ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "Releases" | ||
layout: releases | ||
permalink: releases/ | ||
--- |