diff --git a/CHANGELOG.md b/CHANGELOG.md index 94a546e..296bb6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Support for Spotify and Threads +- Support for Blueksy, Spotify and Threads - Support for X (Twitter) ([#107](https://github.com/jpanther/lynx/pull/107)) ### Changed - ⚠️ Author param block in site config moved to `params.author` to align with recent deprecations in the Hugo project +- Upgrade to Tailwind v3.4.3 ([#138](https://github.com/jpanther/lynx/pull/138)) +- Upgrade to Typography v0.5.11 ([#137](https://github.com/jpanther/lynx/pull/137)) ## [1.3.1] - 2023-09-10 diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index ca9c564..c5f71aa 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -1103,6 +1103,11 @@ video { background-color: #333; } +.link-bluesky { + background: #0084ff; + background: linear-gradient(2.35619rad, #5a72fa 0%, #0084ff 100%); +} + .link-codepen { background-color: #1e1f26; } diff --git a/assets/css/main.css b/assets/css/main.css index e6fd8c2..9fe3f65 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -21,6 +21,10 @@ .link-apple { background-color: #333; } +.link-bluesky { + background: #0084ff; + background: linear-gradient(2.35619rad, #5a72fa 0%, #0084ff 100%); +} .link-codepen { background-color: #1e1f26; } diff --git a/assets/icons/bluesky.svg b/assets/icons/bluesky.svg new file mode 100644 index 0000000..8952dc3 --- /dev/null +++ b/assets/icons/bluesky.svg @@ -0,0 +1 @@ + diff --git a/config.toml b/config.toml index 4c9a825..80bebd7 100644 --- a/config.toml +++ b/config.toml @@ -18,6 +18,7 @@ disableKinds = ["taxonomy", "term"] # { link = "https://link-to-some-website.com/" }, # { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" }, # { apple = "https://www.apple.com" }, + # { bluesky = "https://bsky.app/profile/username" }, # { codepen = "https://codepen.io/username" }, # { dev = "https://dev.to/username" }, # { discord = "https://discord.gg/invitecode" }, diff --git a/exampleSite/content/styles.md b/exampleSite/content/styles.md index c9be9f7..ced1542 100644 --- a/exampleSite/content/styles.md +++ b/exampleSite/content/styles.md @@ -11,6 +11,7 @@ These are all the built-in link styles available in Lynx. Don't forget that you {{< link link >}} {{< link amazon >}} {{< link apple >}} +{{< link bluesky >}} {{< link codepen >}} {{< link dev >}} {{< link discord >}} diff --git a/i18n/en.yaml b/i18n/en.yaml index 7fa389e..a65b684 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -1,6 +1,7 @@ link: amazon: Amazon apple: Apple + bluesky: Bluesky codepen: CodePen dev: DEV discord: Discord diff --git a/i18n/fr.yaml b/i18n/fr.yaml index 41bcd1c..2104a5e 100644 --- a/i18n/fr.yaml +++ b/i18n/fr.yaml @@ -1,6 +1,7 @@ link: amazon: Amazon apple: Apple + bluesky: Bluesky codepen: CodePen dev: DEV discord: Discord