Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Stratton <matt.stratton@gmail.com>2017-05-08 02:07:56 +0300
committerMatt Stratton <matt.stratton@gmail.com>2017-05-08 02:07:56 +0300
commit604aa3a25b2ca081e4cf5d96d06dc6e4195beeca (patch)
tree3a843b8a0c61e1a761bde4b6756aaead4cfd15fb
parent1b7c71970b25858b46cd245b3eb2f85fcac45020 (diff)
Add additional fields to hosts
Fixes #71
-rw-r--r--README.md6
-rw-r--r--config.codekit310
-rw-r--r--exampleSite/config.toml3
-rw-r--r--layouts/about/single.html13
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 @@
<a href = "https://github.com/{{ $p.social.github}}"><i class="fa fa-github-square fa-2x"></i></a>
{{ end }}
{{ if isset $p.social "linkedin" }}
- <a href = "{{ $p.social.linkedin}}"><i class="fa fa-linkedin-square fa-2x"></i></a>
+ <a href = "https://www.linkedin.com/in/{{ $p.social.linkedin}}"><i class="fa fa-linkedin-square fa-2x"></i></a>
{{ end }}
{{ if isset $p.social "facebook" }}
- <a href = "{{ $p.social.facebook}}"><i class="fa fa-facebook-square fa-2x"></i></a>
+ <a href = "https://www.facebook.com/{{ $p.social.facebook}}"><i class="fa fa-facebook-square fa-2x"></i></a>
+ {{ end }}
+ {{ if isset $p.social "pinterest" }}
+ <a href = "https://www.pinterest.com/{{ $p.social.pinterest}}"><i class="fa fa-pinterest-square fa-2x"></i></a>
+ {{ end }}
+ {{ if isset $p.social "instagram" }}
+ <a href = "https://www.instagram.com/{{ $p.social.instagram}}"><i class="fa fa-instagram-square fa-2x"></i></a>
+ {{ end }}
+ {{ if isset $p.social "youtube" }}
+ <a href = "https://www.youtube.com/{{ $p.social.youtube}}"><i class="fa fa-youtube-square fa-2x"></i></a>
{{ end }}
</div>
</div>