diff --git a/templates/project.html b/templates/project.html
index f6bb5498142d1c22d4aa0a436afa030018052269..72d1c8b1e6423784fa172256f5f061afde48a309 100644
--- a/templates/project.html
+++ b/templates/project.html
@@ -24,11 +24,18 @@
           </p>
         </div>
         <div class="column project-theses">
-          <ul>
-            {% for thesis in section.extra.theses %}
-            <li>{{ thesis }}</li>
-            {% endfor %}
-          </ul>
+          {% for thesis in section.extra.theses %}
+          <article class="media">
+            <figure class="media-left">
+              <p class="image is-64x64">
+                <img src="/{{ section.extra.list_icon }}" />
+              </p>
+            </figure>
+            <div class="media-content">
+              <p>{{ thesis }}</p>
+            </div>
+          </article>
+          {% endfor %}
         </div>
       </div>
     </div>