From b20e3a34a1c68618aa00ffbe8247fb27ee45d376 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Monta=C3=B1ez?= Date: Wed, 6 Jan 2016 12:40:55 -0300 Subject: [PATCH] Improve readability --- Resources/views/custom.html.twig | 6 ++-- Resources/views/opengraph.html.twig | 54 ++++++++++++++--------------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/Resources/views/custom.html.twig b/Resources/views/custom.html.twig index d10601e..578bc1f 100644 --- a/Resources/views/custom.html.twig +++ b/Resources/views/custom.html.twig @@ -1,3 +1,3 @@ -{%- for tag, value in tags -%} - -{%- endfor -%} \ No newline at end of file +{% for tag, value in tags %} + +{% endfor %} \ No newline at end of file diff --git a/Resources/views/opengraph.html.twig b/Resources/views/opengraph.html.twig index 1d8be05..320a0b8 100644 --- a/Resources/views/opengraph.html.twig +++ b/Resources/views/opengraph.html.twig @@ -1,30 +1,30 @@ -{%- if og_image -%} - -{%- endif -%} -{%- if og_image_width -%} - -{%- endif -%} -{%- if og_image_height -%} - -{%- endif -%} -{%- if og_type -%} - -{%- endif -%} -{%- if og_video -%} - -{%- endif -%} -{%- if og_video_secure_url -%} - -{%- endif -%} -{%- if og_video_width -%} - -{%- endif -%} -{%- if og_video_height -%} - -{%- endif -%} -{%- if og_video_type -%} - -{%- endif -%} +{% if og_image %} + +{% endif %} +{% if og_image_width %} + +{% endif %} +{% if og_image_height %} + +{% endif %} +{% if og_type %} + +{% endif %} +{% if og_video %} + +{% endif %} +{% if og_video_secure_url %} + +{% endif %} +{% if og_video_width %} + +{% endif %} +{% if og_video_height %} + +{% endif %} +{% if og_video_type %} + +{% endif %}