When a user sees the featured content section, they will see a title. They may also see an introduction sentence, an image and an image caption, a video (which will open in the gallery modal), along with some additional text, which may have formatting (paragraphs, bold, links, superscript, subscript, blockquote, cited blockquote).
The component also allows for multiple links (utilising the existing “uol-arrow-link”) to be added, a maximum of no more than twelve is advised.
Multiple arrow links can be added to the featured content component, this can be done through the config (adding a title and url for each):
'widget_arrow_links': [
{
"title" : "Text link with arrow effect",
"url" : "https://www.leeds.ac.uk"
},
{
"title" : "Text link with arrow effect",
"url" : "https://www.leeds.ac.uk"
},
];
A single video can be added through the config, passing a boolean value (‘videoPlayIcon’: true) will display the alternate video icon. Please see the example here:
{
'widget_video': {
'headingLevel': 2,
'videoPlayIcon': true,
'items': galleryVideos.slice(2, 3),
},
...
},
This component has a number of different properties that need to be passed to the ‘Featured content widget’ component to enable the different styling of the ‘Video highlighted’ variant. See below in the ‘Developer guidance’ for details of how to implement this. Currently this variant should only be used with the configuration detailed below.
The component must include the following:
To enable this variant the following configuration will be required:
{
'context': {
'widget_featured_video_highlighted': true,
'widget_featured_video_highlighted_sub_text': 'About The University of Leeds',
},
},
The first property ‘widget_featured_video_highlighted’ enables the ‘Featured video highlighted’ different style.
The second property ‘widget_featured_video_highlighted_sub_text’ allows you to add a short piece of text as the first item on the component, in the example it’s shown as ‘About The University of Leeds’. Please note this additional text will only work with this new variant.
Here is the full configuration for this component:
{
'type': 'featured-content',
'title': 'Build confidence, connections and careers',
'lead': '<p>Supported to make an impact on what matters to you, at Leeds you\'ll be welcomed into our warm community with a world of opportunity to feed your passions and potential.</p>',
'widget_featured_video_highlighted': true,
'widget_featured_video_highlighted_sub_text': 'About The University of Leeds',
'video': {
'headingLevel': 3,
'videoPlayIcon': true,
"items": [
{
"title": 'Video about The University of Leeds',
"type": "video",
"video": "https://www.youtube.com/watch?v=j4pt8l7e3u8",
}
],
},
'content': '',
'link': {
'url': '/',
'text': 'Audio described video'
},
}
{% extends '@uol-widget' %}
{% block widget_content %}
{% render '@uol-image-featured--with-caption', { image_featured: widget_image } %}
{% render '@uol-gallery--single-video-with-play-icon', { gallery: widget_video } %}
<div class="uol-widget__content__text uol-rich-text">
{{ widget_content | safe }}
</div>
{% endblock %}
<div class="uol-widget-container uol-widget-container__featured-content">
<div class="uol-widget uol-widget--featured-content ">
<div class="uol-widget__left-col ">
<div class="uol-widget__head ">
<h2 class="uol-widget__title ">Featured content widget</h2>
<div class="uol-widget__lead ">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem sequi animi exercitationem sunt. Eos consequatur, eveniet nulla beatae nisi voluptatibus.</p>
</div>
</div>
</div>
<div class="uol-widget__content ">
<figure class="uol-featured-image">
<img class="uol-featured-image__img" src="/placeholders/banner/banner-02.jpg" alt="A descriptive alt text">
<figcaption class="uol-featured-image__caption">
Image caption. May be used for © notices
</figcaption>
</figure>
<div class="uol-widget__content__text uol-rich-text">
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p>
</blockquote>
<p>Magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, <strong>qui dolorem ipsum quia dolor sit amet</strong>.</p>
<p>Consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore <a href="/some-featured-content-link">et dolore magnam aliquam quaerat voluptatem</a>.</p>
</div>
</div>
</div>
</div>
.uol-widget--featured-content {
.uol-gallery__image-caption {
padding-left: $spacing-4;
padding-right: $spacing-4;
@include media(">=uol-media-l") {
padding-left: 0;
padding-right: 0;
}
}
}
{
"widget_type": "featured-content",
"widget_title": "Featured content widget",
"widget_lead": "<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem sequi animi exercitationem sunt. Eos consequatur, eveniet nulla beatae nisi voluptatibus.</p>",
"widget_content": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p><blockquote><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p></blockquote><p>Magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, <strong>qui dolorem ipsum quia dolor sit amet</strong>.</p><p>Consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore <a href=\"/some-featured-content-link\">et dolore magnam aliquam quaerat voluptatem</a>.</p>",
"widget_image": {
"src": "/placeholders/banner/banner-02.jpg",
"alt": "A descriptive alt text",
"caption": "Image caption. May be used for © notices"
}
}