Skip to content

Commit 53fd799

Browse files
committed
v3.11.0
1 parent c1fc66e commit 53fd799

15 files changed

Lines changed: 45 additions & 11 deletions

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## 3.11.0 (2021-10-09)
4+
5+
### What's improved
6+
- a11y improvements. #136 by @robdekort
7+
38
## 3.10.0 (2021-10-06)
49

510
### What's new

app/Console/Commands/stubs/index.antlers.html.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@desc The {{ collection_name }} index template.
44
#}}
55

6-
<main class="outer-grid">
6+
<main class="outer-grid" id="content">
77
<div class="fluid-container grid md:grid-cols-12 gap-12">
88
{{ collection:{{ handle }} sort="date:desc" paginate="true" limit="10" as="items" }}
99
{{ unless no_results }}

app/Console/Commands/stubs/show.antlers.html.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@desc The {{ collection_name }} show template.
44
#}}
55

6-
<main class="outer-grid">
6+
<main class="outer-grid" id="content">
77
<div class="fluid-container">
88
{{ partial:typography/h1 :content="title" }}
99
</div>

dev/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## 3.11.0 (2021-10-09)
4+
5+
### What's improved
6+
- a11y improvements. #136 by @robdekort
7+
38
## 3.10.0 (2021-10-06)
49

510
### What's new

dev/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ Maintaining Peak demands a lot of my time and it probably saves you a lot. Your
2222

2323
![And a lot more additional bottles of oxygen.](https://cdn.studio1902.nl/assets/statamic-peak/statamic-peak-promo-06.png)
2424

25-
<!-- statamic:hide -->
2625
## Contributing
2726
Contributions and discussions are always welcome, no matter how large or small. Treat each other with respect. Read the [Code of Conduct](https://github.com/studio1902/statamic-peak/blob/main/.github/CODE_OF_CONDUCT.md).
2827

28+
Read more about [how you can contribute](https://peak.studio1902.nl/other/contributing.html) here.
29+
2930
## License
3031
The MIT License (MIT). Please see [License File](LICENSE.md) for more information. Statamic itself is commercial software and has its' own license.
3132

3233
The Peak branding is done by Jouke Zult from [Mistral Merkactivisten](https://mistralmerkactivisten.nl). Thank you so much!
33-
<!-- /statamic:hide -->

public/css/site.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/mix-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"/js/site.js": "/js/site.js?id=3fa2b4e345dfacd0d582",
3-
"/css/site.css": "/css/site.css?id=852ea8771cf2b48e9307"
3+
"/css/site.css": "/css/site.css?id=f17a4b9830059af4d962"
44
}

resources/lang/en/strings.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434
// Navigation
3535
'close' => 'Close',
3636
'menu' => 'Menu',
37+
'nav_close' => 'Close navigation',
38+
'nav_open' => 'Open navigation',
39+
'subnav_close' => 'Close sub navigation',
40+
'subnav_open' => 'Open sub navigation',
41+
'skip_to_content' => 'Skip to content',
3742

3843
// Other
3944
'dark_mode_on' => 'Enable dark mode',

resources/views/default.antlers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@desc The default template with an outer wrapper grid as defined in tailwind.config.js. It makes sure all blocks on a page get evenly spaced without having to worry about margins or paddings.
44
#}}
55

6-
<main class="outer-grid">
6+
<main class="outer-grid" id="content">
77
{{ page_builder scope="block" }}
88
{{ partial src="page_builder/{type}" }}
99
{{ /page_builder }}

resources/views/errors/404.antlers.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
404
1414
{{ /section:seo_title }}
1515

16-
<main class="outer-grid">
16+
<main class="outer-grid" id="content">
1717
<article class="fluid-container grid md:grid-cols-12 gap-y-4">
1818
<div class="col-span-12">
1919
{{ partial:typography/h1 class="mb-4" :content="configuration:404_title" }}
2020
{{ partial:typography/paragraph :content="configuration:404_text" }}
2121
</div>
2222
</article>
23-
</main>
23+
</main>

0 commit comments

Comments
 (0)