Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / profiles / demo_umami / themes / umami / templates / content / node--article--full.html.twig
index 69b3a7c3d2a9095eb7d9c9da479a0260fa2870ea..70b897dc92213a4bca03b6254390f9c1a11010ce 100644 (file)
       <h1 class="page-title">
         {{ label }}
       </h1>
-      {% if display_submitted %}
-      <div{{ author_attributes.addClass('node__submitted') }}>
-        {% trans %}<span class="by-author">by {{ author_name }}</span> {{ created_date }}{% endtrans %}
-        {{ metadata }}
-      </div>
-      {% endif %}
-      {{ content.field_tags }}
     </header>
   {{ title_suffix }}
 
+  {% if display_submitted %}
+  <footer class="node__meta">
+    <div{{ author_attributes.addClass('node__submitted') }}>
+      {% trans %}<span class="by-author">by {{ author_name }}</span> {{ created_date }}{% endtrans %}
+      {{ metadata }}
+    </div>
+  </footer>
+  {% endif %}
+
   <div{{ content_attributes.addClass('node__content') }}>
-    {{ content|without('field_tags') }}
+    {{ content }}
   </div>
 
 </article>