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,27 @@
{% extends "block.html.twig" %}
{#
/**
* @file
* Default theme implementation for a branding block.
*
* Each branding element variable (logo, name, slogan) is only available if
* enabled in the block configuration.
*
* Available variables:
* - site_logo: Logo for site as defined in Appearance or theme settings.
* - site_name: Name for site as defined in Site information settings.
* - site_slogan: Slogan for site as defined in Site information settings.
*
* @ingroup themeable
*/
#}
{% block content %}
{% if site_logo %}
<figure class="wordmark image is-pulled-left">
<a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">
<img src="{{ site_logo }}" alt="{{ site_name }}" />
</a>
</figure>
{% endif %}
<a class="title is-5 slogan" href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">{{ site_slogan }}</a>
{% endblock content %}

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") %}

View file

@ -0,0 +1,50 @@
{% extends "@bulma/system/page.html.twig" %}
{#
Limit the main content column to a max of 10 units at widescreen and above.
@see system/page.html.twig in the Bulma theme.
#}
{%
set page = page|merge({
'content_attributes': create_attribute().addClass([
'main-content',
'column',
'is-10-widescreen',
]),
})
%}
{% if is_front %}
{%
set page = page|merge({
'navbar_branding': '',
})
%}
{% endif %}
{% block header_and_search %}
{# Header hero region + search #}
<div class="container">
<div class="columns is-marginless is-vcentered">
<div class="column">
{% if not is_front %}
{{ page.header }}
{% endif %}
{% if is_front and site_logo %}
<div class="columns is-desktop is-vcentered family-home-branding__front">
<div class="column is-two-fifths-desktop">
<figure class="wordmark image">
<img src="{{ site_logo }}" alt="{{ site_name }}" />
</figure>
</div>
<div class="column">
<span class="title is-size-5 is-size-4-tablet is-size-3-widescreen slogan">{{ site_slogan }}</span>
</div>
</div>
{% endif %}
</div>
<div class="column is-narrow pull-right">
{{ page.header_search }}
</div>
</div>
</div>
{% endblock header_and_search %}