Skip to content

Commit 84b4fa2

Browse files
author
Simon L. Lange
committed
Merge branch 'develop' of github.com:OS2web/os2web8 into develop
2 parents 0572c3c + 784343d commit 84b4fa2

File tree

2 files changed

+211
-0
lines changed

2 files changed

+211
-0
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{#
2+
/**
3+
* @file
4+
* Theme override for a field.
5+
*
6+
* To override output, copy the "field.html.twig" from the templates directory
7+
* to your theme's directory and customize it, just like customizing other
8+
* Drupal templates such as page.html.twig or node.html.twig.
9+
*
10+
* Instead of overriding the theming for all fields, you can also just override
11+
* theming for a subset of fields using
12+
* @link themeable Theme hook suggestions. @endlink For example,
13+
* here are some theme hook suggestions that can be used for a field_foo field
14+
* on an article node type:
15+
* - field--node--field-foo--article.html.twig
16+
* - field--node--field-foo.html.twig
17+
* - field--node--article.html.twig
18+
* - field--field-foo.html.twig
19+
* - field--text-with-summary.html.twig
20+
* - field.html.twig
21+
*
22+
* Available variables:
23+
* - attributes: HTML attributes for the containing element.
24+
* - label_hidden: Whether to show the field label or not.
25+
* - title_attributes: HTML attributes for the title.
26+
* - label: The label for the field.
27+
* - multiple: TRUE if a field can contain multiple items.
28+
* - items: List of all the field items. Each item contains:
29+
* - attributes: List of HTML attributes for each item.
30+
* - content: The field item's content.
31+
* - entity_type: The entity type to which the field belongs.
32+
* - field_name: The name of the field.
33+
* - field_type: The type of the field.
34+
* - label_display: The display settings for the label.
35+
*
36+
*
37+
* @see template_preprocess_field()
38+
*/
39+
#}
40+
{%
41+
set classes = [
42+
'field',
43+
'field--name-' ~ field_name|clean_class,
44+
'field--type-' ~ field_type|clean_class,
45+
'field--label-' ~ label_display,
46+
label_display == 'inline' ? 'clearfix',
47+
]
48+
%}
49+
{%
50+
set title_classes = [
51+
'field__label',
52+
label_display == 'visually_hidden' ? 'visually-hidden',
53+
]
54+
%}
55+
56+
{% if label_hidden %}
57+
{% if multiple %}
58+
<div{{ attributes.addClass(classes, 'field__items') }}>
59+
{% for item in items %}
60+
<div{{ item.attributes.addClass('field__item') }}>{{ item.content }}</div>
61+
{% endfor %}
62+
</div>
63+
{% else %}
64+
{% for item in items %}
65+
<div{{ attributes.addClass(classes, 'field__item') }}>{{ item.content }}</div>
66+
{% endfor %}
67+
{% endif %}
68+
{% else %}
69+
<div{{ attributes.addClass(classes) }}>
70+
<div{{ title_attributes.addClass(title_classes) }}>{{ label }}</div>
71+
{% if multiple %}
72+
<div class="field__items">
73+
{% endif %}
74+
{% for item in items %}
75+
<div{{ item.attributes.addClass('field__item') }}>{{ item.content }}</div>
76+
{% endfor %}
77+
{% if multiple %}
78+
</div>
79+
{% endif %}
80+
</div>
81+
{% endif %}
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
{#
2+
/**
3+
* @file
4+
* Theme override to display a node.
5+
*
6+
* Available variables:
7+
* - node: The node entity with limited access to object properties and methods.
8+
* Only method names starting with "get", "has", or "is" and a few common
9+
* methods such as "id", "label", and "bundle" are available. For example:
10+
* - node.getCreatedTime() will return the node creation timestamp.
11+
* - node.hasField('field_example') returns TRUE if the node bundle includes
12+
* field_example. (This does not indicate the presence of a value in this
13+
* field.)
14+
* - node.isPublished() will return whether the node is published or not.
15+
* Calling other methods, such as node.delete(), will result in an exception.
16+
* See \Drupal\node\Entity\Node for a full list of public properties and
17+
* methods for the node object.
18+
* - label: (optional) The title of the node.
19+
* - content: All node items. Use {{ content }} to print them all,
20+
* or print a subset such as {{ content.field_example }}. Use
21+
* {{ content|without('field_example') }} to temporarily suppress the printing
22+
* of a given child element.
23+
* - author_picture: The node author user entity, rendered using the "compact"
24+
* view mode.
25+
* - metadata: Metadata for this node.
26+
* - date: (optional) Themed creation date field.
27+
* - author_name: (optional) Themed author name field.
28+
* - url: Direct URL of the current node.
29+
* - display_submitted: Whether submission information should be displayed.
30+
* - attributes: HTML attributes for the containing element.
31+
* The attributes.class element may contain one or more of the following
32+
* classes:
33+
* - node: The current template type (also known as a "theming hook").
34+
* - node--type-[type]: The current node type. For example, if the node is an
35+
* "Article" it would result in "node--type-article". Note that the machine
36+
* name will often be in a short form of the human readable label.
37+
* - node--view-mode-[view_mode]: The View Mode of the node; for example, a
38+
* teaser would result in: "node--view-mode-teaser", and
39+
* full: "node--view-mode-full".
40+
* The following are controlled through the node publishing options.
41+
* - node--promoted: Appears on nodes promoted to the front page.
42+
* - node--sticky: Appears on nodes ordered above other non-sticky nodes in
43+
* teaser listings.
44+
* - node--unpublished: Appears on unpublished nodes visible only to site
45+
* admins.
46+
* - title_attributes: Same as attributes, except applied to the main title
47+
* tag that appears in the template.
48+
* - content_attributes: Same as attributes, except applied to the main
49+
* content tag that appears in the template.
50+
* - author_attributes: Same as attributes, except applied to the author of
51+
* the node tag that appears in the template.
52+
* - title_prefix: Additional output populated by modules, intended to be
53+
* displayed in front of the main title tag that appears in the template.
54+
* - title_suffix: Additional output populated by modules, intended to be
55+
* displayed after the main title tag that appears in the template.
56+
* - view_mode: View mode; for example, "teaser" or "full".
57+
* - teaser: Flag for the teaser state. Will be true if view_mode is 'teaser'.
58+
* - page: Flag for the full page state. Will be true if view_mode is 'full'.
59+
* - readmore: Flag for more state. Will be true if the teaser content of the
60+
* node cannot hold the main body content.
61+
* - logged_in: Flag for authenticated user status. Will be true when the
62+
* current user is a logged-in member.
63+
* - is_admin: Flag for admin user status. Will be true when the current user
64+
* is an administrator.
65+
*
66+
* @see template_preprocess_node()
67+
*
68+
*/
69+
#}
70+
{%
71+
set classes = [
72+
'node',
73+
'node--type-' ~ node.bundle|clean_class,
74+
node.isPromoted() ? 'node--promoted',
75+
node.isSticky() ? 'node--sticky',
76+
not node.isPublished() ? 'node--unpublished',
77+
view_mode ? 'node--view-mode-' ~ view_mode|clean_class,
78+
]
79+
%}
80+
{{ attach_library('classy/node') }}
81+
<article{{ attributes.addClass(classes) }}>
82+
83+
{{ title_prefix }}
84+
{% if label and not page %}
85+
<h2{{ title_attributes }}>
86+
<a href="{{ url }}" rel="bookmark">{{ label }}</a>
87+
</h2>
88+
{% endif %}
89+
{{ title_suffix }}
90+
91+
{% if display_submitted %}
92+
<footer class="node__meta">
93+
{{ author_picture }}
94+
<div{{ author_attributes.addClass('node__submitted') }}>
95+
{% trans %}Submitted by {{ author_name }} on {{ date }}{% endtrans %}
96+
{{ metadata }}
97+
</div>
98+
</footer>
99+
{% endif %}
100+
101+
<div{{ content_attributes.addClass('node__content') }}>
102+
103+
{# {{ content }}#}
104+
105+
<div{{ attributes.addClass(classes) }}>
106+
{{ content.field_os2web_evnet_image }}
107+
<div{{ title_attributes.addClass(title_classes) }}>
108+
{% set startdate = node.field_os2web_event_start_date.value|date('Ymd') %}
109+
{% set starttime = node.field_os2web_event_start_date.value|date("Hi") %}
110+
{% set enddate = node.field_os2web_event_end_date.value|date('Ymd') %}
111+
{% set starttime = node.field_os2web_event_start_date.value|date("Hi") %}
112+
113+
<div>
114+
{{ node.field_os2web_event_start_date.value|date('D')|trans }}
115+
{{ node.field_os2web_event_start_date.value|date('d/m/Y') }} - {{ node.field_os2web_event_start_date.value|date("H:i") }}</div>
116+
{% if startdate != enddate %}
117+
<div>{{ node.field_os2web_event_end_date.value|render }}</div>
118+
{% endif %}
119+
120+
{{ content.body|raw }}
121+
122+
</div>
123+
124+
125+
126+
</div>
127+
128+
</div>
129+
130+
</article>

0 commit comments

Comments
 (0)