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.
39 lines
1.5 KiB
39 lines
1.5 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"> |
|
{% for item in indices %} |
|
<twig:Organisms:FeaturedList :category="item" class="featured-list"/> |
|
{% endfor %} |
|
</div> |
|
{% endblock %} |
|
|
|
{% block aside %} |
|
{# <h6>Magazines</h6>#} |
|
{# <twig:Organisms:ZineList />#} |
|
{% endblock %}
|
|
|