From 5574b6976a9eeee92de58f2a2387839e18145901 Mon Sep 17 00:00:00 2001 From: Benjamin Issleib Date: Sat, 16 Feb 2019 09:26:12 +0100 Subject: [PATCH] add meta tag for google Signed-off-by: Benjamin Issleib --- app/Resources/views/base.html.twig | 1 + .../Resources/config/backend.yml | 10 +++++----- .../Resources/views/Default/index.html.twig | 4 ++++ 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/app/Resources/views/base.html.twig b/app/Resources/views/base.html.twig index 907a441..5637195 100644 --- a/app/Resources/views/base.html.twig +++ b/app/Resources/views/base.html.twig @@ -3,6 +3,7 @@ + {% block meta %}{% endblock %} diff --git a/src/Podlatch/PublisherBackendBundle/Resources/config/backend.yml b/src/Podlatch/PublisherBackendBundle/Resources/config/backend.yml index a652c8f..b29b1f3 100644 --- a/src/Podlatch/PublisherBackendBundle/Resources/config/backend.yml +++ b/src/Podlatch/PublisherBackendBundle/Resources/config/backend.yml @@ -168,12 +168,12 @@ easy_admin: class: Podlatch\PublisherCoreBundle\Entity\PodcastEpisode list: fields: - - { property: 'image', type: 'image', base_path: '%app.path.episode_images%' } - - episodeSeason - - episodeNumber + - { property: 'podcastShow', label: 'Podcast' } + - { property: 'episodeSeason', label: 'Season' } + - { property: 'episodeNumber', label: 'Episode' } - title - - subtitle - - podcastShow + - { property: 'image', type: 'image', base_path: '%app.path.episode_images%' } + form: fields: - { type: 'group', css_class: 'col-sm-8', label: 'Basic information' } diff --git a/src/Podlatch/PublisherFrontendBundle/Resources/views/Default/index.html.twig b/src/Podlatch/PublisherFrontendBundle/Resources/views/Default/index.html.twig index 2d78b0a..8df5748 100644 --- a/src/Podlatch/PublisherFrontendBundle/Resources/views/Default/index.html.twig +++ b/src/Podlatch/PublisherFrontendBundle/Resources/views/Default/index.html.twig @@ -1,5 +1,9 @@ {% extends "::base.html.twig" %} +{% block meta %} + +{% endblock %} + {% block content %}