make examples more discoverable, add links alongside documentation
diff --git a/src/_includes/artemis_release.md b/src/_includes/artemis_release.md
index 63caa4c..138468d 100644
--- a/src/_includes/artemis_release.md
+++ b/src/_includes/artemis_release.md
@@ -4,7 +4,7 @@
   {% assign docs_version = "latest" %}
 {% endif %}
 #### ActiveMQ Artemis {{include.release.version}}  ({{include.release.release_date | date_to_string: "ordinal", "US"}})
-[Release Notes](release-notes-{{include.release.version}}) | [Git Report](commit-report-{{include.release.version}}) | [Documentation:](../documentation/{{docs_version}}) [HTML](../documentation/{{docs_version}}) / [PDF](../documentation/{{docs_version}}/book.pdf) | Java compatibility: **{{java_version}}**
+[Release Notes](release-notes-{{include.release.version}}) | [Git Report](commit-report-{{include.release.version}}) | [Documentation:](../documentation/{{docs_version}}) [HTML](../documentation/{{docs_version}}) / [PDF](../documentation/{{docs_version}}/book.pdf) |{% if include.examples_link %} [Examples](https://github.com/apache/activemq-artemis-examples/) |{% endif %} Java compatibility: **{{java_version}}**
 
 {% if include.is_current_release %}
 tar.gz:|[apache-artemis-{{include.release.version}}-bin.tar.gz](https://www.apache.org/dyn/closer.cgi?filename=activemq/activemq-artemis/{{include.release.version}}/apache-artemis-{{include.release.version}}-bin.tar.gz&action=download)|[SHA512](https://downloads.apache.org/activemq/activemq-artemis/{{include.release.version}}/apache-artemis-{{include.release.version}}-bin.tar.gz.sha512)|[GPG Signature](https://downloads.apache.org/activemq/activemq-artemis/{{include.release.version}}/apache-artemis-{{include.release.version}}-bin.tar.gz.asc)
diff --git a/src/components/artemis/documentation/docs.md b/src/components/artemis/documentation/docs.md
index b82ae5e..7ebdf7a 100644
--- a/src/components/artemis/documentation/docs.md
+++ b/src/components/artemis/documentation/docs.md
@@ -12,6 +12,10 @@
 
 The user documentation for earlier versions are also available on the <a href="../download/past_releases" target="_parent">past releases</a> page.
 
+#### Examples:
+
+Examples can be found in the <a href="https://github.com/apache/activemq-artemis-examples/" target="_parent">ActiveMQ Artemis Examples</a> repository.
+
 #### API
 
 *   [HTML](javadocs/javadoc-latest)
diff --git a/src/components/artemis/download/index.md b/src/components/artemis/download/index.md
index e97f7fd..e5682df 100644
--- a/src/components/artemis/download/index.md
+++ b/src/components/artemis/download/index.md
@@ -15,7 +15,7 @@
 {% for current_release_prefix in site.data.current_releases["artemis"] %}
     {% for release in reversed_releases %}
         {% if release.version contains current_release_prefix %}
-            {% include artemis_release.md release=release is_current_release=true latest_docs=latest_docs %}
+            {% include artemis_release.md release=release is_current_release=true examples_link=true latest_docs=latest_docs %}
             {% assign latest_docs = false %}
             {% break %}
         {% endif %}