diff --git a/app/templates/plots.html b/app/templates/plots.html
index 9fbe6bcd9b0187c571d681abfbb2584816161132..df86529a53ad5e5132aa4f3ee116672a53af3aba 100644
--- a/app/templates/plots.html
+++ b/app/templates/plots.html
@@ -13,10 +13,12 @@
         <div class="row">
             {% for plot in row %}
             <div class="col-md-{{ (12/(row|length))|int }} plot-container">
-                <img id="{{ plot }}"
-                     class="plot img-responsive"
-                     src="plots/{{ plot }}.png"
-                     alt="{{ plot }}"/>
+                <a href="plots/{{ plot }}.png">
+                    <img id="{{ plot }}"
+                         class="plot img-responsive"
+                         src="plots/{{ plot }}.png"
+                         alt="{{ plot }}"/>
+                </a>
             </div>
             {% endfor %}
         </div>