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.
36 lines
1.6 KiB
36 lines
1.6 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"> |
|
{% 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 %}
|
|
|