linkhub-jekyll-theme 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b9d95a9edea729c8a367dc0b77a44374ed059b9fd63066bd547b03f0b9aedd6
4
- data.tar.gz: bed3f8f1c9dd29562c5e79da814fe10803904e318006896582e0e75ec990204c
3
+ metadata.gz: 1caabf88af9f0c4bba000b84da12a4b7cd3b17dbe9af4c551bebf4d966b1abde
4
+ data.tar.gz: 8f8e428811d1833cc483d77d750fefe182644c5f587e8fdf80cb4112519fef03
5
5
  SHA512:
6
- metadata.gz: e7112d435d34e08142c7b9994dc5efe017e5dd78eabbda8a3dbd4093cb21a342c8e71af5cc422f4f6d112b75464e7f625ab343a45af6a3229958cdb50b6f9475
7
- data.tar.gz: 32e43dbbd495e6be67626c821d029943d7760d28daaef4bf38790d6593543d453cff22f0e5ae18ea0bea850b87396620cbea89d6441a0937442a52725b0f36a6
6
+ metadata.gz: c204aab64a73f601cdeb26c1b6b64c01f242f9773b2d9fee240b225adb7c65931fa059d3d86c5e4a024549ed27431df2d4d08d721d9d0bed0b48c82e0fb31625
7
+ data.tar.gz: 33a7f8a21b08603afc44c5835955d6e4eada0c7c55ebff4df4864ba6570e2346d9cdcf4bc1c499a1576d6e15a64939f02bd783fc500c361bcac838a473dad84f
data/README.md CHANGED
@@ -29,36 +29,56 @@
29
29
  </a>
30
30
  </p>
31
31
 
32
+ ## Contents
33
+ - [Contents](#contents)
34
+ - [Features](#features)
35
+ - [Installation](#installation)
36
+ - [Use GitHub Template (Fastest Way)](#use-github-template-fastest-way)
37
+ - [Install as GitHub Remote Theme](#install-as-github-remote-theme)
38
+ - [Install as Ruby Gem](#install-as-ruby-gem)
39
+ - [Configuration](#configuration)
40
+ - [Adding Site Info](#adding-site-info)
41
+ - [`_config.yml`](#_configyml)
42
+ - [Adding Icons](#adding-icons)
43
+ - [Adding Social Media Links](#adding-social-media-links)
44
+ - [`social.yml`](#socialyml)
45
+ - [Adding Instagram/TikTok/YouTube Link-in-bio](#adding-instagramtiktokyoutube-link-in-bio)
46
+ - [`bio.yml`](#bioyml)
47
+ - [Remove Instagram/TikTok/YouTube Link-in-bio](#remove-instagramtiktokyoutube-link-in-bio)
48
+ - [Adding Links](#adding-links)
49
+ - [`links.yml`](#linksyml)
50
+ - [Contributing](#contributing)
51
+ - [Powered by Linkhub](#powered-by-linkhub)
52
+ - [Development](#development)
53
+ - [License](#license)
54
+
32
55
  ## Features
33
56
  - 😊 Based on the original [Linkhub](https://github.com/digitalmalayali/Linkhub) template!
34
- - 📸 Add links to Instagram, TikTok, YouTube or any posts similar to Later's link-in-bio!
57
+ - 📸 Add links to Instagram, TikTok, YouTube or any posts/reels/shorts similar to Later's link-in-bio!
35
58
  - ⚡ Uses a modified version of the lightweight CSS framework [chota](https://github.com/jenil/chota); the entire size of the site is around 160kb!
36
59
  - 🌙 Switch between dark and light modes; automatically choose the mode based on your system preference!
37
60
  - 😍 Icons powered by [iconify](https://github.com/iconify/iconify); find tons of free icons for almost any purpose!
38
61
  - 🔠 Categorize links; store your links under various categories!
62
+ - 🔍 SEO friendly; uses all the necessary Open Graph and Twitter Card tags for metadata!
39
63
 
40
64
  ## Installation
41
-
42
65
  There are multiple ways to install and set up Linkhub. Let's explore each of them.
43
66
 
44
67
  ### Use GitHub Template (Fastest Way)
45
-
46
68
  If you need the quickest way to set this up or if you're a complete beginner to Jekyll, using the GitHub template is the easiest option. You can also fork the repo.
47
69
 
48
- 1. Visit [Linkhub theme repository](https://github.com/digitalmalayali/linkhub-jekyll-theme).
70
+ 1. Visit [Linkhub](https://github.com/digitalmalayali/linkhub-jekyll-theme) theme repository.
49
71
  2. Click the **Use this template** button.
50
72
  3. Select **Create a new repository**.
51
73
  4. Give it a name and click **Create repository**.
52
- 5. Edit the `_config.yml` and `_data` files for customization. Check the [Usage](https://github.com/digitalmalayali/linkhub-jekyll-theme#usage) guide for details.
74
+ 5. Edit the `_config.yml` and `_data` files for customization. Check the [Configuration](#configuration) guide for details.
53
75
  6. Go to **Settings** > **Pages**. Under **Build and deployment**, select **GitHub Actions** as the source.
54
- 7. If you have a [custom domain](https://docs.github.com/articles/using-a-custom-domain-with-github-pages/), you can enter it. Otherwise, you can view the published website at GitHub.io once the building is complete!
76
+ 7. If you have a [custom domain](https://docs.github.com/articles/using-a-custom-domain-with-github-pages/), you can enter it. Otherwise, you can view the published website at `https://<username>.github.io/linkhub-jekyll-theme` once the building is complete!
55
77
 
56
78
  ### Install as GitHub Remote Theme
57
-
58
79
  Go to your site's `_config.yml` and replace `theme:` with `remote_theme: digitalmalayali/linkhub-jekyll-theme`.
59
80
 
60
81
  ### Install as Ruby Gem
61
-
62
82
  Add this line to your Jekyll site's `Gemfile`:
63
83
 
64
84
  ```ruby
@@ -79,38 +99,136 @@ Or install it yourself as:
79
99
 
80
100
  $ gem install linkhub-jekyll-theme
81
101
 
82
- ## Customization
83
- Linkhub is super-easy to customize!
102
+ ## Configuration
103
+ Linkhub is super-easy to customize! There is only one `layout` and that is [default.html](_layouts/default.html). Also, there are no `_posts`.
84
104
 
85
105
  ### Adding Site Info
86
- Edit the `_config.yml` file to specify your website's name, page title, description, Google Analytics and whether to show/hide the verified badge. This information will also be used for meta tags.
106
+ Edit the [_config.yml](_config.yml) file to specify your website's name, page title, description, Google Analytics and whether to show/hide the verified badge. This information will also be used for meta tags. For logo, make sure to use an image with 1:1 aspect ratio.
107
+
108
+ #### `_config.yml`
109
+ ```yml
110
+ # Jekyll
111
+ theme: linkhub-jekyll-theme
112
+
113
+ # Site Configuration
114
+ name: Linkhub # Name of your website
115
+ tagline: Links # Set your preferred page title
116
+ description: A free, open-source Jekyll link-in-bio theme. # Also used as a meta description
117
+ favicon: https://picsum.photos/32/32 # Path / URL to the favicon of your website (e.g., 'assets/images/favicon.png')
118
+ logo: https://picsum.photos/200 # Path / URL to the logo (e.g., 'assets/images/logo.png')
119
+ url: https://link.example.com # URL of your website
120
+ locale: en_GB # The value specifies the locale in which these tags are marked up. It follows the format `language_TERRITORY`.
121
+ ga4: G-XXXXXXX # Google Analytics 4 measurement ID (optional). Remove it if not needed.
122
+ twitter:
123
+ username: DigiMalayali # Used for SEO
124
+ image:
125
+ path: https://picsum.photos/200 # Used for SEO
126
+ type: jpeg # File format of image. Change according to your image. Supported types: https://en.wikipedia.org/wiki/Media_type#Common_examples
127
+ height: 100 # Pixels
128
+ width: 100
129
+ alt: logo
130
+
131
+ # Verified Badge Configuration
132
+ badge: true # Set to 'true' or 'false' to enable / disable the badge
133
+ icon: ri:verified-badge-fill # Enter the icon name for the badge from Iconify Design (https://icon-sets.iconify.design/)
134
+ color: '#dfb221' # Define the color of the badge
135
+
136
+ # Defaults
137
+ defaults:
138
+ -
139
+ scope:
140
+ path: ""
141
+ values:
142
+ layout: "default"
143
+
144
+ # Exclude
145
+ exclude: [README.md, Gemfile.lock, .jekyll-cache/, .github/, CHANGELOG.md, Gemfile, LICENSE.txt, funding.yml, linkhub-jekyll-theme.gemspec]
146
+ ```
87
147
 
88
148
  ### Adding Icons
89
149
  Icons are powered by the free and open-source icon framework [Iconify](https://github.com/iconify), offering a selection of over 150,000 icons. Visit the [Iconify icon sets website](https://icon-sets.iconify.design/) to search for your preferred icon. Once you find your desired icon, copy its name and use it in the respective fields.
90
150
 
91
151
  ### Adding Social Media Links
92
- Edit the `social.yml` file in the `_data` folder to add your social media profiles, along with your preferred icons and colors.
152
+ Edit the [social.yml](_data/social.yml) file in the [_data](_data) folder to add your social media profiles, along with your preferred icons and colors.
153
+
154
+ #### `social.yml`
155
+ ```yml
156
+ - name: facebook
157
+ url: https://www.facebook.com/example
158
+ icon: ri:facebook-fill
159
+ color: '#1877F2'
160
+
161
+ - name: instagram
162
+ url: https://www.instagram.com/example
163
+ icon: ri:instagram-fill
164
+ color: '#E4405F'
165
+ ```
93
166
 
94
167
  ### Adding Instagram/TikTok/YouTube Link-in-bio
95
- Like Later's link-in-bio feature, you can include external links to your Instagram, TikTok, and other posts by adding the name of social media, the link and image URL/path to `bio.yml` in the `_data` folder. You can either upload thumbnails of your Instagram, TikTok and YouTube posts to an image hosting service or create an `images` folder in `assets` and place them there. The image size doesn't matter, and it will be displayed similarly to a 3-column Instagram grid.
168
+ Like Later's link-in-bio feature, you can include external links to your Instagram, TikTok, and other posts by adding the name of social media, the link and image URL/path to [bio.yml](_data/bio.yml) in the [_data](_data) folder. You can either upload thumbnails of your Instagram, TikTok and YouTube posts to an image hosting service or create an `images` folder in [assets](assets) and place them there. By default, the images will be displayed with a 1:1 aspect ratio in a 3-column grid. You can use the `ratio` variable for vertical images with a 9:16 aspect ratio. Make sure to add the link you'd like to appear first to the top.
169
+
170
+ #### `bio.yml`
171
+ ```yml
172
+ - name: Instagram
173
+ items:
174
+ - url: https://www.example.com
175
+ image: https://picsum.photos/700/400 # You can use paths to images in the assets folder, e.g., assets/images/insta.jpg.
176
+ - url: https://www.example.com
177
+ image: https://picsum.photos/200
178
+
179
+ - name: YouTube
180
+ 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.
181
+ items:
182
+ - url: https://www.example.com
183
+ image: https://picsum.photos/720/1280
184
+ ```
185
+
186
+ ### Remove Instagram/TikTok/YouTube Link-in-bio
187
+ If you'd like to remove Instagram/TikTok/YouTube link-in-bio altogether, remove or comment out the following line in [default.html](_layouts/default.html) layout.
188
+
189
+ ```liquid
190
+ {% include bio.html %}
191
+ ```
96
192
 
97
193
  ### Adding Links
98
- Edit the `links.yml` file in the `_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.
194
+ 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.
195
+
196
+ #### `links.yml`
197
+
198
+ ```yml
199
+ - category: Blogs
200
+ items:
201
+ - title: Example
202
+ url: https://www.example.com
203
+ icon: ri:film-fill
204
+ tag: New
205
+
206
+ - title: Example 2
207
+ url: https://www.example.org
208
+ icon: simple-icons:googlenews
209
+
210
+ - category: Products
211
+ items:
212
+ - title: Example 3
213
+ url: https://www.example.com
214
+ ```
99
215
 
100
216
  ## Contributing
217
+ [Bug reports](https://github.com/digitalmalayali/linkhub-jekyll-theme) and [pull requests](https://github.com/digitalmalayali/linkhub-jekyll-theme/pulls) are welcome. If you like this theme, please give it a star! And if you've used this theme on your website, feel free to add it below.
101
218
 
102
- Bug reports and pull requests are welcome on [GitHub](https://github.com/digitalmalayali/linkhub-jekyll-theme). If you like this theme, please give it a star!
219
+ ## Powered by Linkhub
220
+ A list of websites that uses Linkhub theme. Please feel free to add your site.
221
+ - [links.digitalmalayali.in](https://links.digitalmalayali.in/)
222
+ - [links.josephvm.in](https://links.josephvm.in/)
103
223
 
104
224
  ## Development
105
-
106
225
  To set up your environment to develop this theme, run `bundle install`.
107
226
 
108
227
  Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
109
228
 
110
- When your theme is released, only the files in `_layouts`, `_includes`, `_data` and `assets` tracked with Git will be bundled.
229
+ When your theme is released, only the files in [_layouts](_layouts), [_includes](_includes), [_data](_data) and [assets](assets) tracked with Git will be bundled.
111
230
 
112
- To add a custom directory to your theme-gem, please edit the regexp in `linkhub-jekyll-theme.gemspec` accordingly.
231
+ To add a custom directory to your theme-gem, please edit the regexp in [linkhub-jekyll-theme.gemspec](linkhub-jekyll-theme.gemspec) accordingly.
113
232
 
114
233
  ## License
115
-
116
234
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/_config.yml CHANGED
@@ -5,16 +5,17 @@ theme: linkhub-jekyll-theme
5
5
  name: Linkhub # Name of your website
6
6
  tagline: Links # Set your preferred page title
7
7
  description: A free, open-source Jekyll link-in-bio theme. # Also used as a meta description
8
- favicon: https://picsum.photos/100 # Path / URL to the favicon of your website (e.g., 'assets/images/favicon.png')
8
+ favicon: https://picsum.photos/32/32 # Path / URL to the favicon of your website (e.g., 'assets/images/favicon.png')
9
9
  logo: https://picsum.photos/200 # Path / URL to the logo (e.g., 'assets/images/logo.png')
10
10
  url: https://link.example.com # URL of your website
11
+ locale: en_GB # The value specifies the locale in which these tags are marked up. It follows the format `language_TERRITORY`.
11
12
  ga4: G-XXXXXXX # Google Analytics 4 measurement ID (optional). Remove it if not needed.
12
13
  twitter:
13
- username: username # Used for SEO
14
- card: summary
14
+ username: DigiMalayali # Used for SEO
15
15
  image:
16
- path: https://picsum.photos/200 #Used for SEO
17
- height: 100
16
+ path: https://picsum.photos/200 # Used for SEO
17
+ type: jpeg # File format of image. Change according to your image. Supported types: https://en.wikipedia.org/wiki/Media_type#Common_examples
18
+ height: 100 # Pixels
18
19
  width: 100
19
20
  alt: logo
20
21
 
@@ -22,10 +23,6 @@ image:
22
23
  badge: true # Set to 'true' or 'false' to enable / disable the badge
23
24
  icon: ri:verified-badge-fill # Enter the icon name for the badge from Iconify Design (https://icon-sets.iconify.design/)
24
25
  color: '#dfb221' # Define the color of the badge
25
-
26
- # Plugins
27
- plugins:
28
- - jekyll-seo-tag
29
26
 
30
27
  # Defaults
31
28
  defaults:
@@ -36,4 +33,4 @@ defaults:
36
33
  layout: "default"
37
34
 
38
35
  # Exclude
39
- exclude: [README.md, Gemfile.lock, .jekyll-cache/, .github/, Gemfile, LICENSE.txt, funding.yml, linkhub-jekyll-theme.gemspec]
36
+ exclude: [README.md, Gemfile.lock, .jekyll-cache/, .github/, CHANGELOG.md, Gemfile, LICENSE.txt, funding.yml, linkhub-jekyll-theme.gemspec]
data/_data/bio.yml CHANGED
@@ -1,18 +1,22 @@
1
- - name: Instagram
1
+ - name: YouTube Shorts
2
+ 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.
2
3
  items:
3
4
  - url: https://www.example.com
4
- image: https://picsum.photos/700/400 # You can use paths to images in the assets folder, e.g., assets/images/insta.jpg.
5
+ image: https://picsum.photos/1080/920
5
6
 
6
7
  - url: https://www.example.org
7
- image: https://picsum.photos/500
8
+ image: https://picsum.photos/540/960
8
9
 
9
10
  - url: https://www.example.com
10
- image: https://picsum.photos/250/300
11
+ image: https://picsum.photos/720/1280
11
12
 
12
- - name: YouTube
13
+ - name: Instagram
13
14
  items:
14
15
  - url: https://www.example.com
15
- image: https://picsum.photos/300/400
16
+ image: https://picsum.photos/700/400 # You can use paths to images in the assets folder, e.g., assets/images/insta.jpg.
16
17
 
17
18
  - url: https://www.example.org
18
- image: https://picsum.photos/400/500
19
+ image: https://picsum.photos/500
20
+
21
+ - url: https://www.example.com
22
+ image: https://picsum.photos/250/300
data/_data/links.yml CHANGED
@@ -2,7 +2,7 @@
2
2
  items:
3
3
  - title: Example
4
4
  url: https://www.example.com
5
- icon: ri:film-fill
5
+ icon: ri:film-fill # Icons are optional.
6
6
  tag: New
7
7
 
8
8
  - title: Example 2
@@ -13,7 +13,6 @@
13
13
  items:
14
14
  - title: Example 3
15
15
  url: https://www.example.com
16
- icon: ri:ball-pen-fill
17
16
 
18
17
  - category: Works
19
18
  items:
data/_includes/bio.html CHANGED
@@ -4,11 +4,19 @@
4
4
  <summary class="text-center text-error">{{ name.name }} Link-in-Bio</summary>
5
5
  <div class="bio-gallery">
6
6
  {% for item in name.items %}
7
+ {% if name.ratio %}
8
+ <div class="bio-item" style="aspect-ratio: 9/16;">
9
+ <a href="{{ item.url }}" target="_blank" aria-label="{{ name.name }} link-in-bio">
10
+ <img class="bio-img text-center" src="{{ item.image }}" width="100%" height="100%"
11
+ alt="{{ name.name }} post"></a>
12
+ </div>
13
+ {% else %}
7
14
  <div class="bio-item">
8
15
  <a href="{{ item.url }}" target="_blank" aria-label="{{ name.name }} link-in-bio">
9
16
  <img class="bio-img text-center" src="{{ item.image }}" width="100%" height="100%"
10
17
  alt="{{ name.name }} post"></a>
11
18
  </div>
19
+ {% endif %}
12
20
  {% endfor %}
13
21
  </div>
14
22
  </details>
data/_includes/links.html CHANGED
@@ -8,8 +8,8 @@
8
8
  {% else %}
9
9
  <div class="col is-center">
10
10
  {% endif %}
11
- <a class="button outline secondary" href="{{ item.url }}" target="_blank"><span class="iconify-inline"
12
- data-icon="{{ item.icon }}"></span>{{ item.title }}
11
+ <a class="button outline secondary" href="{{ item.url }}" target="_blank">{% if item.icon %}<span class="iconify-inline"
12
+ data-icon="{{ item.icon }}"></span>{% endif %}{{ item.title }}
13
13
  {% if item.tag %}<span class="tag is-small bd-success text-success">{{ item.tag }}</span>{%
14
14
  endif %}</a>
15
15
  </div>
@@ -1,7 +1,8 @@
1
1
  <nav class="nav">
2
2
  <div class="nav-center">
3
3
  {% for social in site.data.social %}
4
- <a class="brand" href="{{ social.url }}" target="_blank" aria-label="{{ social.name }}">
4
+ <a class="brand" href="{{ social.url }}" target="_blank" aria-label="{{ social.name }}" {% if
5
+ social.name=="mastodon" %}rel="me" {% endif %}>
5
6
  <span class="iconify-inline" data-icon="{{ social.icon }}" style="color: {{ social.color }}"></span>
6
7
  </a>
7
8
  {% endfor %}
@@ -11,7 +11,22 @@
11
11
  <link rel="shortcut icon" href="{{ site.favicon }}" type="image/x-icon">
12
12
  <link rel="stylesheet" href="assets/style.css">
13
13
  <script src="https://code.iconify.design/2/2.0.0/iconify.min.js"></script>
14
- {% seo %}
14
+ <meta name="description" content="{{ site.description }}">
15
+ <meta property="og:title" content="{{ site.name }}"/>
16
+ <meta property="og:description" content="{{ site.description }}">
17
+ <meta property="og:type" content="website"/>
18
+ <meta property="og:url" content="{{ site.url }}"/>
19
+ <meta property="og:locale" content="{{ site.locale }}"/>
20
+ <meta property="og:image" content="{{ site.image.path }}"/>
21
+ <meta property="og:image:type" content="image/{{ site.image.type }}"/>
22
+ <meta property="og:image:width" content="{{ site.image.width }}">
23
+ <meta property="og:image:height" content="{{ site.image.height }}">
24
+ <meta property="og:image:alt" content="{{ site.image.alt }}">
25
+ <meta name="twitter:card" content="summary" />
26
+ <meta name="twitter:site" content="@{{ site.twitter.username }}" />
27
+ <meta name="twitter:title" content="{{ site.name }}" />
28
+ <meta name="twitter:description" content="{{ site.description }}" />
29
+ <meta name="twitter:image" content="{{ site.image.path }}" />
15
30
  </head>
16
31
 
17
32
  <body>
@@ -26,10 +41,10 @@
26
41
  </header>
27
42
 
28
43
  <!-- Dark / Light Mode Switch -->
29
- <a class="bd-primary is-rounded is-center" href="#" id="theme-switch"
30
- onclick="switchMode(this); return false;" aria-label="Switch Theme" role="button">☀️</a>
31
- <!-- Social Media Links -->
32
- {% include social.html %}
44
+ <a class="bd-primary is-rounded is-center" href="#" id="theme-switch" onclick="switchMode(this); return false;"
45
+ aria-label="Switch Theme" role="button">☀️</a>
46
+ <!-- Social Media Links -->
47
+ {% include social.html %}
33
48
 
34
49
  <!-- Insta/TikTok/YouTube Link-in-bio -->
35
50
  {% include bio.html %}
data/assets/style.css CHANGED
@@ -1,5 +1,5 @@
1
1
  :root{--bg-color:#fff;--bg-secondary-color:#f3f3f6;--color-primary:#168D54;--color-lightGrey:#d2d6dd;--color-grey:#3f4144;--color-error:#D74747;--color-success:#28bd14;--grid-maxWidth:120rem;--grid-gutter:2rem;--font-size:1.6rem;--font-color:#333;--font-family-sans:-apple-system,"BlinkMacSystemFont","Avenir","Avenir Next","Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;--font-family-mono:monaco,"Consolas","Lucida Console",monospace}html{-webkit-box-sizing:border-box;box-sizing:border-box;font-size:62.5%;line-height:1.15;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%}*,:after,:before{-webkit-box-sizing:inherit;box-sizing:inherit}body{background-color:var(--bg-color);line-height:1.6;font-size:var(--font-size);color:var(--font-color);font-family:"Segoe UI","Helvetica Neue",sans-serif;font-family:var(--font-family-sans);margin:0;padding:0}
2
2
  body.dark{--bg-color:#0c0c0c;--bg-secondary-color:#131316;--font-color:#f5f5f5;--color-grey:#ccc}h3,h5,h6{font-weight:500;margin:.35em 0 .6em}h3{font-size:1.5em}h5{font-size:1em}h6{font-size:.85em}a{color:var(--color-primary);text-decoration:none}a:hover:not(.button){opacity:.75}p{margin-top:0}img{max-width:100%}.container{max-width:720px;margin:3em auto 0;width:96%;padding:0 calc(var(--grid-gutter)/2)}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-left:calc(var(--grid-gutter)/-2);margin-right:calc(var(--grid-gutter)/-2)}.col{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:0 calc(var(--grid-gutter)/2) calc(var(--grid-gutter)/2)}.button{padding:1rem 2.5rem;color:var(--color-grey);background:var(--color-lightGrey);border-radius:4px;border:1px solid transparent;font-size:var(--font-size);line-height:1;text-align:center;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;text-decoration:none;-webkit-transform:scale(1);transform:scale(1);display:inline-block;cursor:pointer}
3
3
  .button.secondary{color:#fff;z-index:1;background-color:#000}.button:hover{opacity:.8}.button.secondary{background-color:var(--color-grey)}.button.outline{background-color:transparent;border-color:var(--color-lightGrey)}.button.outline.secondary{border-color:var(--color-grey);color:var(--color-grey)}.button:active:not(:disabled),[type=button]:active:not(:disabled),[type=reset]:active:not(:disabled),[type=submit]:active:not(:disabled),button:active:not(:disabled){-webkit-transform:scale(.98);transform:scale(.98)}::-webkit-input-placeholder{color:#bdbfc4}::-moz-placeholder{color:#bdbfc4}:-ms-input-placeholder{color:#bdbfc4}::-ms-input-placeholder{color:#bdbfc4}.nav{min-height:5rem;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.nav,.nav .brand,.nav a,.nav-center{display:-webkit-box;display:-ms-flexbox;display:flex}.nav-center{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.nav .brand,.nav a{text-decoration:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:1rem 0;color:var(--color-grey)}
4
- .nav .brand{font-size:1.75em;padding-top:0;padding-bottom:0}.tag{display:inline-block;border:1px solid var(--color-lightGrey);text-transform:uppercase;color:var(--color-grey);padding:.5rem;margin-left:.2em;line-height:1;letter-spacing:.5px}.tag.is-small{padding:.4rem;font-size:.75em}.bd-primary{border:1px solid var(--color-primary)!important}.bd-success{border:1px solid var(--color-success)!important}.text-grey{color:var(--color-grey)!important}.text-error{color:var(--color-error)!important}.text-success{color:var(--color-success)!important}.text-center{text-align:center}.is-full-screen{width:100%;min-height:100vh}.is-center,.is-vertical-align{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.is-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.is-rounded{border-radius:100%}.iconify-inline{margin-right:.5em}.iconify-inline.badge{margin-left:.3em}.top{flex-direction:column}#theme-switch{width:3em;height:3em;position:fixed;margin:35rem 0 0;z-index:1}
5
- section,summary{margin:.8em 0 .5em}.bio-gallery{display:grid;grid-template-columns:repeat(3,1fr)}.bio-item{aspect-ratio:1;margin:.2em;overflow:hidden}.bio-img{object-fit:cover;object-position:center}.col.link{position:relative}footer{margin-top:.5em;margin-bottom:2em}@media screen and (max-width:599px){.container{width:100%}.col{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;max-width:100%}}@media screen and (max-width:480px){.nav{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nav-center{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}
4
+ .nav .brand{font-size:1.75em;padding-top:0;padding-bottom:1rem}.tag{display:inline-block;border:1px solid var(--color-lightGrey);text-transform:uppercase;color:var(--color-grey);padding:.5rem;margin-left:.2em;line-height:1;letter-spacing:.5px}.tag.is-small{padding:.4rem;font-size:.75em}.bd-primary{border:1px solid var(--color-primary)!important}.bd-success{border:1px solid var(--color-success)!important}.text-grey{color:var(--color-grey)!important}.text-error{color:var(--color-error)!important}.text-success{color:var(--color-success)!important}.text-center{text-align:center}.is-full-screen{width:100%;min-height:100vh}.is-center,.is-vertical-align{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.is-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.is-rounded{border-radius:100%}.iconify-inline{margin-right:.5em}.iconify-inline.badge{margin-left:.3em}.top{flex-direction:column}#theme-switch{width:3em;height:3em;position:fixed;margin:35rem 0 0;z-index:1}
5
+ section,summary{margin:.4em 0 .5em}.bio-gallery{display:grid;grid-template-columns:repeat(3,1fr)}.bio-item{aspect-ratio:1;margin:.2em;overflow:hidden}.bio-img{object-fit:cover;object-position:center}.col.link{position:relative}footer{margin-top:.5em;margin-bottom:2em}@media screen and (max-width:599px){.container{width:100%}.col{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;max-width:100%}}@media screen and (max-width:480px){.nav{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nav-center{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linkhub-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Digital Malayali
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-04 00:00:00.000000000 Z
11
+ date: 2023-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '4.3'
27
- - !ruby/object:Gem::Dependency
28
- name: jekyll-seo-tag
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 2.8.0
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 2.8.0
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: bundler
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -73,10 +59,15 @@ files:
73
59
  - _layouts/default.html
74
60
  - assets/script.js
75
61
  - assets/style.css
76
- homepage: https://github.com/digitalmalayali/linkhub-jekyll-theme
62
+ homepage: https://digitalmalayali.github.io/linkhub-jekyll-theme
77
63
  licenses:
78
64
  - MIT
79
- metadata: {}
65
+ metadata:
66
+ bug_tracker_uri: https://github.com/digitalmalayali/linkhub-jekyll-theme/issues
67
+ changelog_uri: https://github.com/digitalmalayali/linkhub-jekyll-theme/blob/main/CHANGELOG.md
68
+ documentation_uri: https://github.com/digitalmalayali/linkhub-jekyll-theme#readme
69
+ source_code_uri: https://github.com/digitalmalayali/linkhub-jekyll-theme
70
+ funding_uri: https://liberapay.com/zcraber
80
71
  post_install_message:
81
72
  rdoc_options: []
82
73
  require_paths: