diff --git a/README.md b/README.md index 7362e2d..9884e4b 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,18 @@ More details about each of these overrides are below in the [overrides](#overrid **Recommendation:** Add a `layouts/partials/bio.html` file to your site that tells your readers about you. +#### Creating a Link Post + +Sometimes you want a post that just links to another website. This can be done by including the `externalurl` parameter on your individual post. For example, on a post talking about some kickstarter project, you can add this to your individual post's Front Matter: + +``` +externalurl = "http://kickstarter.com" +``` + +These posts are rendered slightly different with an → to signify that it is remote. + +![External URL](_meta/linkpost.png) + ### Variables | Variable | What value? | Required | diff --git a/_meta/linkpost.png b/_meta/linkpost.png new file mode 100644 index 0000000..f33ab19 Binary files /dev/null and b/_meta/linkpost.png differ