From 0c0c2ffc29daedeaf34afc8acaa939f955804c51 Mon Sep 17 00:00:00 2001 From: zcraber Date: Wed, 11 Oct 2023 21:15:30 +0530 Subject: [PATCH] 0.1.3 --- CHANGELOG.md | 6 +++++- README.md | 5 +++-- _data/links.yml | 3 +-- _includes/links.html | 4 ++-- _includes/social.html | 3 ++- linkhub-jekyll-theme.gemspec | 4 ++-- 6 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b50627..47f17ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,4 +10,8 @@ # [0.1.2](https://github.com/digitalmalayali/linkhub-jekyll-theme/releases/tag/v0.1.2) (11-10-2023) - Fixed some padding and margin issues. - Added aspect ratio variable for `bio.yml`. -- Removed `jekyll-seo-tag` plugin. \ No newline at end of file +- Removed `jekyll-seo-tag` plugin. + +# [0.1.3](https://github.com/digitalmalayali/linkhub-jekyll-theme/releases/tag/v0.1.3) (11-10-2023) +- Added Mastodon verification support. +- Icons in link buttons are optional now. \ No newline at end of file diff --git a/README.md b/README.md index fa97c40..5b11939 100644 --- a/README.md +++ b/README.md @@ -173,6 +173,8 @@ Like Later's link-in-bio feature, you can include external links to your Instagr items: - url: https://www.example.com image: https://picsum.photos/700/400 # You can use paths to images in the assets folder, e.g., assets/images/insta.jpg. + - url: https://www.example.com + image: https://picsum.photos/200 - name: YouTube ratio: vertical # For vertical 9:16 aspect ratio. Ideal for video thumbnails, such as those used on Instagram Reels, YouTube Shorts and TikTok. To use the default 1:1 aspect ratio (square), remove this variable. @@ -189,7 +191,7 @@ If you'd like to remove Instagram/TikTok/YouTube link-in-bio altogether, remove ``` ### Adding Links -Edit the [links.yml](_data/links.yml) file in the [_data](_data) folder to add link categories, links, icons, and tags. Refer to the provided examples and the [demo](https://digitalmalayali.github.io/linkhub-jekyll-theme/) for a better understanding. `tag` variable is optional. +Edit the [links.yml](_data/links.yml) file in the [_data](_data) folder to add link categories, links, icons, and tags. Refer to the provided examples and the [demo](https://digitalmalayali.github.io/linkhub-jekyll-theme/) for a better understanding. `tag` and `icon` variables are optional. #### `links.yml` @@ -209,7 +211,6 @@ Edit the [links.yml](_data/links.yml) file in the [_data](_data) folder to add l items: - title: Example 3 url: https://www.example.com - icon: ri:ball-pen-fill ``` ## Contributing diff --git a/_data/links.yml b/_data/links.yml index a7c6465..a0dcd49 100644 --- a/_data/links.yml +++ b/_data/links.yml @@ -2,7 +2,7 @@ items: - title: Example url: https://www.example.com - icon: ri:film-fill + icon: ri:film-fill # Icons are optional. tag: New - title: Example 2 @@ -13,7 +13,6 @@ items: - title: Example 3 url: https://www.example.com - icon: ri:ball-pen-fill - category: Works items: diff --git a/_includes/links.html b/_includes/links.html index 9272501..aa19083 100644 --- a/_includes/links.html +++ b/_includes/links.html @@ -8,8 +8,8 @@
{{ category.category }}
{% else %}
{% endif %} - {{ item.title }} + {% if item.icon %}{% endif %}{{ item.title }} {% if item.tag %}{{ item.tag }}{% endif %}
diff --git a/_includes/social.html b/_includes/social.html index 13a4bc9..8edc529 100644 --- a/_includes/social.html +++ b/_includes/social.html @@ -1,7 +1,8 @@