More updates to stop using dev or alpha or beta versions.
[yaffs-website] / web / core / modules / statistics / tests / themes / statistics_test_attached / node.html.twig
1 <article{{ attributes }}>
2
3   {{ title_prefix }}
4   {% if not page %}
5     <h2{{ title_attributes }}>
6       <a href="{{ url }}" rel="bookmark">{{ label }}</a>
7     </h2>
8   {% endif %}
9   {{ title_suffix }}
10
11   {% if display_submitted %}
12     <footer>
13       {{ author_picture }}
14       <div{{ author_attributes }}>
15         {% trans %}Submitted by {{ author_name }} on {{ date }}{% endtrans %}
16         {{ metadata }}
17       </div>
18     </footer>
19   {% endif %}
20
21   <div{{ content_attributes }}>
22     {{ content.body }}
23   </div>
24 </article>