Skip to content

Commit 67d2ca2

Browse files
committed
Add feeds by tag
Primary for feed/by_tag/postgresql.xml to submit to Planet PostgreSQL
1 parent f8a9645 commit 67d2ca2

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

.git-blame-ignore-revs

Whitespace-only changes.

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ group :jekyll_plugins do
77
gem 'jekyll-paginate'
88
gem 'jekyll-seo-tag'
99
gem 'jekyll-sitemap'
10+
gem 'jekyll-feed'
1011
end

Gemfile.lock

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ GEM
2929
rouge (~> 3.0)
3030
safe_yaml (~> 1.0)
3131
terminal-table (~> 2.0)
32+
jekyll-feed (0.17.0)
33+
jekyll (>= 3.7, < 5.0)
3234
jekyll-paginate (1.1.0)
3335
jekyll-sass-converter (2.2.0)
3436
sassc (> 2.0.1, < 3.0)
@@ -68,6 +70,7 @@ PLATFORMS
6870

6971
DEPENDENCIES
7072
jekyll
73+
jekyll-feed
7174
jekyll-paginate
7275
jekyll-seo-tag
7376
jekyll-sitemap

_config.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ exclude: [config.ru, Gemfile, Gemfile.lock, Procfile, Rakefile, README.md, vendo
33
# Site setings
44
name: 'Andrew Atkinson'
55
description: 'Software Engineer'
6-
meta_description: 'Personal site for Andrew Atkinson covering software engineering, Ruby on Rails, PostgreSQL, Elasticsearch, Kubernetes, Vim and more'
6+
meta_description: 'Personal blog Andrew Atkinson. PostgreSQL. Ruby on Rails, Elasticsearch, Kubernetes, Vim'
77
logo:
88
# Author image is used in site sidebar and greetings in the home page hero text
99
author:
@@ -70,6 +70,7 @@ plugins:
7070
- jekyll-paginate
7171
- jekyll-seo-tag
7272
- jekyll-sitemap
73+
- jekyll-feed
7374

7475
# Pagination
7576
paginate: 10
@@ -89,3 +90,6 @@ sass:
8990
# disable Rouge https://mycyberuniverse.com/disable-rouge-syntax-highlighter.html
9091
# https://jordanknott.com/blog/2017-04-6-better-jekyll-syntax-highlighting-with-prism/
9192
highlighter: none
93+
94+
feed:
95+
tags: true

0 commit comments

Comments
 (0)