18 lines
368 B
Twig
18 lines
368 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Theme implementation to display a node.
|
|
*/
|
|
#}
|
|
<article{{ attributes.addClass('node-article') }}>
|
|
{% if not label is empty and not page %}
|
|
<h2{{ title_attributes }}>
|
|
<a href="{{ url }}" rel="bookmark">{{ label }}</a>
|
|
</h2>
|
|
{% endif %}
|
|
|
|
<div{{ content_attributes.addClass('node-content') }}>
|
|
{{ content }}
|
|
</div>
|
|
</article>
|