jekyll-theme-linky 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5323e3a0dcffa3ce96b3f0440a5303d38e0c224f604937618aa0ee60e460abb0
4
+ data.tar.gz: 740831e6ae760690aa54d36696b7e5a45624570031aca296dc69223b659ea745
5
+ SHA512:
6
+ metadata.gz: 98cbdb1f88d140768cabb757ddce961a4e09988f5ffc74adc8695c48605fb46b1625a35c93df318b22b4eaf0a5d433a6109608256a1aaba33f7abf6bde015c5b
7
+ data.tar.gz: 86f360140ca4e37eb0ca7b9ce9b8f382704378494da8d2e69976c6a14349e8fb49bb748b69af394aec23e0209c0630e990e23424c7acfedeeba6869475b760ab
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Paul Roub
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,124 @@
1
+ # linky
2
+
3
+ Work-in-progress linktree-esque theme, aiming for easy integration with Decap CMS.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "linky"
11
+ ```
12
+
13
+ And add this line to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: linky
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install linky
26
+
27
+ ## Usage
28
+
29
+ Use the [links layout][ll] on any page (including the home page) to display a list of all items in the `links` collection. Any additional content
30
+ within your page will be displayed after the list.
31
+
32
+ The `links` collection is defined by individual files in the `_links` folder. Only the YAML frontmatter of these files will be used; content
33
+ is unnecessary and will be ignored.
34
+
35
+ You will need to add a `links` collection to your Jekyll config, which is as simple as adding
36
+
37
+ ```yml
38
+ collections:
39
+ - links
40
+ ```
41
+
42
+ to your `_config.yml` (see this repo's [config][config] for an example).
43
+
44
+
45
+ ## Configuration
46
+
47
+ ### Subhead(s)
48
+
49
+ In addition to your site's title (always displayed at the top of the links page), you can define one or more "subhead" lines to display just below the title.
50
+
51
+ These are defined as a `subheads` list in `_config.yml`:
52
+
53
+ ```yml
54
+ subheads:
55
+ - "A Linktree-esque Jekyll theme, compatible with Decap CMS."
56
+ - "Probably more I could say here."
57
+ ```
58
+
59
+ ### Colors
60
+
61
+ You can override the color scheme of a Links page by adding a `linky` section to your `_config.yml` (see [the example in this repo][config]) and
62
+ setting one or more of these values:
63
+
64
+ ```yml
65
+ linky:
66
+ body_background: "#fa0616"
67
+ body_foreground: "#f0f0f0"
68
+ button_foreground: "#f16293"
69
+ button_background: "#f16293"
70
+ ```
71
+
72
+ These alter the page's background and foreground, and the background and foreground of each link "button".
73
+
74
+
75
+ ### Link Metadata
76
+
77
+ A link item is defined using the following fields:
78
+
79
+ ```
80
+ ---
81
+ link: "https://example.com/"
82
+ image: "/images/example.jpg"
83
+ title: 'My link test'
84
+ priority: 5
85
+ expires: 2024-11-11
86
+ ---
87
+ ```
88
+
89
+ - `link`
90
+
91
+ This is the target of our link. Both the image and text will point to this address. It can be a full URL or a relative
92
+ URL to another page on your site.
93
+
94
+ - `image`
95
+
96
+ The URL of an image to prefix the link. This should be an image on your site, to be safe -- but you *can* reference an external image.
97
+ Note that the image will be displayed at a small size (3.5em in the default styles) and cropped to a circular shape.
98
+
99
+ - `title`
100
+
101
+ The text to display in our link entry. Shorter text will look cleaner, but there's no arbitrary limit.
102
+
103
+ - `priority`
104
+
105
+ Links are sorted by numerical priority (*i.e.* 1 comes first), then by `title`.
106
+
107
+ - `expires`
108
+
109
+ A date after which this link should no longer be displayed.
110
+
111
+ Note that this will only take effect on a rebuild; there's no runtime JavaScript, etc. to disable a link that's already been deployed.
112
+
113
+
114
+ ## Contributing
115
+
116
+ Bug reports and pull requests are welcome on GitHub at https://github.com/paulroub/linky. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
117
+
118
+
119
+ ## License
120
+
121
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
122
+
123
+ [ll]: https://github.com/paulroub/linky/blob/main/_layouts/links.html
124
+ [config]: https://github.com/paulroub/linky/blob/main/_config.yml
data/_config.yml ADDED
@@ -0,0 +1,43 @@
1
+ # Welcome to Jekyll!
2
+ #
3
+ # This config file is meant for settings that affect your whole blog, values
4
+ # which you are expected to set up once and rarely edit after that. If you find
5
+ # yourself editing this file very often, consider using Jekyll's data files
6
+ # feature for the data you need to update frequently.
7
+ #
8
+ # For technical reasons, this file is *NOT* reloaded automatically when you use
9
+ # 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10
+ #
11
+ # If you need help with YAML syntax, here are some quick references for you:
12
+ # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13
+ # https://learnxinyminutes.com/docs/yaml/
14
+ #
15
+ # Site settings
16
+ # These are used to personalize your new site. If you look in the HTML files,
17
+ # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18
+ # You can create any custom variable you would like, and they will be accessible
19
+ # in the templates via {{ site.myvariable }}.
20
+
21
+ title: Linky
22
+ subheads:
23
+ - "A Linktree-esque Jekyll theme, compatible with Decap CMS."
24
+
25
+ email: paul@roub.net
26
+ description: >- # this means to ignore newlines until "baseurl:"
27
+ A Linktree-esque Jekyll theme, compatible with Decap CMS.
28
+ baseurl: "" # the subpath of your site, e.g. /blog
29
+ url: "" # the base hostname & protocol for your site, e.g. http://example.com
30
+ github_username: paulroub
31
+
32
+ # Build settings
33
+ theme: jekyll-theme-linky
34
+ plugins:
35
+ - jekyll-feed
36
+
37
+ linky:
38
+ body_background: "#030303"
39
+ body_foreground: "#F0F0F0"
40
+ button_background: "#f16293"
41
+
42
+ collections:
43
+ - links
@@ -0,0 +1,36 @@
1
+ <!-- what's our env? {{ jekyll.environment }}, {{ site.plausible_io }} -->
2
+ {%- if jekyll.environment == 'production' -%}
3
+ <!-- BEGIN ANALYTICS -->
4
+
5
+ {%- if site.google_analytics -%}
6
+ <script
7
+ async
8
+ src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"
9
+ ></script>
10
+ <script>
11
+ window["ga-disable-{{ site.google_analytics }}"] =
12
+ window.doNotTrack === "1" ||
13
+ navigator.doNotTrack === "1" ||
14
+ navigator.doNotTrack === "yes" ||
15
+ navigator.msDoNotTrack === "1";
16
+ window.dataLayer = window.dataLayer || [];
17
+ function gtag() {
18
+ window.dataLayer.push(arguments);
19
+ }
20
+ gtag("js", new Date());
21
+
22
+ gtag("config", "{{ site.google_analytics }}");
23
+ </script>
24
+ {%- endif -%}
25
+ {%- if site.plausible_io -%}
26
+ <!-- BEGIN PLAUSIBLE -->
27
+ <script
28
+ defer
29
+ data-domain="{{ site.plausible_io }}"
30
+ src="https://plausible.io/js/script.outbound-links.js"
31
+ ></script>
32
+ <!-- END PLAUSIBLE -->
33
+ {%- endif -%}
34
+ <!-- END ANALYTICS -->
35
+
36
+ {%- endif -%}
@@ -0,0 +1,6 @@
1
+ {% comment %}
2
+ Placeholder to allow defining custom head, in principle, you can add anything here, e.g. favicons:
3
+
4
+ 1. Head over to https://realfavicongenerator.net/ to add your own favicons.
5
+ 2. Customize default _includes/custom-head.html in your source directory and insert the given code snippet.
6
+ {% endcomment %}
@@ -0,0 +1,11 @@
1
+ <head>
2
+ <meta charset="utf-8" />
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
4
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
5
+ {%- seo -%} {%- feed_meta -%}
6
+ <link rel="icon" href="/favicon.ico" sizes="any" />
7
+
8
+ <link rel="stylesheet" href="/assets/styles.css" />
9
+
10
+ {%- include analytics.html -%} {%- include custom-head.html -%}
11
+ </head>
@@ -0,0 +1,5 @@
1
+ <header class="site-header" role="banner">
2
+ {% if site.header_image %}
3
+ <img class="logo" src="{{ site.header_image }}" alt="{{ site.title }}" />
4
+ {% endif %}
5
+ </header>
@@ -0,0 +1,21 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+
8
+
9
+ {%- include header.html -%}
10
+
11
+ <main class="page-content" aria-label="Content">
12
+ <div class="wrapper">
13
+ {{ content }}
14
+ </div>
15
+ </main>
16
+
17
+
18
+
19
+ </body>
20
+
21
+ </html>
@@ -0,0 +1,116 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="link-list">
6
+ {%- if site.title -%}
7
+ <h1>{{ site.title }}</h1>
8
+ {%- endif -%} {%- if site.subheads -%}
9
+ <div class="subheads">
10
+ {%- for subhead in site.subheads -%}
11
+ <p>{{ subhead }}</p>
12
+ {%- endfor -%}
13
+ </div>
14
+ {%- endif -%}
15
+
16
+ <ul class="socials">
17
+ {%- if site.tiktok_username -%}
18
+ <li>
19
+ <a href="https://www.tiktok.com/@{{ site.tiktok_username }}"
20
+ ><img
21
+ src="/assets/images/tiktok-logo.svg"
22
+ alt="TikTok"
23
+ class="social-logo"
24
+ /></a>
25
+ </li>
26
+ {%- endif -%} {%- if site.instagram_username -%}
27
+ <li>
28
+ <a href="https://instagram.com/{{ site.instagram_username }}"
29
+ ><img
30
+ src="/assets/images/instagram-logo.svg"
31
+ alt="Instagram"
32
+ class="social-logo"
33
+ /></a>
34
+ </li>
35
+ {%- endif -%}
36
+
37
+ {%- if site.email -%}
38
+ <li>
39
+ <a href="mailto:{{ site.email }}"
40
+ ><img
41
+ src="/assets/images/email-logo.svg"
42
+ alt="email"
43
+ class="social-logo"
44
+ /></a>
45
+ </li>
46
+ {%- endif -%}
47
+
48
+ {%- if site.threads_username -%}
49
+ <li>
50
+ <a href="https://threads.net/@{{ site.threads_username }}"
51
+ ><img
52
+ src="/assets/images/threads-logo.svg"
53
+ alt="Threads"
54
+ class="social-logo"
55
+ /></a>
56
+ </li>
57
+ {%- endif -%}
58
+
59
+ {%- if site.pinterest_username -%}
60
+ <li>
61
+ <a href="https://pinterest.com/{{ site.pinterest_username }}"
62
+ ><img
63
+ src="/assets/images/pinterest-logo.svg"
64
+ alt="Pinterest"
65
+ class="social-logo"
66
+ /></a>
67
+ </li>
68
+ {%- endif -%}
69
+
70
+ {%- if site.cashapp_username -%}
71
+ <li>
72
+ <a href="https://cash.app/${{ site.cashapp_username }}"
73
+ ><img
74
+ src="/assets/images/cashapp-logo.svg"
75
+ alt="Cash App"
76
+ class="social-logo"
77
+ /></a>
78
+ </li>
79
+ {%- endif -%} {%- if site.venmo_username -%}
80
+ <li>
81
+ <a href="https://venmo.com/u/{{ site.venmo_username }}"
82
+ ><img
83
+ src="/assets/images/venmo-logo.svg"
84
+ alt="Venmo"
85
+ class="social-logo"
86
+ /></a>
87
+ </li>
88
+ {%- endif -%}
89
+ </ul>
90
+
91
+ {%- if page.title -%}
92
+ <h1 class="page-heading">{{ page.title }}</h1>
93
+ {%- endif -%}
94
+
95
+ <ul class="links">
96
+
97
+ {% assign current_date = site.time | date: "%Y-%m-%d" %}
98
+ {% assign valid_links = site.links | where_exp: "link", "link.expires == nil or link.expires >= current_date" %}
99
+
100
+ {% assign priorities = valid_links | sort: "priority" | group_by: 'priority' %}
101
+
102
+ {% for priority in priorities %}
103
+ {% assign sorted_links = priority.items | sort: 'title' %}
104
+
105
+ {% for link in sorted_links %}
106
+ <li class="link" data-priority="{{ link.priority }}">
107
+ <a href="{{ link.link }}">
108
+ <img src="{{ link.image }}" class="link-logo" alt="{{ link.title }}"> </a>
109
+ <a class="link-desc" href="{{ link.link }}">{{ link.title }}</a>
110
+ </li>
111
+ {% endfor %}
112
+ {% endfor %}
113
+ </ul>
114
+
115
+ {{ content }}
116
+ </div>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
data/_sass/linky.scss ADDED
@@ -0,0 +1,138 @@
1
+ :root {
2
+ --base-font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto,
3
+ helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
4
+ "Segoe UI Symbol";
5
+ --body-background: #{$linky_body_background};
6
+ --body-foreground: #{$linky_body_foreground};
7
+ --button-background: #{$linky_button_background};
8
+ --button-foreground: #{$linky_button_foreground};
9
+ --content-width-max: 640px;
10
+ }
11
+
12
+ * {
13
+ box-sizing: border-box;
14
+ }
15
+
16
+ body {
17
+ background-color: var(--body-background);
18
+ color: var(--body-foreground);
19
+ font-family: var(--base-font-family);
20
+ font-size: 16px;
21
+ }
22
+
23
+ .wrapper {
24
+ max-width: var(--content-width-max);
25
+ margin: 0 auto;
26
+ }
27
+
28
+ .subheads {
29
+ font-style: italic;
30
+ font-size: 110%;
31
+ text-align: center;
32
+ margin: 0 0 1em;
33
+ }
34
+
35
+ .socials {
36
+ display: flex;
37
+ margin: 1em 0 2em;
38
+ padding: 0;
39
+ list-style: none;
40
+ column-gap: 2em;
41
+ justify-content: center;
42
+ }
43
+
44
+ .social-logo {
45
+ height: 3.5em;
46
+ }
47
+
48
+ .link {
49
+ font-size: 24px;
50
+ display: flex;
51
+ flex-direction: row;
52
+ justify-content: center;
53
+ align-items: center;
54
+ column-gap: 0.5em;
55
+ }
56
+
57
+ .link-desc {
58
+ flex: 1;
59
+ }
60
+
61
+ .link-logo {
62
+ height: 1.5em;
63
+ width: 1.5em;
64
+ display: block;
65
+ flex: 0;
66
+ border-radius: 0.75em;
67
+ }
68
+
69
+ .links {
70
+ padding: 0;
71
+ margin: 0 auto;
72
+ width: 100%;
73
+ max-width: 600px;
74
+ }
75
+
76
+ li.link {
77
+ list-style: none;
78
+ margin: 1em auto;
79
+ min-width: 150px;
80
+ max-width: 600px;
81
+ background-color: var(--button-background);
82
+ padding: 0.5em;
83
+ border-radius: 1em;
84
+ cursor: pointer;
85
+ text-align: center;
86
+ }
87
+
88
+ .logo {
89
+ display: block;
90
+ margin: 0 auto;
91
+ width: 100%;
92
+ max-width: 300px;
93
+ border-radius: 50%;
94
+ }
95
+
96
+ .site-header {
97
+ max-width: var(--content-width-max);
98
+ border: none;
99
+ margin: 1em auto 0;
100
+ padding: 1em 0 0;
101
+ background-color: var(--body-background);
102
+ }
103
+
104
+ .page-content {
105
+ padding-top: 0;
106
+ }
107
+
108
+ .page-content .instagram-media,
109
+ .page-content .tiktok-embed {
110
+ display: block;
111
+ width: 100%;
112
+ max-width: 540px;
113
+ min-width: 326px;
114
+ margin: 1em auto;
115
+ }
116
+
117
+ .cite {
118
+ font-style: italic;
119
+ }
120
+
121
+ a,
122
+ a:link,
123
+ a:visited,
124
+ a:active {
125
+ color: var(--body-foreground);
126
+ text-decoration: none;
127
+ }
128
+
129
+ a:hover {
130
+ text-decoration: underline;
131
+ }
132
+
133
+ h1 {
134
+ font-size: 150%;
135
+ font-weight: 700;
136
+ margin: 0 auto;
137
+ text-align: center;
138
+ }
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="#fff"><path d="m15.479 24h-6.977c-2.349 0-3.527 0-4.846-.417a1.346 1.346 0 0 1 -.059-.019 5.423 5.423 0 0 1 -3.183-3.208c-.414-1.344-.414-2.523-.414-4.871v-6.97c0-2.349 0-3.528.416-4.848a5.441 5.441 0 0 1 3.225-3.252c1.335-.415 2.516-.415 4.871-.415h6.957c2.355 0 3.538 0 4.868.427a5.44 5.44 0 0 1 3.239 3.226c.424 1.344.424 2.526.424 4.881v6.951c0 2.349 0 3.528-.416 4.848a5.439 5.439 0 0 1 -3.235 3.252c-1.334.415-2.516.415-4.87.415zm-11.543-1.377.021.007c1.172.37 2.299.37 4.545.37h6.977c2.253 0 3.384 0 4.548-.361a4.417 4.417 0 0 0 2.602-2.597c.371-1.182.371-2.31.371-4.557v-6.951c0-2.253 0-3.384-.369-4.557a4.415 4.415 0 0 0 -2.588-2.595c-1.192-.382-2.252-.382-4.574-.382h-6.957c-2.253 0-3.384 0-4.548.361a4.412 4.412 0 0 0 -2.592 2.596c-.372 1.183-.372 2.311-.372 4.558v6.97c0 2.248 0 3.376.361 4.551a4.413 4.413 0 0 0 2.575 2.587z"/><path d="m11.42 20.408h-1.79c-.018 0-.126-.011-.144-.013-.518-.116-.838-.517-.838-.985 0-.06.006-.118.016-.174l.007-.036.18-.813a6.988 6.988 0 0 1 -2.638-1.558.522.522 0 0 1 -.087-.108.98.98 0 0 1 .078-1.297l.006-.006 1-.97a1.011 1.011 0 0 1 1.366 0 4.291 4.291 0 0 0 3.035 1.181c.778 0 1.678-.241 1.678-.921 0-.394-.354-.568-1.754-1.082l-.461-.17c-1.854-.664-3.755-1.668-3.755-4.07 0-2.35 1.704-3.928 4.476-4.184l.174-.857a.98.98 0 0 1 .96-.781l1.941.013c.592.133.926.657.807 1.179l-.185.934a8.014 8.014 0 0 1 2.23 1.333c.246.253.346.508.339.773a.952.952 0 0 1 -.299.67l-.919.92a1.02 1.02 0 0 1 -1.354.034 4.483 4.483 0 0 0 -2.892-1.058c-.239 0-1.438.034-1.438.71 0 .429.517.666 1.612 1.07l.304.112c2.154.718 4.164 1.718 4.164 4.11 0 2.414-1.819 4.119-4.67 4.419l-.182.838a.983.983 0 0 1 -.967.787zm-1.768-1.013a.03.03 0 0 0 -.002.01l1.77.003.252-1.196a.498.498 0 0 1 .458-.393c2.535-.152 4.11-1.475 4.11-3.453 0-1.666-1.339-2.447-3.498-3.167l-.315-.116c-1.114-.411-2.267-.836-2.267-2.009 0-1.055.935-1.71 2.439-1.71a5.492 5.492 0 0 1 3.544 1.299l.922-.912a7.436 7.436 0 0 0 -2.305-1.262.5.5 0 0 1 -.332-.571l.271-1.371-.031.013-1.729.002-.24 1.21a.5.5 0 0 1 -.467.4c-.918.042-3.913.399-3.913 3.212 0 1.677 1.238 2.465 3.099 3.131l.462.171c1.451.533 2.409.885 2.409 2.021 0 1.169-1.108 1.942-2.751 1.921-1.34 0-2.67-.529-3.653-1.458l-.963.95.014.015a6.035 6.035 0 0 0 2.628 1.417.5.5 0 0 1 .364.592z"/></g></svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg enable-background="new 0 0 24 24"
3
+ viewBox="0 0 24 24"
4
+ class="sc-gKsewC hxdUPG"
5
+ xmlns="http://www.w3.org/2000/svg">
6
+ <title data-testid="svgTitle"
7
+ id="title_0.25950389245971284">email</title>
8
+ <path fill="#fff"
9
+ d="M18.821,20.5H5.179A3.683,3.683,0,0,1,1.5,16.821V7.179A3.683,3.683,0,0,1,5.179,3.5H18.821A3.683,3.683,0,0,1,22.5,7.179v9.642A3.683,3.683,0,0,1,18.821,20.5ZM5.179,4.5A2.682,2.682,0,0,0,2.5,7.179v9.642A2.682,2.682,0,0,0,5.179,19.5H18.821A2.682,2.682,0,0,0,21.5,16.821V7.179A2.682,2.682,0,0,0,18.821,4.5Z"></path>
10
+ <path fill="#fff"
11
+ d="M12,14.209a.5.5,0,0,1-.346-.138L4.286,7.028a.5.5,0,0,1,.691-.723L12,13.018l7.023-6.713a.5.5,0,1,1,.691.723l-7.368,7.043A.5.5,0,0,1,12,14.209Z"></path>
12
+ <path fill="#fff"
13
+ d="M4.7,17.833a.5.5,0,0,1-.347-.86l5.54-5.31a.5.5,0,0,1,.692.722L5.048,17.694A.5.5,0,0,1,4.7,17.833Z"></path>
14
+ <path fill="#fff"
15
+ d="M19.3,17.832a.5.5,0,0,1-.346-.139l-5.538-5.308a.5.5,0,0,1,.692-.722l5.538,5.308a.5.5,0,0,1-.346.861Z"></path>
16
+ </svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="#fff"><path d="m21.938 7.71a7.329 7.329 0 0 0 -.456-2.394 4.615 4.615 0 0 0 -1.1-1.694 4.61 4.61 0 0 0 -1.7-1.1 7.318 7.318 0 0 0 -2.393-.456c-1.104-.054-1.472-.066-4.289-.066s-3.185.012-4.29.062a7.329 7.329 0 0 0 -2.394.456 4.615 4.615 0 0 0 -1.694 1.1 4.61 4.61 0 0 0 -1.1 1.7 7.318 7.318 0 0 0 -.46 2.392c-.05 1.104-.062 1.472-.062 4.29s.012 3.186.062 4.29a7.329 7.329 0 0 0 .456 2.394 4.615 4.615 0 0 0 1.1 1.694 4.61 4.61 0 0 0 1.7 1.1 7.318 7.318 0 0 0 2.393.456c1.1.05 1.472.062 4.29.062s3.186-.012 4.29-.062a7.329 7.329 0 0 0 2.394-.456 4.9 4.9 0 0 0 2.8-2.8 7.318 7.318 0 0 0 .456-2.393c.05-1.1.062-1.472.062-4.29s-.015-3.181-.065-4.285zm-1 8.534a6.351 6.351 0 0 1 -.388 2.077 3.9 3.9 0 0 1 -2.228 2.229 6.363 6.363 0 0 1 -2.078.388c-1.085.05-1.444.062-4.244.062s-3.159-.012-4.244-.062a6.351 6.351 0 0 1 -2.077-.388 3.627 3.627 0 0 1 -1.35-.879 3.631 3.631 0 0 1 -.879-1.349 6.363 6.363 0 0 1 -.388-2.078c-.05-1.085-.062-1.444-.062-4.244s.012-3.159.062-4.244a6.351 6.351 0 0 1 .388-2.077 3.627 3.627 0 0 1 .879-1.35 3.631 3.631 0 0 1 1.349-.879 6.363 6.363 0 0 1 2.078-.388c1.086-.05 1.449-.062 4.244-.062s3.158.012 4.244.062a6.351 6.351 0 0 1 2.077.388 3.627 3.627 0 0 1 1.35.879 3.631 3.631 0 0 1 .879 1.349 6.363 6.363 0 0 1 .388 2.078c.05 1.085.062 1.444.062 4.244s-.012 3.159-.062 4.244z"/><path d="m17.581 5.467a.953.953 0 1 0 .952.952.954.954 0 0 0 -.952-.952z"/><path d="m12 7.073a4.927 4.927 0 1 0 4.927 4.927 4.932 4.932 0 0 0 -4.927-4.927zm0 8.854a3.927 3.927 0 1 1 3.927-3.927 3.932 3.932 0 0 1 -3.927 3.927z"/></g></svg>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg enable-background="new 0 0 24 24"
3
+ viewBox="0 0 24 24"
4
+ class="sc-gKsewC hxdUPG"
5
+ xmlns="http://www.w3.org/2000/svg">
6
+ <title data-testid="svgTitle"
7
+ id="title_0.8608705417077744">pinterest</title>
8
+ <path fill="#fff"
9
+ d="M7.615,23a.522.522,0,0,1-.11-.012.5.5,0,0,1-.386-.429l-.166-1.4A12.6,12.6,0,0,1,7,17.381c.205-.882,1.223-5.2,1.432-6.091a5.332,5.332,0,0,1-.348-1.907c0-1.992,1.219-3.552,2.776-3.552A2.07,2.07,0,0,1,12.956,8.1a10.218,10.218,0,0,1-.6,2.723c-.161.523-.328,1.06-.454,1.584a1.3,1.3,0,0,0,.225,1.133,1.441,1.441,0,0,0,1.15.525c2,0,3.452-2.209,3.452-5.252A4.482,4.482,0,0,0,11.969,4.2,4.957,4.957,0,0,0,6.79,9.155a4.7,4.7,0,0,0,.457,1.963.873.873,0,0,1,.063.584l-.428,1.816a.79.79,0,0,1-.515.571.813.813,0,0,1-.776-.139A6.575,6.575,0,0,1,3.472,9.1c0-3.9,2.756-8.1,8.807-8.1,4.7,0,8.249,3.337,8.249,7.762,0,4.743-3.017,8.321-7.018,8.321a4.281,4.281,0,0,1-2.635-.9l-.543,2.069a14.305,14.305,0,0,1-1.62,3.435l-.673,1.079A.5.5,0,0,1,7.615,23ZM10.862,6.831c-.995,0-1.776,1.121-1.776,2.552a4.149,4.149,0,0,0,.322,1.642.514.514,0,0,1,.037.334s-1.24,5.264-1.468,6.246a11.938,11.938,0,0,0-.034,3.422A12.932,12.932,0,0,0,9.364,18l.787-2.993a.5.5,0,0,1,.43-.37.51.51,0,0,1,.5.269,2.849,2.849,0,0,0,2.43,1.177c3.431,0,6.018-3.148,6.018-7.321C19.528,4.907,16.412,2,12.279,2,6.916,2,4.472,5.682,4.472,9.1a5.769,5.769,0,0,0,1.514,3.859l.351-1.492A5.224,5.224,0,0,1,5.79,9.155,5.937,5.937,0,0,1,11.969,3.2a5.438,5.438,0,0,1,5.755,5.61c0,3.623-1.872,6.252-4.452,6.252a2.44,2.44,0,0,1-1.936-.9,2.283,2.283,0,0,1-.412-1.987c.132-.545.3-1.1.472-1.646a9.754,9.754,0,0,0,.56-2.427A1.11,1.11,0,0,0,10.862,6.831Z"></path>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg enable-background="new 0 0 24 24"
3
+ viewBox="0 0 24 24"
4
+ class="sc-gKsewC hxdUPG"
5
+ xmlns="http://www.w3.org/2000/svg">
6
+ <title data-testid="svgTitle"
7
+ id="title_0.13707206205228228">threads</title>
8
+ <path fill="#fff"
9
+ d="M16.7434 11.2696C16.6573 11.2283 16.5698 11.1886 16.4811 11.1505C16.3268 8.30606 14.7725 6.6776 12.1627 6.66094C12.1509 6.66086 12.1391 6.66086 12.1273 6.66086C10.5663 6.66086 9.26803 7.32718 8.46896 8.53966L9.90427 9.52425C10.5012 8.61857 11.438 8.4255 12.128 8.4255C12.1359 8.4255 12.1439 8.4255 12.1518 8.42557C13.0111 8.43105 13.6596 8.6809 14.0793 9.16813C14.3847 9.52284 14.589 10.013 14.6901 10.6316C13.9282 10.5022 13.1043 10.4623 12.2234 10.5128C9.74215 10.6558 8.14699 12.1029 8.25412 14.1137C8.30849 15.1337 8.81663 16.0112 9.68489 16.5845C10.419 17.0691 11.3645 17.306 12.3471 17.2524C13.6448 17.1813 14.6628 16.6861 15.373 15.7808C15.9124 15.0933 16.2535 14.2024 16.4042 13.0798C17.0226 13.453 17.4809 13.9442 17.7341 14.5346C18.1645 15.5382 18.1896 17.1875 16.8439 18.5321C15.6648 19.71 14.2475 20.2196 12.1056 20.2353C9.7296 20.2177 7.93268 19.4557 6.76438 17.9705C5.67036 16.5798 5.10497 14.571 5.08387 12C5.10497 9.42894 5.67036 7.42017 6.76438 6.02945C7.93268 4.54426 9.72957 3.78229 12.1055 3.76464C14.4987 3.78243 16.327 4.54806 17.54 6.04042C18.1348 6.77225 18.5832 7.69258 18.8789 8.76566L20.5608 8.3169C20.2025 6.99606 19.6386 5.85789 18.8714 4.91396C17.3162 3.0007 15.0419 2.02033 12.1114 2H12.0997C9.17516 2.02026 6.92626 3.00435 5.41545 4.92493C4.07103 6.634 3.37754 9.01205 3.35424 11.993L3.35416 12L3.35424 12.007C3.37754 14.9879 4.07103 17.366 5.41545 19.0751C6.92626 20.9956 9.17516 21.9798 12.0997 22H12.1114C14.7115 21.982 16.5442 21.3013 18.054 19.7928C20.0293 17.8194 19.9698 15.3457 19.3187 13.8272C18.8517 12.7382 17.9611 11.8538 16.7434 11.2696ZM12.2542 15.4903C11.1667 15.5516 10.0369 15.0634 9.98121 14.0179C9.93991 13.2427 10.5329 12.3777 12.321 12.2747C12.5257 12.2629 12.7267 12.2571 12.9241 12.2571C13.5735 12.2571 14.1811 12.3202 14.7335 12.4409C14.5275 15.0141 13.319 15.4319 12.2542 15.4903Z"></path>
10
+ </svg>
@@ -0,0 +1 @@
1
+ <svg enable-background="new 0 0 24 24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m9.37 23.5a7.468 7.468 0 0 1 0-14.936.537.537 0 0 1 .538.5v3.8a.542.542 0 0 1 -.5.5 2.671 2.671 0 1 0 2.645 2.669.432.432 0 0 1 0-.05v-14.983a.5.5 0 0 1 .5-.5h3.787a.5.5 0 0 1 .5.5 4.759 4.759 0 0 0 4.75 4.76.5.5 0 0 1 .5.5l.01 3.74a.533.533 0 0 1 -.519.515 9.427 9.427 0 0 1 -4.741-1.268v6.789a7.476 7.476 0 0 1 -7.47 7.464zm-.462-13.915a6.466 6.466 0 1 0 6.93 6.447v-7.706a.5.5 0 0 1 .791-.407 8.441 8.441 0 0 0 4.471 1.581l-.006-2.76a5.761 5.761 0 0 1 -5.235-5.24h-2.808v14.532a.458.458 0 0 1 0 .053 3.672 3.672 0 1 1 -4.14-3.695z" fill="#fff"/></svg>
@@ -0,0 +1 @@
1
+ <svg height="800" viewBox="0 0 48 48" width="800" xmlns="http://www.w3.org/2000/svg"><path d="m40.25 4.45a14.26 14.26 0 0 1 2.06 7.8c0 9.72-8.3 22.34-15 31.2h-15.4l-6.17-36.87 13.47-1.28 3.27 26.24c3.05-5 6.81-12.76 6.81-18.08a14.51 14.51 0 0 0 -1.29-6.52z" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>
@@ -0,0 +1,9 @@
1
+ ---
2
+ ---
3
+
4
+ $linky_body_background: {{ site.linky.body_background | default: "#fa0616" }};
5
+ $linky_body_foreground: {{ site.linky.body_foreground | default: "#f0f0f0" }};
6
+ $linky_button_background: {{ site.linky.button_background | default: "#f16293" }};
7
+ $linky_button_foreground: {{ site.linky.button_foreground | default: "#f0f0f0" }};
8
+
9
+ @import "linky";
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-linky
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Paul Roub
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-10-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
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'
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'
41
+ description:
42
+ email:
43
+ - paul@roub.net
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - LICENSE.txt
49
+ - README.md
50
+ - _config.yml
51
+ - _includes/analytics.html
52
+ - _includes/custom-head.html
53
+ - _includes/head.html
54
+ - _includes/header.html
55
+ - _layouts/default.html
56
+ - _layouts/links.html
57
+ - _layouts/page.html
58
+ - _layouts/post.html
59
+ - _sass/linky.scss
60
+ - assets/images/cashapp-logo.svg
61
+ - assets/images/email-logo.svg
62
+ - assets/images/instagram-logo.svg
63
+ - assets/images/pinterest-logo.svg
64
+ - assets/images/threads-logo.svg
65
+ - assets/images/tiktok-logo.svg
66
+ - assets/images/venmo-logo.svg
67
+ - assets/styles.scss
68
+ homepage: http://github.com/paulroub/linky
69
+ licenses:
70
+ - MIT
71
+ metadata: {}
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '2.5'
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubygems_version: 3.5.17
88
+ signing_key:
89
+ specification_version: 4
90
+ summary: Linktree-ish theme for Jekyll, compatible with Decap CMS
91
+ test_files: []