diff --git a/core/modules/field/field.module b/core/modules/field/field.module
index 8157971..d21dbae 100644
--- a/core/modules/field/field.module
+++ b/core/modules/field/field.module
@@ -312,6 +312,7 @@ function field_theme() {
   return array(
     'field' => array(
       'render element' => 'element',
+      'template' => 'field',
     ),
     'field_multiple_value_form' => array(
       'render element' => 'element',
diff --git a/core/themes/stark/templates/field/field.twig b/core/themes/stark/templates/field/field.twig
new file mode 100644
index 0000000..93b8424
--- /dev/null
+++ b/core/themes/stark/templates/field/field.twig
@@ -0,0 +1,30 @@
+{#
+/**
+ * @file
+ * Returns HTML for a field.
+ *
+ * Available variables:
+ *  - label_hidden: A boolean indicating to show or hide the field label.
+ *  - title_attributes: A string containing the attributes for the title.
+ *  - label: The label for the field.
+ *  - content_attributes: A string containing the attributes for the content's div.
+ *  - items: An array of field items.
+ *  - item_attributes: An array of attributes for each item.
+ *  - classes: A string containing the classes for the wrapping div.
+ *
+ * @see template_preprocess_field()
+ * @see template_process_field()
+ * @see theme_field()
+ */
+#}
+<div class="{{ attributes.class }}"{{ attributes }}>
+  {% if not label_hidden %}
+    <div class="field-label"{{ title_attributes }}>{{ label }}:&nbsp;</div>
+  {% endif %}
+  <div class="field-items"{{ content_attributes }}>
+    {% for delta, item in items %}
+      <div class="field-item {{ cycle(["even", "odd"], delta) }}"
+	  {{ item_attributes[delta]}}>{{ render(item) }}</div>
+    {% endfor %}
+  </div>
+</div>
\ No newline at end of file
