diff --git a/_includes/categoryList.html b/_includes/categoryList.html
index 8464c64..1ed66c0 100644
--- a/_includes/categoryList.html
+++ b/_includes/categoryList.html
@@ -1,4 +1,4 @@
-
+
{% for post in site.posts %}
{% assign category = post.category %}
{% if category == page.title %}
diff --git a/_includes/openringTemplate.html b/_includes/openringTemplate.html
new file mode 100644
index 0000000..edc2638
--- /dev/null
+++ b/_includes/openringTemplate.html
@@ -0,0 +1,50 @@
+
+
+ Articles from blogs I follow around the net
+
+ {{range .Articles}}
+
+
+
{{.Summary}}
+
+ via {{.SourceTitle}}
+
+
{{.Date | datef "January 2, 2006"}}
+
+ {{end}}
+
+
+ Generated by
+ openring
+
+
+
diff --git a/_includes/postFooter.html b/_includes/postFooter.html
index 93116e3..865f429 100644
--- a/_includes/postFooter.html
+++ b/_includes/postFooter.html
@@ -1,4 +1,5 @@
Issues or comments?
Email me!
+{% include openring.html %}
diff --git a/assets/css/default.css b/assets/css/default.css
index fa9a7a4..9e8e69a 100644
--- a/assets/css/default.css
+++ b/assets/css/default.css
@@ -22,7 +22,7 @@ code {
div.container {
margin: 0 auto;
- zoom: 1.5;
+ zoom: 1.4;
}
div.content {
@@ -41,7 +41,7 @@ div.content {
}
div.container {
margin: 0 auto;
- zoom: 1.4
+ zoom: 1.3
}
}
@@ -67,7 +67,7 @@ div.content {
}
div.container {
margin: 0 auto;
- zoom: 1.0
+ zoom: 1.1
}
}
@@ -132,10 +132,15 @@ span.growshrink {
}
}
-p {
+body {
font-size: 14px
}
h1 {
font-size: 24px
}
+
+hr {
+ color: #32302F;
+ border-color: #32302F
+}
diff --git a/projects.html b/projects.html
index 41e33f6..093f611 100644
--- a/projects.html
+++ b/projects.html
@@ -4,7 +4,7 @@ title: projects
---
{% include pageTitle.html %}
-
+
tictoc / Fast, simple and accurate Python timing. Written in Rust.
year-progress / A fun side project which gives the progress through the year, relative to other things.
diff --git a/serve.sh b/serve.sh
new file mode 100644
index 0000000..3610795
--- /dev/null
+++ b/serve.sh
@@ -0,0 +1,12 @@
+openring \
+ -s https://andyconlin.com/feed/ \
+ -s https://digitalflapjack.com/blog/index.xml \
+ -s https://gpanders.com/index.xml \
+ -s https://luke.hsiao.dev/atom.xml \
+ -s https://wickstrom.tech/feed.xml \
+ -s https://paulcapewell.com/feed/ \
+ -s https://www.splitbrain.org/feed/blog \
+ -s https://lilysthings.org/blog/rss.xml \
+ < _includes/openringTemplate.html \
+ > _includes/openring.html
+bundle exec jekyll serve