diff --git a/MANIFEST.in b/MANIFEST.in
index bed5aeb..065eb5f 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,2 +1,3 @@
recursive-include wagtailterms/migrations *
-recursive-include wagtailterms/static *
\ No newline at end of file
+recursive-include wagtailterms/static *
+recursive-include wagtailterms/templates *
diff --git a/README.md b/README.md
index 9d788c9..62af2a3 100644
--- a/README.md
+++ b/README.md
@@ -102,8 +102,18 @@ Rendered HTML of the term in the frontend:
```html
term 1
```
+ℹ️ Above is the default style but this can be modified in the settings.
-The most basic implementation: ([See full example](./example/home/templates/home/basic_page.html))
+#### Quick implementation: ([See full example](./example/home/templates/home/quick_start.html))
+
+Include in the template at the bottom of the page template.
+```html
+...
+{% include 'wagtailterms/wagtailterms.html' %}
+```
+ℹ️ This loads the advanced implementation in page template.
+
+#### The most basic implementation: ([See full example](./example/home/templates/home/basic_page.html))
```javascript
function showterm(e){
const termid = e.target.dataset.term
@@ -129,7 +139,7 @@ On hover
{% trans 'Please feel free to join our community on Slack, or get started with one of the links below.' %}
-