diff --git a/src/layouts/base.twig b/src/layouts/base.twig index a1c1b86..4cd24d7 100644 --- a/src/layouts/base.twig +++ b/src/layouts/base.twig @@ -31,7 +31,11 @@ - {% include 'partials::base/b_header.twig' %} + {% + include 'partials::base/b_header.twig' with { + skip_links: skip_links + } + %}
{% block content %}{% endblock %} diff --git a/src/pages/apps.twig b/src/pages/apps.twig index 0befe58..e6cf9a8 100644 --- a/src/pages/apps.twig +++ b/src/pages/apps.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ diff --git a/src/pages/blog-overview.twig b/src/pages/blog-overview.twig index b19d36e..f83dc7c 100644 --- a/src/pages/blog-overview.twig +++ b/src/pages/blog-overview.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ diff --git a/src/pages/blog.twig b/src/pages/blog.twig index 08ba9d4..b9ee03a 100644 --- a/src/pages/blog.twig +++ b/src/pages/blog.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ diff --git a/src/pages/enquiry-all-states.twig b/src/pages/enquiry-all-states.twig index 199902f..4550776 100644 --- a/src/pages/enquiry-all-states.twig +++ b/src/pages/enquiry-all-states.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ @@ -40,7 +46,14 @@ -
+
+ {% + include 'partials::content-layout/cl_skip-links.twig' with { + links: [ + { href: "#results", text: "Formular überspringen"} + ] + } + %}
@@ -120,7 +133,7 @@ } %} -
+

Öffentliche Datenanfragen

diff --git a/src/pages/enquiry-validated.twig b/src/pages/enquiry-validated.twig index 8726f24..a197d6e 100644 --- a/src/pages/enquiry-validated.twig +++ b/src/pages/enquiry-validated.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ @@ -40,7 +46,14 @@
-
+
+ {% + include 'partials::content-layout/cl_skip-links.twig' with { + links: [ + { href: "#results", text: "Formular überspringen"} + ] + } + %}
@@ -128,7 +141,7 @@ } %} -
+

Öffentliche Datenanfragen

diff --git a/src/pages/enquiry.twig b/src/pages/enquiry.twig index a6e676d..63656d3 100644 --- a/src/pages/enquiry.twig +++ b/src/pages/enquiry.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ @@ -40,7 +46,14 @@
-
+
+ {% + include 'partials::content-layout/cl_skip-links.twig' with { + links: [ + { href: "#results", text: "Formular überspringen"} + ] + } + %}
@@ -120,7 +133,7 @@ } %} -
+

Öffentliche Datenanfragen

diff --git a/src/pages/homepage.twig b/src/pages/homepage.twig index 660d816..ffd795c 100644 --- a/src/pages/homepage.twig +++ b/src/pages/homepage.twig @@ -1,12 +1,17 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} -
+ -
+

diff --git a/src/pages/overview-empty.twig b/src/pages/overview-empty.twig index ed40c83..9f4f8e8 100644 --- a/src/pages/overview-empty.twig +++ b/src/pages/overview-empty.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ diff --git a/src/pages/overview.twig b/src/pages/overview.twig index ad05654..79aa696 100644 --- a/src/pages/overview.twig +++ b/src/pages/overview.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ diff --git a/src/pages/publisher-datasets-empty.twig b/src/pages/publisher-datasets-empty.twig index 91383ec..0055789 100644 --- a/src/pages/publisher-datasets-empty.twig +++ b/src/pages/publisher-datasets-empty.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ diff --git a/src/pages/publisher-datasets.twig b/src/pages/publisher-datasets.twig index 58d7146..76e8a72 100644 --- a/src/pages/publisher-datasets.twig +++ b/src/pages/publisher-datasets.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ diff --git a/src/pages/publisher-overview.twig b/src/pages/publisher-overview.twig index 327055a..18ce854 100644 --- a/src/pages/publisher-overview.twig +++ b/src/pages/publisher-overview.twig @@ -1,7 +1,13 @@ {% extends 'layouts::base.twig' %} {% set theme = 'default' %} +{% + set skip_links = [ + { href: '#content', text: 'Zum Inhalt' }, + ] +%} {% block content %} +
{% include 'partials::base/b_breadcrumbs.twig' with { links: [ diff --git a/src/partials/base/b_header.twig b/src/partials/base/b_header.twig index bb9644a..1d0cee2 100644 --- a/src/partials/base/b_header.twig +++ b/src/partials/base/b_header.twig @@ -1,4 +1,4 @@ -
+