From e6bdd5d518d86e298b1820824cd754468b5e7cf2 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Tue, 13 Sep 2022 09:41:52 +0200 Subject: [PATCH 1/2] Fixing path All other code samples on this page are using `form/` --- form/form_themes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/form/form_themes.rst b/form/form_themes.rst index 69a24a2adb0..c2dd3dca368 100644 --- a/form/form_themes.rst +++ b/form/form_themes.rst @@ -128,7 +128,7 @@ order is important, because each theme overrides all the previous ones): {# apply multiple form themes but only to the form of this template #} {% form_theme form with [ 'foundation_5_layout.html.twig', - 'forms/my_custom_theme.html.twig' + 'form/my_custom_theme.html.twig' ] %} {# ... #} From 740e600968f2587139e224f2c21d601f13d6f471 Mon Sep 17 00:00:00 2001 From: Therage Kevin <35264408+ktherage@users.noreply.github.com> Date: Thu, 8 Sep 2022 16:21:35 +0200 Subject: [PATCH 2/2] Fixing "HTML5 color format" link The link https://www.w3.org/TR/html52/sec-forms.html#color-state-typecolor redirects to https://html.spec.whatwg.org/multipage/forms.html#color-state-typecolor which is bad, it's seems to be https://html.spec.whatwg.org/multipage/input.html#color-state-(type=color) now. --- reference/forms/types/color.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/forms/types/color.rst b/reference/forms/types/color.rst index 213c88323cc..72bfa0eff79 100644 --- a/reference/forms/types/color.rst +++ b/reference/forms/types/color.rst @@ -90,4 +90,4 @@ The default value is ``''`` (the empty string). .. include:: /reference/forms/types/options/trim.rst.inc -.. _`HTML5 color format`: https://www.w3.org/TR/html52/sec-forms.html#color-state-typecolor +.. _`HTML5 color format`: https://html.spec.whatwg.org/multipage/input.html#color-state-(type=color)