You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.2 KiB
46 lines
2.2 KiB
{% extends 'base.html.twig' %} |
|
|
|
{% block title %}{{ website_name }}{% endblock %} |
|
|
|
{% block meta_description %} |
|
<meta name="description" content="{{ website_description|e('html_attr') }}"> |
|
{% endblock %} |
|
|
|
{% block ogtags %} |
|
{% set _og_image = absolute_url(asset('og-image.jpg')) %} |
|
<link rel="canonical" href="{{ url('home') }}"> |
|
<link rel="alternate" type="application/atom+xml" title="{{ website_name|e('html_attr') }} — all articles" href="{{ url('feed_magazine') }}"> |
|
<meta property="og:type" content="website"> |
|
<meta property="og:url" content="{{ url('home') }}"> |
|
<meta property="og:title" content="{{ website_name|e('html_attr') }}"> |
|
<meta property="og:description" content="{{ website_description|e('html_attr') }}"> |
|
<meta property="og:image" content="{{ _og_image|e('html_attr') }}"> |
|
<meta property="og:site_name" content="{{ website_name|e('html_attr') }}"> |
|
<meta name="twitter:card" content="summary_large_image"> |
|
<meta name="twitter:title" content="{{ website_name|e('html_attr') }}"> |
|
<meta name="twitter:description" content="{{ website_description|e('html_attr') }}"> |
|
<meta name="twitter:image" content="{{ _og_image|e('html_attr') }}"> |
|
{% endblock %} |
|
|
|
{% block nav %} |
|
{% endblock %} |
|
|
|
{% block body %} |
|
<div class="home-body home-body--wall"> |
|
{% if home_curation_tiles|default([]) is not empty %} |
|
{% if home_curation_heading|default('') != '' %} |
|
<h2 class="home-curation-heading h5 mb-3 text-body-secondary">{{ home_curation_heading|e }}</h2> |
|
{% endif %} |
|
{% include 'components/Organisms/FeaturedWall.html.twig' with { |
|
tiles: home_curation_tiles, |
|
region_aria_label: home_curation_heading|default('') != '' ? (home_curation_heading ~ ' — curated articles') : (website_name ~ ' — curated articles'), |
|
wall_extra_class: 'featured-list--curation', |
|
} only %} |
|
{% endif %} |
|
{% include 'components/Organisms/FeaturedWall.html.twig' with { tiles: home_featured_tiles|default([]) } only %} |
|
</div> |
|
{% endblock %} |
|
|
|
{% block aside %} |
|
{% include 'components/Organisms/HomeHighlightsAside.html.twig' with { highlights: home_highlights|default([]) } only %} |
|
{% endblock %}
|
|
|