Skip to content

Commit 9bfdc2d

Browse files
committed
🚀 Release 1.1.0.
1 parent d89825a commit 9bfdc2d

File tree

10 files changed

+43
-38
lines changed

10 files changed

+43
-38
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,18 @@ version released to date for the Jekyll Heroku Starter Kit.
1616
- Configured and added the settings for `@jekyll-seo-tag` to `index.md`
1717
- Configured and added the settings for `@jekyll-sitemap` to `index.md`
1818
- Defined collections for use in `_config.yml`
19+
- Added customised `sitemap.xml` and a `sitemap.xsl` template file.
20+
- Added customised `feed.xml` and a `feed.xslt.xml` template file.
21+
- New `humans.md` file that outputs a file to
22+
`http://yourdomain.com/robots.txt`.
1923
- [#enhancement](#enhancement)
2024
- Updated `README.md` and `index.md`.
2125
- Various enhancements with `static.json` edits.
2226
- Major enhancement to the `Procfile`.
27+
- [#bugfix](#bugfix)
28+
- Fixed a build bug with the Gem dependencies.
29+
- Update `_config.yml` by removing a duplicate `logo` key.
30+
- Fixed bug where neither `sitemap.xml` nor `feed.xml` were rendering.
2331

2432
## Version 1.0.1 (26/05/2018)
2533

Gemfile.lock

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ GEM
55
public_suffix (>= 2.0.2, < 4.0)
66
colorator (1.1.0)
77
concurrent-ruby (1.0.5)
8-
dalli (2.7.8)
98
em-websocket (0.5.1)
109
eventmachine (>= 0.12.9)
1110
http_parser.rb (~> 0.6.0)
@@ -50,22 +49,18 @@ GEM
5049
jekyll-seo-tag (~> 2.0)
5150
jekyll-watch (2.0.0)
5251
listen (~> 3.0)
53-
kgio (2.11.2)
5452
kramdown (1.16.2)
5553
liquid (4.0.0)
5654
listen (3.1.5)
5755
rb-fsevent (~> 0.9, >= 0.9.4)
5856
rb-inotify (~> 0.9, >= 0.9.7)
5957
ruby_dep (~> 1.2)
60-
memcachier (0.0.2)
6158
mercenary (0.3.6)
6259
pathutil (0.16.1)
6360
forwardable-extended (~> 2.6)
6461
posix-spawn (0.3.13)
6562
public_suffix (3.0.2)
6663
rack (1.6.10)
67-
rack-cache (1.7.2)
68-
rack (>= 0.4)
6964
rack-jekyll (0.5.0)
7065
jekyll (>= 1.3)
7166
listen (>= 1.3)
@@ -88,7 +83,6 @@ PLATFORMS
8883

8984
DEPENDENCIES
9085
bundler (= 1.16.1)
91-
dalli
9286
jekyll
9387
jekyll-feed
9488
jekyll-include-cache
@@ -98,9 +92,6 @@ DEPENDENCIES
9892
jekyll-seo-tag
9993
jekyll-sitemap
10094
jekyll-theme-minimal
101-
kgio
102-
memcachier
103-
rack-cache
10495
rack-jekyll
10596
rake
10697

_config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ facebook:
6262
app_id: 1234
6363
publisher: 1234
6464
admins: 1234
65-
# URL to a site-wide logo. Need this field for publisher meta-tag.
66-
logo: /assets/your-company-logo.png
6765
# Links to other social profiles or websites that relate to you.
6866
social:
6967
name: Justin Hartman

_layouts/atom.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ content }}

_layouts/default.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<meta charset="UTF-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
8-
{% seo %}
9-
<!-- Adding Feed Metadata from @jekyll-feed -->
10-
{% feed_meta %}
7+
<!-- Adding SEO meta-tags from @jekyll-seo-tag -->
8+
{% seo -%}
9+
<!-- Adding Feed Metadata from @jekyll-feed -->
10+
{% feed_meta %}
1111
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
1212
<!--[if lt IE 9]>
1313
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>

feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: blank
2+
layout: atom
33
permalink: /feed.xml
44
sitemap:
55
changefreq: weekly

humans.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
permalink: "/humans.txt"
3+
layout: blank
4+
sitemap:
5+
changefreq: monthly
6+
priority: 0.5
7+
---
8+
/* TEAM */
9+
Chef: Justin Hartman
10+
Email: justin [@] 22digital.co.za
11+
Web: http://justin.hartman.me
12+
Twitter: @justinhartman
13+
Facebook: https://fb.me/justin.hartman.me
14+
From: Cape Town, South Africa
15+
16+
/* THANKS */
17+
Jekyll: https://jekyllrb.com
18+
19+
20+
/* SITE */
21+
Last update: {{ site.time }}
22+
Revision: {{ site.github.build_revision }}
23+
Language: English
24+
Doctype: HTML5
25+
IDE: Visual Studio Code, Sublime Text 3, Github Pages, Jekyll, Github,
26+
iTerm2, Firefox Developer Edition.

index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
22
layout: default
3+
published: true
34
# Settings for @jekyll-seo-tag
45
title: Jekyll Heroku Starter Kit
56
description: "This project will setup a minimum boilerplate template for running a Jekyll site on Heroku."
67
image: /assets/post-pic.jpg
78
author: justinhartman
89
lang: en_ZA
910
# Settings for @jekyll-sitemap
11+
# sitemap: false # Set to false if you want to prevent the post from appearing.
1012
sitemap:
1113
changefreq: weekly
1214
priority: 1.0

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: blank
2+
layout: atom
33
permalink: /sitemap.xml
44
sitemap:
55
changefreq: weekly

static.json

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,5 @@
44
"root": "_site/",
55
"routes": {
66
"/**": "index.html"
7-
},
8-
"headers": {
9-
"/**": {
10-
"Cache-Control": "private, no-store, no-cache, must-revalidate, proxy-revalidate",
11-
"Pragma": "no-cache",
12-
"Expires": "Sat, 05 Nov 1955 00:00:00 PST",
13-
"Strict-Transport-Security": "max-age=86400; includeSubDomains;",
14-
"X-Download-Options": "noopen",
15-
"X-Content-Type-Options": "nosniff",
16-
"X-Frame-Options": "SAMEORIGIN",
17-
"X-XSS-Protection": "1; mode=block"
18-
},
19-
"/assets/**": {
20-
"Cache-Control": "public, max-age=512000"
21-
},
22-
"/robots.txt": {
23-
"Cache-Control": "public, max-age=512000"
24-
},
25-
"/crossdomain.xml": {
26-
"Cache-Control": "public, max-age=512000"
27-
}
287
}
298
}

0 commit comments

Comments
 (0)