From 604aa3a25b2ca081e4cf5d96d06dc6e4195beeca Mon Sep 17 00:00:00 2001 From: Matt Stratton Date: Sun, 7 May 2017 18:07:56 -0500 Subject: Add additional fields to hosts Fixes #71 --- README.md | 6 +++++- config.codekit3 | 10 ++++++++++ exampleSite/config.toml | 3 +++ layouts/about/single.html | 13 +++++++++++-- 4 files changed, 29 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 86b6df4..1121d90 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,10 @@ You will need to add a handful of configuration items to your `config.toml` file - `facebook` - Example: `"matt.stratton"` - `twitter` - Example: `mattstratton` - `linkedin` - Example: `"mattstratton"` + - `homepage` - Example: `"https://www.mattstratton.com"` + - `pinterest` - Example: `"mattstratton"` + - `instagram` - Example: `"mattstratton"` + - `youtube` - Example: `"mattstratton"` #### A note about `BaseURL` @@ -142,7 +146,7 @@ Graphical user interface influencer value proposition startup hackathon iPad ana | `podcast_file` | Yes | The filename of your episode, relative to the `media_prefix` of your config.toml. | `"arrested-devops-podcast-episode053.mp3"` | | `podcast_bytes` | No | The length of the podcast file in bytes. This is optional, but iTunes and many other podcast players prefer this to be set. | "23907533" | | `Title` | Yes | The title of the episode. | "Back to School" | -| `youtube` | No | The ID of the YouTube video (not the full URL). Currently unusued. | "8ClZXJsgpHY" +| `youtube` | No | The ID of the YouTube video (not the full URL). Currently unusued. | "8ClZXJsgpHY" ### Guests diff --git a/config.codekit3 b/config.codekit3 index aa0ed49..cf4c187 100644 --- a/config.codekit3 +++ b/config.codekit3 @@ -7535,6 +7535,16 @@ "oAP": "\/exampleSite\/static\/.gitkeep", "oF": 0 }, + "\/exampleSite\/static\/img\/episode\/default-banner.jpg": { + "ft": 16384, + "iS": 116684, + "oA": 0, + "oAP": "\/exampleSite\/static\/img\/episode\/default-banner.jpg", + "oF": 0, + "oIPL": 0, + "opt": 0, + "q": 100 + }, "\/exampleSite\/static\/img\/episode\/default-social.jpg": { "ft": 16384, "iS": 147346, diff --git a/exampleSite/config.toml b/exampleSite/config.toml index bcd58ee..0870c74 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -85,6 +85,9 @@ media_prefix = "https://media.blubrry.com/arresteddevops/content.blubrry.com/arr twitter = "mattstratton" linkedin = "mattstratton" homepage = "https://www.mattstratton.io" + pinterest = "mattstratton" + instagram = "instagram" + youtube = "mattstratton" [params.authors.Trevor] name = "Trevor Hess" thumbnail = "https://www.arresteddevops.com/img/trevor.png" diff --git a/layouts/about/single.html b/layouts/about/single.html index 13c1875..7560ba9 100644 --- a/layouts/about/single.html +++ b/layouts/about/single.html @@ -52,10 +52,19 @@ {{ end }} {{ if isset $p.social "linkedin" }} - + {{ end }} {{ if isset $p.social "facebook" }} - + + {{ end }} + {{ if isset $p.social "pinterest" }} + + {{ end }} + {{ if isset $p.social "instagram" }} + + {{ end }} + {{ if isset $p.social "youtube" }} + {{ end }} -- cgit v1.2.3