diff --git a/_config.yml b/_config.yml
index da2f9af..c8d74f5 100644
--- a/_config.yml
+++ b/_config.yml
@@ -7,9 +7,11 @@ they have helped us."
baseurl: "/practitioners-guides"
url: "https://scottlogic.github.io"
-sl_url: "https://www.scottlogic.com"
GitHub_url: "https://github.com/ScottLogic/practitioners-guides"
-
+canonical:
+ url: https://www.scottlogic.com/practitioners-guides
+scottlogic:
+ url: https://www.scottlogic.com
markdown: GFM
theme: null
plugins:
@@ -29,6 +31,15 @@ collections:
permalink: /:collection/:path/
sort_by: date
+defaults:
+- scope:
+ path: ''
+ type: posts
+ values:
+ summary: "a quick summary of your post"
+ author: "the name of the author's account"
+ layout: post
+
exclude:
- .sass-cache/
- .jekyll-cache/
diff --git a/_data/authors.yml b/_data/authors.yml
new file mode 100644
index 0000000..409f251
--- /dev/null
+++ b/_data/authors.yml
@@ -0,0 +1,13 @@
+authors:
+ cpratt:
+ name: 'Catherine Pratt'
+ picture: picture.jpg
+ author-summary: "I'm a Delivery Principal at Scott Logic."
+ mcline:
+ name: "Matt Cline"
+ picture: mcline.jpg
+ author-summary: "I am a Lead Developer and Scrum Master at Scott Logic with a keen interest in Agile Software Development and supporting Agile teams. My background is in fullstack development across .NET and Java applications with frontends in React and Angular."
+ abennamane:
+ name: 'Atika Bennamane'
+ picture: abennamane.jpg
+ author-summary: "I'm a Design Principal at Scott Logic."
\ No newline at end of file
diff --git a/_includes/author_summary.html b/_includes/author_summary.html
new file mode 100644
index 0000000..fc02224
--- /dev/null
+++ b/_includes/author_summary.html
@@ -0,0 +1,15 @@
+{% assign author-id = include.author-id %}
+{% assign author = site.data.authors.authors[author-id] %}
+
The Practitioner's Guides are designed to be small practical guides for IT professionals - authored by the team at [Scott Logic](https://www.scottlogic.com/). We draw on our collective experience to tackle topics that we don't feel are addressed elsewhere. Our hope is that these little 'value adds' will help you just as much as they have helped us.
+
+
Topics covered include:
+
+ {% for item in site.pages %}
+
- {{item.title}}
+ {% endfor %}
+
+
The Practitioners Guides site is an ongoing project, where we expect new guides to be published on a somewhat regular basis, watch this space!
+
+
If you're interested in finding out more, or want to get involved, please visit the [GitHub project](https://github.com/ScottLogic/practitioners-guides).