diff --git a/templates/_table.twig b/templates/_table.twig
new file mode 100644
index 0000000000000000000000000000000000000000..51ff32cc6a51a1dcee374f2eb7af84a7a0ff55f6
--- /dev/null
+++ b/templates/_table.twig
@@ -0,0 +1,23 @@
+
+<table id="table_with_attributes"  class="attributes" summary="attribute overview">
+
+{% for name, values in items %}
+    <tr class="{{ cycle(['odd', 'even'], loop.index0) }}">
+    {% block namecol %}
+        <td class="attrname">{{ name }}</td>
+    {% endblock %}
+
+        <td class="attrvalue">
+            {% for value in values %}
+                {% if loop.length>1 and loop.first %}<ul>{% endif %}
+                {% if loop.length>1 %}<li>{% endif %}
+
+                {% block value %}{% endblock %}
+
+                {% if loop.length>1 %}</li>{% endif %}
+                {% if loop.length>1 and loop.last %}</ul>{% endif %}
+            {% endfor %}
+        </td>
+    </tr>
+{% endfor %}
+</table><br>
\ No newline at end of file