diff --git a/program2021/templates/program2021/base.html b/program2021/templates/program2021/base.html
index 3bad8dad11e73384609c20037a3f8d11537c033e..7bca669c699cd0de2918bdf8706bf01429de4807 100644
--- a/program2021/templates/program2021/base.html
+++ b/program2021/templates/program2021/base.html
@@ -1,4 +1,4 @@
-{% load static wagtailcore_tags wagtailmetadata_tags %}
+{% load static wagtailcore_tags wagtailimages_tags wagtailmetadata_tags %}
 <!doctype html>
 <html lang="en">
   <head>
diff --git a/program2021/templates/program2021/program2021_point_page.html b/program2021/templates/program2021/program2021_point_page.html
index e3d9202cc2993ac82f8160b9a403713a080ee927..7bcdfcde26e7cf87f0b1998abf15efed2b74ecbb 100644
--- a/program2021/templates/program2021/program2021_point_page.html
+++ b/program2021/templates/program2021/program2021_point_page.html
@@ -1,5 +1,6 @@
 {% extends "program2021/base.html" %}
-{% load wagtailimages_tags wagtailcore_tags %}
+{% load static wagtailimages_tags wagtailcore_tags %}
+
 {% block content %}
 
 <div class="container">
@@ -92,7 +93,17 @@
       <p>{{ page.sources|richtext }}</p>
     </div>
 
-    <div class="w-100 my-4"></div>
+    {% if page.images %}
+    <div class="row about-images mb-5 mt-3 jumbotron">
+      {% for block in page.images %}
+        {% image block.value width-2000 as img %}
+        {% image block.value fill-300x200 as thumb %}
+        <div class="col-6 col-md-3 mb-4">
+          <a data-fancybox="gallery" href="{{ img.url }}"><img data-src="{{ thumb.url }}" class="lazyload img-fluid" alt="{{ thumb.alt }}"></a>
+        </div><!-- /column -->
+      {% endfor %}
+    </div><!-- /row -->
+    {% endif %}
 
   </div>
 </div>