diff --git a/_includes/citation.html b/_includes/citation.html
new file mode 100644
index 0000000..400978d
--- /dev/null
+++ b/_includes/citation.html
@@ -0,0 +1,14 @@
+{% if page.title %}
+
How to cite this page
+
+ {% if page.contributors %}
+ {{ page.contributors | join: ", " }},
+ {% endif %}
+ "
{{ page.title }}".
+ {% if site.url %}
+ {{ site.url }}.
+ {% endif %}
+ {% assign page_url = page.url | absolute_url %}
+
{{ page_url }} (accessed {{ site.time | date: "%d %B, %Y" }}).
+
+{% endif %}
diff --git a/_layouts/page.html b/_layouts/page.html
index c627a07..281806c 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -34,6 +34,9 @@ {{ page.title }}
{%- endif %}
{% include affiliation-tiles-page.html %}
{% include contributor-minitiles-page.html %}
+ {% if page.include_citation %}
+ {% include citation.html %}
+ {% endif %}
{%- if site.theme_variables.github_buttons.position == "bottom" %}