~xdavidwu/xdavidwu.link

c4f56f9c — Michael Rose 5 years ago
Make entire archive/feature item "clickable" (#1864)

* Make entire feature item "clickable"

Use a pseudo element on the call to action button to cover the entire feature item and make it "clickable".

* Make entire archive item "clickable"

Use a pseudo element on the `<a>` element to cover the entire archive item and make it "clickable".

* Update CHANGELOG and history

* Reference issue
e49ed22e — Michael Rose 5 years ago
Update CHANGELOG and history
d09d4902 — Maxime Michel 5 years ago
Allow custom Staticman endpoints (#1845)

20bcef3a — Michael Rose 5 years ago
Update CHANGELOG and history
edabf16f — Christian Oliff 5 years ago
Update algolia-search-scripts.html (#1836)

not needed for HTML5 and saves a few bytes by removing
8930f690 — Michael Rose 5 years ago
Merge branch 'master' of https://github.com/mmistakes/minimal-mistakes
9e8c04f3 — Michael Rose 5 years ago
Update CHANGELOG and history
238bd9fb — Christian Oliff 5 years ago
Remove unneeded HandheldFriendly and MobileOptimized meta tags (#1837)

Fixes: #1835
378a3711 — Michael Rose 5 years ago
Update CHANGELOG and history
f469ef42 — Christian Oliff 5 years ago
Update Font Awesome to latest version (#1830)

1e76eaf1 — Michael Rose 5 years ago
Update CHANGELOG and history
d57c3d97 — Michael Rose 5 years ago
Properly apply `relative_url` filter to internal links in header overlay `actions` array
68aa5f75 — Michael Rose 5 years ago
Remove deprecated `base_path` include helper
c05add3b — Michael Rose 5 years ago
Release 4.13.0 💎
f6b6f972 — Michael Rose 5 years ago
Add Romanian localized UI text strings
62ddc8b1 — Claudiu Constantin 5 years ago
Update ui-text.yml with Romanian translation (#1814)

* Update ui-text.yml with Romanian translation

Added the translations for Romanian

* Update ui-text.yml

Corrected „less_than” with a proper translation for the context where it is being used

* Update docs

Added Romanian to the languages list
44695902 — Michael Rose 5 years ago
Add social icon colors for Reddit and Mastodon
56d4d024 — Michael Rose 5 years ago
Update CHANGELOG and history
d43cd7c2 — Michael Rose 5 years ago
Improve footer link flexibility

Deprecate hardcoded footer links in favor or new `footer.links` array for any link and in any order. All of Font Awesome's icons are available for use.

```
footer:
  links:
    - label: "Twitter"
      icon: "fab fa-fw fa-twitter-square"
      url: "https://twitter.com/username"
    - label: "GitHub"
      icon: "fab fa-fw fa-github"
      url: "https://github.com/username"
    - label: "Instagram"
      icon: "fab fa-fw fa-instagram"
      url: "https://instagram.com/username"
```
301b885b — Michael Rose 5 years ago
Improve author link flexibility

Deprecate social networking links in `_config.yml` in favor or new `author.links` array for any link and in any order. All of Font Awesome's icons are available for use.

```
author:
  links:
    - label: "Your Website"
      icon: "fas fa-fw fa-link"
      url: "https://your-site.com"
    - label: "Twitter"
      icon: "fab fa-fw fa-twitter-square"
      url: "https://twitter.com/username"
    - label: "GitHub"
      icon: "fab fa-fw fa-github"
      url: "https://github.com/username"
    - label: "Instagram"
      icon: "fab fa-fw fa-instagram"
      url: "https://instagram.com/username"
```

Fixes #1581
Next