Just commit all of family home before editing 'cause i just accidentally overwrote gaeastohuaosneuh

This commit is contained in:
benjamin melançon 2019-07-28 12:25:34 -04:00
parent 18bba535b4
commit 84de7930cb
64 changed files with 15325 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{#
/**
* @file
* Default theme implementation for a facets item list.
*
* Available variables:
* - items: A list of items. Each item contains:
* - attributes: HTML attributes to be applied to each list item.
* - value: The content of the list element.
* - title: The title of the list.
* - list_type: The tag for list element ("ul" or "ol").
* - wrapper_attributes: HTML attributes to be applied to the list wrapper.
* - attributes: HTML attributes to be applied to the list.
* - empty: A message to display when there are no items. Allowed value is a
* string or render array.
* - context: A list of contextual data associated with the list. May contain:
* - list_style: The ID of the widget plugin this facet uses.
* - facet: The facet for this result item.
* - id: the machine name for the facet.
* - label: The facet label.
*
* @see facets_preprocess_facets_item_list()
*
* @ingroup themeable
*/
#}
<div class="facets-widget- {{- facet.widget.type -}} ">
{% if facet.widget.type %}
{%- set attributes = attributes.addClass('item-list__' ~ facet.widget.type) %}
{% endif %}
{% if items or empty %}
{%- if title is not empty -%}
<h2 class="subtitle is-4 is-uppercase">{{ title }}</h2>
{%- endif -%}
{%- if items -%}
<{{ list_type }}{{ attributes }}>
{%- for item in items -%}
<li{{ item.attributes }}>{{ item.value }}</li>
{%- endfor -%}
</{{ list_type }}>
{%- else -%}
{{- empty -}}
{%- endif -%}
{%- endif %}
</div>

View file

@ -0,0 +1,17 @@
{#
/**
* @file
* Default theme implementation of an image.
*
* Available variables:
* - attributes: HTML attributes for the img tag.
* - style_name: (optional) The name of the image style applied.
*
* @see template_preprocess_image()
*
* @ingroup themeable
*/
#}
<figure class="image no-upscale">
<img{{ attributes }} />
</figure>

View file

@ -0,0 +1,7 @@
{% extends "@stable/content/page-title.html.twig" %}
{#
/**
* Make page titles larger by adding a class (where size 1 is the largest).
*/
#}
{% set title_attributes = title_attributes.addClass("is-size-2") %}