-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] all posts in sidebar, pull styles into external sheet
- Loading branch information
1 parent
2851fc2
commit 45f245e
Showing
7 changed files
with
187 additions
and
115 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ _site/ | |
.sass-cache/ | ||
.jekyll-cache/ | ||
.jekyll-metadata | ||
.vscode |
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
encoding: utf-8 | ||
baseurl: /catchergames | ||
theme: jekyll-theme-minimal | ||
remote_theme: pages-themes/minimal@v0.2.0 | ||
title: "Catcher Games" | ||
description: "Game development lessons learned and project updates." | ||
author: Holden Rehg | ||
google_analytics: G-19FHKJQ8NE | ||
google_site_verification: i8iGYViNyUMUG8_St0qSAdIYrDcavMZwZpUcBM99HD0 | ||
plugins: | ||
- jekyll-remote-theme | ||
- jekyll-feed |
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,33 +1,46 @@ | ||
<header> | ||
<h1><a | ||
href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a> | ||
</h1> | ||
<h1> | ||
<a href="{{ "/" | absolute_url }}"> | ||
{{ site.title | default: site.github.repository_name }} | ||
</a> | ||
</h1> | ||
|
||
{% if site.logo %} | ||
<img src="{{site.logo | relative_url}}" | ||
alt="Logo" /> | ||
{% endif %} | ||
{% if site.logo %} | ||
<img | ||
src="{{site.logo | relative_url}}" | ||
alt="Logo"/> | ||
{% endif %} | ||
|
||
<p>{{ site.description | default: site.github.project_tagline }}</p> | ||
<p>{{ site.description | default: site.github.project_tagline }}</p> | ||
|
||
{% if site.github.is_project_page %} | ||
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on | ||
GitHub <small>{{ site.github.repository_nwo }}</small></a></p> | ||
{% endif %} | ||
{% if site.github.is_project_page %} | ||
<p class="view"> | ||
<a href="{{ site.github.repository_url }}"> | ||
View the Project on GitHub <small>{{ site.github.repository_nwo }}</small> | ||
</a> | ||
</p> | ||
{% endif %} | ||
|
||
{% if site.github.is_user_page %} | ||
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub | ||
Profile</a></p> | ||
{% endif %} | ||
{% if site.github.is_user_page %} | ||
<p class="view"> | ||
<a href="{{ site.github.owner_url }}">View My GitHub Profile</a> | ||
</p> | ||
{% endif %} | ||
|
||
{% if site.show_downloads %} | ||
<ul class="downloads"> | ||
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP | ||
File</strong></a></li> | ||
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR | ||
Ball</strong></a></li> | ||
<li><a href="{{ site.github.repository_url }}">View On | ||
<strong>GitHub</strong></a></li> | ||
</ul> | ||
{% endif %} | ||
{% if site.show_downloads %} | ||
<ul class="downloads"> | ||
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> | ||
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li> | ||
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li> | ||
</ul> | ||
{% endif %} | ||
|
||
<div> | ||
<p>All posts:</p> | ||
<ul class="posts"> | ||
{% for post in site.posts %} | ||
<li>{{ post.date | date_to_string }}: <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</header> |
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
Oops, something went wrong.