Merge branch 'release/3.3.5'
Add `en` default text to `site.locale` strings
- Close #407
Merge branch 'release/3.2.3'
Replace contains "http" with contains "://"
Merge branch 'release/3.1.4'
Merge branch 'feature/overlay-filter' into develop
Add overlay_filter param to hero headers
The `overlay_filter` param lets you darken or otherwise filter the hero header picture to make the text content pop out more.
You can use it by specifying the opacity (between 0 and 1) of a black overlay like so:
```yaml
excerpt: "This post should display a **header with an overlay image**, if the theme supports it."
header:
overlay_image: unsplash-image-1.jpg
overlay_filter: 0.5 # same as adding an opacity of 0.5 to a black background
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
cta_label: "More Info"
cta_url: "https://unsplash.com"
```
Or if you want to do more fancy things, go full rgba:
```yaml
excerpt: "This post should display a **header with an overlay image**, if the theme supports it."
header:
overlay_image: unsplash-image-1.jpg
overlay_filter: rgba(255, 0, 0, 0.5)
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
cta_label: "More Info"
cta_url: "https://unsplash.com"
```
Merge branch 'release/3.0.0'
Merge branch 'feature/documentation-and-demo' into develop
Make base_path available to all includes that need it
If page doesn't have a title fallback to site.title
Improve URL handling for internally and externally linked pages
Merge branch 'feature/spit-and-polish' into develop
Build out overlay header and feature row _include helper
Style overlay background image and add support for caption
Add header overlay sample posts
Rough out splash page _layout with styles and test content