<!-- News Feature -->
<div class="news_feature">
    <div class="fs-row">
        <div class="fs-cell">
            <div class="news_feature_inner">
                <div class="news_feature_item">
                    <figure class="news_feature_item_figure">
                        <a class="news_feature_item_figure_link" href="#" aria-label="Read more about In Enim Justo Rhoncus Ut" tabindex="-1">

                            <img class="news_feature_item_image" srcset="https://images.fastspot.com/mount-saint-marys-university/980x735/1 980w, https://images.fastspot.com/mount-saint-marys-university/740x555/1 740w, https://images.fastspot.com/mount-saint-marys-university/500x375/1 500w, https://images.fastspot.com/mount-saint-marys-university/300x225/1 300w" src="https://images.fastspot.com/mount-saint-marys-university/300x225/1" alt="" loading="lazy" width="300" height="225">
                        </a>
                    </figure>
                    <div class="news_feature_item_wrapper">
                        <div class="news_feature_item_header">
                            <h2 class="news_feature_item_title">In Enim Justo Rhoncus Ut</h2>
                            <div class="news_feature_item_heading">Featured News</div>
                        </div>
                        <div class="news_feature_item_body">
                            <div class="news_feature_item_description">
                                <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus.</p>
                            </div>

                            <a href="#" class="news_feature_item_link">
                                <span class="news_feature_item_link_inner">
                                    <span class="news_feature_item_link_label">Read Article</span><span class="news_feature_item_link_icon" data-nowrap="true" aria-hidden="true">&#xfeff;
                                        <svg class="icon icon_arrow_right">
                                            <use href="/images/icons.svg#arrow_right" />
                                        </svg>
                                    </span>
                                </span>
                            </a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<!-- END: News Feature -->
{#
	{% include '@partial-news-feature' with {
		item: {
			image: '1',
			categories: [
				{
					label: 'Category',
					url: '#'
				}
			],
			title: 'Title',
			url: '#',
			date: '2019-01-01 17:00:00',
			author: 'Author',
			description: 'Description'
		}
	} %}
#}
<!-- News Feature -->
<div class="news_feature">
	<div class="fs-row">
		<div class="fs-cell">
			<div class="news_feature_inner">
				<div class="news_feature_item">
					{% if item.image %}
						<figure class="news_feature_item_figure">
							{% if item.url %}
								<a class="news_feature_item_figure_link" href="{{ item.url }}" aria-label="Read more about {{ item.title }}" tabindex="-1">
							{% endif %}
							{% include '@partial-image' with {
								class: 'news_feature_item',
								alt: '',
								image: item.image,
								loading: 'lazy',
								sources: [
									img.full.med,
									img.full.sml,
									img.full.xsml,
									img.full.xxsml
								]
							} %}
							{% if item.url %}
								</a>
							{% endif %}
						</figure>
					{% endif %}
					<div class="news_feature_item_wrapper">
						<div class="news_feature_item_header">
							<h2 class="news_feature_item_title">{{ item.title }}</h2>
							<div class="news_feature_item_heading">Featured News</div>
						</div>
						{% if item.description or item.url %}
						<div class="news_feature_item_body">
							{% if item.description %}
							<div class="news_feature_item_description">
								<p>{{ item.description }}</p>
							</div>
							{% endif %}
							{% if item.url %}
								{% include '@partial-link' with {
									title: 'Read Article',
									url: '#',
									class: 'news_feature_item',
									js: false,
									icon: 'arrow_right',
									aria: '',
									nowrap: true
								} %}
							{% endif %}
						</div>
						{% endif %}
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
<!-- END: News Feature -->

No notes defined.