Skip to content

Commit c0d9eb7

Browse files
authored
Merge pull request #59 from CU-CommunityApps/block-unwrapped
new unwrapped block template
2 parents 975e848 + d6fa582 commit c0d9eb7

File tree

3 files changed

+19
-76
lines changed

3 files changed

+19
-76
lines changed
Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1 @@
1-
{#
2-
/**
3-
* @file
4-
* Theme override to display a block.
5-
* ~ Removed unnecessary DIV wrapper (ama39)
6-
*
7-
* Available variables:
8-
* - plugin_id: The ID of the block implementation.
9-
* - label: The configured label of the block if visible.
10-
* - configuration: A list of the block's configuration values.
11-
* - label: The configured label for the block.
12-
* - label_display: The display settings for the label.
13-
* - provider: The module or other provider that provided this block plugin.
14-
* - Block plugin specific settings will also be stored here.
15-
* - content: The content of this block.
16-
* - attributes: array of HTML attributes populated by modules, intended to
17-
* be added to the main container tag of this template.
18-
* - id: A valid HTML ID and guaranteed unique.
19-
* - title_attributes: Same as attributes, except applied to the main title
20-
* tag that appears in the template.
21-
* - title_prefix: Additional output populated by modules, intended to be
22-
* displayed in front of the main title tag that appears in the template.
23-
* - title_suffix: Additional output populated by modules, intended to be
24-
* displayed after the main title tag that appears in the template.
25-
*
26-
* @see template_preprocess_block()
27-
*/
28-
#}
29-
{#<div{{ attributes }}>#}
30-
{{ title_prefix }}
31-
{% if label %}
32-
<h2{{ title_attributes }}>{{ label }}</h2>
33-
{% endif %}
34-
{{ title_suffix }}
35-
{% block content %}
36-
{{ content }}
37-
{% endblock %}
38-
{#</div>#}
1+
{% include "@cwd_base/includes/_block--un-wrapped.html.twig" %}
Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1 @@
1-
{#
2-
/**
3-
* @file
4-
* Theme override to display a block.
5-
* ~ Removed unnecessary DIV wrapper (ama39)
6-
*
7-
* Available variables:
8-
* - plugin_id: The ID of the block implementation.
9-
* - label: The configured label of the block if visible.
10-
* - configuration: A list of the block's configuration values.
11-
* - label: The configured label for the block.
12-
* - label_display: The display settings for the label.
13-
* - provider: The module or other provider that provided this block plugin.
14-
* - Block plugin specific settings will also be stored here.
15-
* - content: The content of this block.
16-
* - attributes: array of HTML attributes populated by modules, intended to
17-
* be added to the main container tag of this template.
18-
* - id: A valid HTML ID and guaranteed unique.
19-
* - title_attributes: Same as attributes, except applied to the main title
20-
* tag that appears in the template.
21-
* - title_prefix: Additional output populated by modules, intended to be
22-
* displayed in front of the main title tag that appears in the template.
23-
* - title_suffix: Additional output populated by modules, intended to be
24-
* displayed after the main title tag that appears in the template.
25-
*
26-
* @see template_preprocess_block()
27-
*/
28-
#}
29-
{#<div{{ attributes }}>#}
30-
{{ title_prefix }}
31-
{% if label %}
32-
<h2{{ title_attributes }}>{{ label }}</h2>
33-
{% endif %}
34-
{{ title_suffix }}
35-
{% block content %}
36-
{{ content }}
37-
{% endblock %}
38-
{#</div>#}
1+
{% include "@cwd_base/includes/_block--un-wrapped.html.twig" %}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{#
2+
/**
3+
* @file
4+
* Theme override to remove div wrapper from blocks.
5+
* See cwd_base/block.html.twig for available variables and other info.
6+
*
7+
* @see template_preprocess_block()
8+
*/
9+
#}
10+
{{ title_prefix }}
11+
{% if label %}
12+
<h2{{ title_attributes }}>{{ label }}</h2>
13+
{% endif %}
14+
{{ title_suffix }}
15+
{% block content %}
16+
{{ content }}
17+
{% endblock %}

0 commit comments

Comments
 (0)