-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from yalesites-org/develop
Release
- Loading branch information
Showing
30 changed files
with
299 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
templates/block/layout-builder/block--inline-block--image-banner.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{% extends "@atomic/block/layout-builder/_layout-builder-block-template.twig" %} | ||
|
||
{% set image_banner__video = paragraph.field_media.entity.field_media_video_file.entity.uri.value is not empty %} | ||
|
||
{% block content %} | ||
{% embed "@molecules/banner/image/yds-image-banner.twig" with { | ||
image_banner__video: image_banner__video, | ||
image_banner__content_background: image_banner__content_background | ||
} %} | ||
{% block image_banner__video %} | ||
{% if image_banner__video %} | ||
{% set image_banner__video = true %} | ||
{{ content.field_media }} | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block image_banner__image %} | ||
{% if not image_banner__video %} | ||
{{ content.field_media }} | ||
{% endif %} | ||
{% endblock %} | ||
{% endembed %} | ||
{% endblock %} |
6 changes: 3 additions & 3 deletions
6
templates/block/layout-builder/block--inline-block--video.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{% extends "@atomic/field/field--node--field-category--list-item.html.twig" %} |
1 change: 1 addition & 0 deletions
1
templates/field/field--node--field-affiliation--list-item.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{% extends "@atomic/field/field--node--field-category--list-item.html.twig" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{% extends "@atomic/field/field--node--field-category--list-item.html.twig" %} |
1 change: 1 addition & 0 deletions
1
templates/field/field--node--field-category--list-item.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{% include "@atoms/lists/taxonomy/yds-categories-list.twig" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{% extends "@atomic/field/field--node--field-tags--list-item.html.twig" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{% include "@atoms/lists/taxonomy/yds-tags-list.twig" with { | ||
url: url('entity.node.canonical', {'node': element['#object'].id}), | ||
}%} |
1 change: 1 addition & 0 deletions
1
templates/form/form--views--views-basic-scaffold-events.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{% extends "@atomic/form/form--views--views-basic-scaffold.html.twig" %} |
25 changes: 25 additions & 0 deletions
25
templates/form/form--views--views-basic-scaffold.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{# | ||
/** | ||
* @file | ||
* Theme override for a 'form' element. | ||
* | ||
* Available variables | ||
* - attributes: A list of HTML attributes for the wrapper element. | ||
* - children: The child elements of the form. | ||
* | ||
* @see template_preprocess_form() | ||
*/ | ||
#} | ||
|
||
{{ attach_library('atomic/chosen-select') }} | ||
|
||
{% | ||
set classes = [ | ||
'ys-filter-form', | ||
'ys-filter-form--scaffold', | ||
] | ||
%} | ||
|
||
<form{{ attributes.addClass(classes) }}> | ||
{{ children }} | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.