diff --git a/README.md b/README.md
index 094d7986..85176eb5 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,13 @@ It's 100% Open Source and licensed under the [APACHE2](LICENSE).
+## Screenshots
+
+
+![demo](https://cdn.rawgit.com/cloudposse/build-harness/master/docs/demo.svg)
+*Example of using the `build-harness` to build a docker image*
+
+
## Usage
At the top of your `Makefile` add, the following...
@@ -144,6 +151,15 @@ Check out these related projects.
- [Dev Harness](https://github.com/cloudposse/dev) - Cloud Posse Local Development Harness
+
+
+## References
+
+For additional context, refer to some of these links.
+
+- [Wikipedia - Test Harness](https://en.wikipedia.org/wiki/Test_harness) - The `build-harness` is similar in concept to a "Test Harness"
+
+
## Help
**Got a question?**
@@ -191,9 +207,14 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
**NOTE:** Be sure to merge the latest changes from "upstream" before making a pull request!
-## Copyright
-Copyright © 2017-2018 [Cloud Posse, LLC](https://cloudposse.com)
+
+## Copyrights
+
+Copyright © 2016-2018 [Cloud Posse, LLC](https://cloudposse.com)
+
+
+
## License
diff --git a/README.yaml b/README.yaml
index 4e08cb49..10eb504b 100644
--- a/README.yaml
+++ b/README.yaml
@@ -13,6 +13,12 @@ name: Build Harness
# License of this project
license: "APACHE2"
+# Copyrights
+copyrights:
+ - name: "Cloud Posse, LLC"
+ url: "https://cloudposse.com"
+ year: "2016"
+
# Canonical GitHub repo
github_repo: cloudposse/build-harness
@@ -35,6 +41,18 @@ related:
- name: "Dev Harness"
description: "Cloud Posse Local Development Harness"
url: "https://github.com/cloudposse/dev"
+
+# References
+references:
+ - name: "Wikipedia - Test Harness"
+ description: 'The `build-harness` is similar in concept to a "Test Harness"'
+ url: "https://en.wikipedia.org/wiki/Test_harness"
+
+# Screenshots
+screenshots:
+ - name: "demo"
+ description: "Example of using the `build-harness` to build a docker image"
+ url: "https://cdn.rawgit.com/cloudposse/build-harness/master/docs/demo.svg"
# Short description of this project
description: |-
diff --git a/docs/demo.svg b/docs/demo.svg
new file mode 100644
index 00000000..510388ee
--- /dev/null
+++ b/docs/demo.svg
@@ -0,0 +1,5 @@
+
+
\ No newline at end of file
diff --git a/templates/README.md b/templates/README.md
index d6eced98..313256c3 100644
--- a/templates/README.md
+++ b/templates/README.md
@@ -22,9 +22,15 @@ It's 100% Open Source and licensed under the [APACHE2](LICENSE).
{{ if eq (ds "config").license "CC-BY-NC-SA-4.0" }}
It's 100% Open Source and licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](LICENSE).
-
+
{{ end }}
+{{ if has (ds "config") "screenshots" }}
+## Screenshots
+
+{{ range $screenshot := (ds "config").screenshots }}
+{{ printf "![%s](%s)\n*%s*" $screenshot.name $screenshot.url $screenshot.description }}{{ end }}
+{{ end }}
{{ if has (ds "config") "usage" }}
## Usage
@@ -56,6 +62,15 @@ Check out these related projects.
{{ range $related := (ds "config").related }}
{{ printf "- [%s](%s) - %s" $related.name $related.url $related.description }}{{ end }}
+{{ end}}
+{{ if has (ds "config") "references" }}
+
+## References
+
+For additional context, refer to some of these links.
+{{ range $reference := (ds "config").references }}
+{{ printf "- [%s](%s) - %s" $reference.name $reference.url $reference.description }}{{ end }}
+
{{ end}}
## Help
@@ -104,9 +119,18 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
**NOTE:** Be sure to merge the latest changes from "upstream" before making a pull request!
+{{ if has (ds "config") "copyrights" }}
+
+## Copyrights
+
+{{ range $copyright := (ds "config").copyrights -}}
+{{ printf "Copyright © %s-%d [%s](%s)\n" $copyright.year time.Now.Year $copyright.name $copyright.url }}
+{{ end }}
+{{ else }}
## Copyright
Copyright © 2017-{{ time.Now.Year }} [Cloud Posse, LLC](https://cloudposse.com)
+{{ end}}
{{ if eq (ds "config").license "APACHE2" }}
## License
@@ -139,7 +163,7 @@ See [LICENSE](LICENSE) for full details.
-This material may only be distributed subject to the terms and conditions set forth in the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License or later with the restrictions noted below (the latest version of the license is presently available at ).
+This material may only be distributed subject to the terms and conditions set forth in the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License or later with the restrictions noted below (the latest version of the license is presently available at ).
**Attribution** You must attribute the work in the manner specified by the author or licensor.