-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added news page to act as a blog feed, homepage becomes instafeed.
Updated avatar.jpg and social.jpg images.
- Loading branch information
Showing
12 changed files
with
103 additions
and
107 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 was deleted.
Oops, something went wrong.
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,16 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<section class="single"> | ||
|
||
<div class="wrap"> | ||
|
||
<h1>{{ page.title }}</h1> | ||
<p class="subtitle">{{ page.subtitle }}</p> | ||
|
||
{{ page.content }} | ||
|
||
</div> | ||
|
||
</section> |
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,12 @@ | ||
--- | ||
title: 'Work in Progress' | ||
date: 2021-08-15 00:00:00 | ||
featured_image: '/images/pittville.jpeg' | ||
excerpt: We're working on a refreshed CheltBMX right now. Check back soon for more updates. | ||
--- | ||
|
||
![](/images/pittville.jpeg) | ||
|
||
## An update | ||
|
||
We're working on a refreshed CheltBMX right now. Check back soon for more updates. |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
--- | ||
layout: default | ||
title: News | ||
description: Simples is a super simple blogging theme for Jekyll. | ||
featured_image: /images/social.jpg | ||
--- | ||
|
||
<section class="listing single"> | ||
|
||
<div class="wrap"> | ||
|
||
{% for news in site.news reversed %} | ||
|
||
<article class="listing-post"> | ||
|
||
<div class="listing-post__header"> | ||
<h2 class="listing-post__title"><a href="{{ news.url | relative_url }}">{{ news.title }}</a></h2> | ||
<p class="listing-post__subtitle">{{ news.subtitle }}</p> | ||
</div> | ||
|
||
{% if news.featured_image %} | ||
<a href="{{ news.url | relative_url }}" class="listing-post__image" style="max-width: 1080px; background-image: url({{ news.featured_image | relative_url }});"></a> | ||
{% endif %} | ||
|
||
<div class="listing-post__content"> | ||
<p>{{ news.excerpt }}</p> | ||
<p><a href="{{ news.url | relative_url }}" class="button">View news</a> | ||
</div> | ||
|
||
</article> | ||
|
||
{% endfor %} | ||
|
||
</div> | ||
|
||
</section> |