You are here

node.html.twig in Show title 8

<article{{ attributes }}>
  {% if display_submitted %}
    <footer>
      {{ author_picture }}
      <div{{ author_attributes }}>
        {% trans %}Submitted by {{ author_name }} on {{ date }}{% endtrans %}
        {{ metadata }}
      </div>
    </footer>
  {% endif %}

  <div{{ content_attributes }}>
    {{ content }}
  </div>
</article>

File

templates/stable/node.html.twig
View source
  1. <article{{ attributes }}>
  2. {% if display_submitted %}
  3. <footer>
  4. {{ author_picture }}
  5. <div{{ author_attributes }}>
  6. {% trans %}Submitted by {{ author_name }} on {{ date }}{% endtrans %}
  7. {{ metadata }}
  8. </div>
  9. </footer>
  10. {% endif %}
  11. <div{{ content_attributes }}>
  12. {{ content }}
  13. </div>
  14. </article>