You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
6 years ago
|
{% set imagePath = file_url(content.field_article_highlight_image|field_target_entity.image.entity.uri.value) %}
|
||
|
{% set articleType = content.field_article_type|field_value %}
|
||
|
{% set pubDate = content.field_publication_date_electroni|field_value %}
|
||
|
<header style="background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('{{ imagePath }}')" class="article-title-banner node__header paragraph-responsive-typography-enabled article-header">
|
||
|
<div class="container article-info--wrapper">
|
||
|
|
||
|
{% block title_area %}
|
||
|
{{ title_prefix }}
|
||
|
<a href="{{url}}">
|
||
|
<h1{{ title_attributes.addClass('article--title title') }}>
|
||
|
{{ label }}
|
||
|
</h1>
|
||
|
</a>
|
||
|
<h1{{ title_attributes.addClass('article--title title sr-only') }}>
|
||
|
{{ label }}
|
||
|
</h1>
|
||
|
{{ title_suffix }}
|
||
|
{% endblock %}
|
||
|
<section class="article-header--metadata">
|
||
|
<div class="left">
|
||
|
<div class="article--contributor">
|
||
|
<!--Robert N. Drew-->
|
||
|
{{ content.field_authors_and_affiliations|without('label') }}
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="right">
|
||
|
<div class="article--type">{{ articleType}} </div>
|
||
|
<div class="article--date-published">
|
||
|
{{pubDate}} </div>
|
||
|
</div>
|
||
|
</section>
|
||
|
</div>
|
||
|
|
||
|
</header>
|