~xdavidwu/xdavidwu.link

f077ec43 — Tobie Langel 8 years ago
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"
```
b0e9c10e — Michael Rose 8 years ago
Merge branch 'release/3.1.3'
0103da2e — Michael Rose 8 years ago
Update CHANGELOG notes to version 3.1.3
b33dc253 — Michael Rose 8 years ago
Merge branch 'feature/artokai-patch-1' into develop
76753992 — Michael Rose 8 years ago
Merge branch 'patch-1' of https://github.com/artokai/minimal-mistakes into feature/artokai-patch-1
b459af21 — Michael Rose 8 years ago
Fix SEO author bug
- If `twitter.username` is set and `author.twitter` is nil bad things happen.
- Close #289
5c850608 — Michael Rose 8 years ago
Allow `author_profile` to be toggled in a _layout (eg. archive-taxonomy.html)
- Close #285
02596110 — Michael Rose 8 years ago
Remove white space as it was causing issues with Markdown and parsing as code blocks
- Close #279
d463b26a — Arto Kaitosaari 9 years ago
Fix "build:all" npm script

The script "build:all" was missing the "npm run" section for the "build:js" part.
5bba54da — Michael Rose 9 years ago
Fix site.og_image URL by appending /images/ the path
- Close #277
157dcbbe — Michael Rose 9 years ago
Update README
2e67f66b — Michael Rose 9 years ago
Update README
0c5996c9 — Michael Rose 9 years ago
Merge branch 'release/3.1.2' into develop
7be5c973 — Michael Rose 9 years ago
Merge branch 'release/3.1.2'
3e335853 — Michael Rose 9 years ago
Update CHANGELOG
3e0527fa — Michael Rose 9 years ago
Improve nav_list helper to be used with any type of navigation list defined in navigation.yml data file
- Close #272
8cba6c6c — Michael Rose 9 years ago
Merge branch 'feature/related-posts-alignment' into develop
c3e28b37 — Michael Rose 9 years ago
Decrease left/right page padding on small screens to give more space for content.
a8201afa — Michael Rose 9 years ago
Fix related posts alignment
- Close #273
0bf2d676 — Michael Rose 9 years ago
Fix alignment of "Follow" button in author profile
- Close #274
Next