jekyll-theme-tallneck 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +43 -34
  3. data/_includes/footer.html +10 -23
  4. data/_includes/head.html +40 -11
  5. data/_includes/header.html +13 -11
  6. data/_includes/post-card.html +18 -0
  7. data/_includes/post-preview.html +15 -0
  8. data/_layouts/404.html +12 -2
  9. data/_layouts/about.html +109 -0
  10. data/_layouts/base.html +8 -7
  11. data/_layouts/feed.html +12 -5
  12. data/_layouts/home.html +20 -6
  13. data/_layouts/post.html +15 -18
  14. data/_sass/custom_layout.scss +1 -0
  15. data/_sass/custom_variables.scss +1 -0
  16. data/_sass/dark_code.scss +195 -0
  17. data/_sass/light_code.scss +205 -0
  18. data/_sass/tallneck/base.scss +160 -0
  19. data/_sass/tallneck/components/about.scss +69 -0
  20. data/_sass/tallneck/components/post-card.scss +87 -0
  21. data/_sass/tallneck/components/post-preview.scss +51 -0
  22. data/_sass/tallneck/components/post.scss +55 -0
  23. data/_sass/tallneck/components.scss +1 -0
  24. data/_sass/tallneck/font.scss +39 -0
  25. data/_sass/tallneck/footer.scss +57 -0
  26. data/_sass/tallneck/header.scss +90 -0
  27. data/_sass/tallneck/layout.scss +51 -0
  28. data/_sass/tallneck/variables.scss +82 -0
  29. data/_sass/tallneck.scss +10 -0
  30. data/assets/css/code.scss +6 -0
  31. data/assets/css/print.css +16 -0
  32. data/assets/css/style.scss +6 -0
  33. data/assets/font/opensans/opensans-bold.ttf +0 -0
  34. data/assets/font/opensans/opensans-bold.woff +0 -0
  35. data/assets/font/opensans/opensans-bold.woff2 +0 -0
  36. data/assets/font/opensans/opensans-italic.ttf +0 -0
  37. data/assets/font/opensans/opensans-italic.woff +0 -0
  38. data/assets/font/opensans/opensans-italic.woff2 +0 -0
  39. data/assets/font/opensans/opensans.ttf +0 -0
  40. data/assets/font/opensans/opensans.woff +0 -0
  41. data/assets/font/opensans/opensans.woff2 +0 -0
  42. data/assets/icon/discord.svg +5 -0
  43. data/assets/icon/github.svg +5 -0
  44. data/assets/icon/gitlab.svg +5 -0
  45. data/assets/icon/instagram.svg +5 -0
  46. data/assets/icon/linkedin.svg +5 -0
  47. data/assets/icon/mail.svg +5 -0
  48. data/assets/icon/reddit.svg +5 -0
  49. data/assets/icon/telegram.svg +5 -0
  50. data/assets/icon/threads.svg +5 -0
  51. data/assets/icon/x.svg +5 -0
  52. data/assets/image/about.webp +0 -0
  53. data/assets/image/default.webp +0 -0
  54. data/assets/image/favicon.ico +0 -0
  55. data/assets/image/favicon.svg +13 -0
  56. data/assets/image/logo.svg +4 -0
  57. data/assets/image/pwa_icon.svg +13 -0
  58. data/assets/image/pwa_icon_x512.png +0 -0
  59. data/assets/image/pwa_icon_x96.png +0 -0
  60. data/assets/sitemanifest.json +28 -0
  61. metadata +72 -38
  62. data/_includes/article-preview.html +0 -20
  63. data/_layouts/400.html +0 -7
  64. data/_layouts/500.html +0 -6
  65. data/_layouts/page.html +0 -11
  66. data/assets/css/style.css +0 -382
  67. data/assets/font/roboto.eot +0 -0
  68. data/assets/font/roboto.svg +0 -367
  69. data/assets/images/banner.png +0 -0
  70. /data/{LICENSE.txt → LICENSE} +0 -0
  71. /data/assets/font/{roboto.ttf → roboto/roboto.ttf} +0 -0
  72. /data/assets/font/{roboto.woff → roboto/roboto.woff} +0 -0
  73. /data/assets/font/{roboto.woff2 → roboto/roboto.woff2} +0 -0
@@ -0,0 +1,51 @@
1
+ .post-preview-container {
2
+ width: 100%;
3
+ height: fit-content;
4
+ }
5
+
6
+ .post-preview-hr {
7
+ margin: 0.65rem 0;
8
+ border: none;
9
+ border-top: 1px solid var(--border-secondary);
10
+ }
11
+
12
+ .post-preview {
13
+ width: 100%;
14
+ max-height: $preview-max-height;
15
+
16
+ transition: 0.4s;
17
+
18
+ padding-left: 1rem;
19
+ padding-right: 1rem;
20
+ padding-top: 0.25rem;
21
+ padding-bottom: 0.25rem;
22
+
23
+ &:hover {
24
+ border-radius: 5px;
25
+ box-shadow: 0 0 5px 0 var(--border-primary);
26
+ transition: 0.4s;
27
+ }
28
+
29
+ .post-preview--link {
30
+ text-decoration: none;
31
+ color: var(--text-primary);
32
+ }
33
+
34
+ .post-preview--content {
35
+ flex: 2;
36
+ }
37
+
38
+ .post-preview--subtitle {
39
+ font-size: 0.95em;
40
+ margin-block-start: 0;
41
+ margin-block-end: 0.5rem;
42
+ }
43
+
44
+ .post-preview--date {
45
+ vertical-align: bottom;
46
+ font-size: 0.8rem;
47
+ color: var(--text-secondary);
48
+ margin-block-start: 0;
49
+ margin-block-end: 1rem;
50
+ }
51
+ }
@@ -0,0 +1,55 @@
1
+ /*
2
+ * Post
3
+ */
4
+
5
+ .post-header {
6
+ margin-bottom: 1rem;
7
+
8
+ .post-header--title {
9
+ text-align: center;
10
+ margin-bottom: 0.5rem;
11
+ }
12
+
13
+ .post-header--meta {
14
+ font-size: 0.9em;
15
+ opacity: 0.75;
16
+
17
+ a {
18
+ color: var(--text-primary);
19
+ text-decoration: underline;
20
+
21
+ &:hover {
22
+ text-decoration: none;
23
+ }
24
+ }
25
+ }
26
+ }
27
+
28
+
29
+ .post-content {
30
+ margin-block-start: 1rem;
31
+ margin-block-end: 1rem;
32
+
33
+ a {
34
+ color: var(--text-link);
35
+ text-decoration: underline;
36
+ text-underline-offset: 2px;
37
+
38
+ &:hover {
39
+ text-decoration: none;
40
+ }
41
+ }
42
+
43
+ hr {
44
+ border: 0;
45
+ border-top: 1px solid var(--border-primary);
46
+ margin: 1rem 0;
47
+ }
48
+
49
+ img {
50
+ max-width: 50%;
51
+ height: auto;
52
+ margin-left: auto;
53
+ margin-right: auto;
54
+ }
55
+ }
@@ -0,0 +1 @@
1
+ @import "components/post", "components/post-card", "components/post-preview", "components/about.scss";
@@ -0,0 +1,39 @@
1
+ // Source: https://fonts.google.com/specimen/Open+Sans
2
+ @font-face {
3
+ font-family: "Open Sans";
4
+ font-style: normal;
5
+ font-weight: normal;
6
+ font-display: swap;
7
+
8
+ src:
9
+ local("Open Sans"),
10
+ /* Super Modern Browsers */ url("/assets/font/opensans/opensans.woff2") format("woff2"),
11
+ /* Modern Browsers */ url("/assets/font/opensans/opensans.woff") format("woff"),
12
+ /* Safari, Android, iOS */ url("/assets/font/opensans/opensans.ttf") format("truetype");
13
+ }
14
+ // Bold
15
+ @font-face {
16
+ font-family: "Open Sans";
17
+ font-style: bold;
18
+ font-weight: bold;
19
+ font-display: swap;
20
+
21
+ src:
22
+ local("Open Sans"),
23
+ /* Super Modern Browsers */ url("/assets/font/opensans/opensans-bold.woff2") format("woff2"),
24
+ /* Modern Browsers */ url("/assets/font/opensans/opensans-bold.woff") format("woff"),
25
+ /* Safari, Android, iOS */ url("/assets/font/opensans/opensans-bold.ttf") format("truetype");
26
+ }
27
+ // Italic
28
+ @font-face {
29
+ font-family: "Open Sans";
30
+ font-style: italic;
31
+ font-weight: italic;
32
+ font-display: swap;
33
+
34
+ src:
35
+ local("Open Sans"),
36
+ /* Super Modern Browsers */ url("/assets/font/opensans/opensans-italic.woff2") format("woff2"),
37
+ /* Modern Browsers */ url("/assets/font/opensans/opensans-italic.woff") format("woff"),
38
+ /* Safari, Android, iOS */ url("/assets/font/opensans/opensans-italic.ttf") format("truetype");
39
+ }
@@ -0,0 +1,57 @@
1
+ .page-footer {
2
+ position: relative;
3
+ padding-left: 1rem;
4
+ padding-right: 1rem;
5
+ margin-top: 2.5rem;
6
+ margin-bottom: 2rem;
7
+ }
8
+
9
+ .footer-nav {
10
+ display: flex;
11
+ flex-direction: row;
12
+ align-items: center;
13
+ justify-content: center;
14
+
15
+ gap: 1rem;
16
+
17
+ height: 2rem;
18
+
19
+ a {
20
+ display: flex;
21
+ justify-content: center;
22
+ align-items: center;
23
+ height: 100%;
24
+
25
+ min-width: 4rem;
26
+ max-width: 6rem;
27
+
28
+ border-radius: 3px;
29
+
30
+ padding-left: 0.5rem;
31
+ padding-right: 0.5rem;
32
+
33
+ text-decoration: none;
34
+ color: var(--text-primary);
35
+
36
+ &:hover {
37
+ text-decoration: underline;
38
+ text-underline-offset: 2px;
39
+ }
40
+ }
41
+ }
42
+
43
+ .footer-hr {
44
+ max-width: $main-max-width + calc($content-width-overflow/2);
45
+ border: 0;
46
+ border-top: 1px solid var(--border-primary);
47
+
48
+ margin-left: auto;
49
+ margin-right: auto;
50
+ }
51
+
52
+ .footer-text {
53
+ font-size: 0.8em;
54
+ opacity: 0.75;
55
+ text-align: center;
56
+ margin-top: 0.5rem;
57
+ }
@@ -0,0 +1,90 @@
1
+ .page-header {
2
+ position: relative;
3
+ z-index: 100;
4
+ width: 100%;
5
+ height: 3.3rem;
6
+
7
+ background-color: var(--header-background);
8
+ color: var(--header-text-primary);
9
+
10
+ display: flex;
11
+ justify-content: center;
12
+
13
+ border-bottom: 1px solid var(--border-secondary);
14
+
15
+ padding: 0.3rem 1rem;
16
+
17
+ @media screen and (max-width: 380px) {
18
+ padding: 0.3rem 0.5rem;
19
+ }
20
+
21
+ .page-header--container {
22
+ width: 100%;
23
+ height: 100%;
24
+
25
+ max-width: $main-max-width - $content-width-overflow;
26
+
27
+ display: flex;
28
+ justify-content: space-between;
29
+ align-items: center;
30
+ }
31
+ }
32
+
33
+ .header-logo {
34
+ float: left;
35
+ height: 100%;
36
+
37
+ padding-top: 0.15rem;
38
+ padding-bottom: 0.15rem;
39
+
40
+ a {
41
+ display: inline-block;
42
+ text-decoration: none;
43
+ color: var(--header-text-primary);
44
+ height: 100%;
45
+ }
46
+
47
+ img {
48
+ height: 100%;
49
+ width: auto;
50
+ max-height: 38px;
51
+ }
52
+ }
53
+
54
+ .header-nav {
55
+ height: 100%;
56
+ float: right;
57
+
58
+ display: flex;
59
+ justify-content: space-between;
60
+ align-items: center;
61
+ flex-direction: row;
62
+
63
+ gap: 0.75rem;
64
+
65
+ @media screen and (max-width: 380px) {
66
+ gap: 0.5rem;
67
+ }
68
+
69
+ a {
70
+ display: flex;
71
+ justify-content: center;
72
+ align-items: center;
73
+ height: 100%;
74
+
75
+ min-width: 3rem;
76
+ max-width: 6rem;
77
+
78
+ border-radius: 3px;
79
+
80
+ padding-left: 0.5rem;
81
+ padding-right: 0.5rem;
82
+
83
+ text-decoration: none;
84
+ color: var(--header-text-primary);
85
+
86
+ &:hover {
87
+ background-color: var(--nav-link-hover);
88
+ }
89
+ }
90
+ }
@@ -0,0 +1,51 @@
1
+ @import "footer", "header";
2
+
3
+ .page-main {
4
+ position: relative;
5
+ margin: 0 auto;
6
+
7
+ padding: 2rem 2rem 1rem 2rem;
8
+
9
+ @media screen and (max-width: 380px) {
10
+ padding: 1rem 1.25rem;
11
+ }
12
+
13
+ img {
14
+ max-width: 100%;
15
+ height: auto;
16
+ display: block;
17
+ margin: 0 auto;
18
+ }
19
+
20
+ svg {
21
+ max-width: 100%;
22
+ height: auto;
23
+ display: block;
24
+ margin: 0 auto;
25
+ }
26
+ }
27
+
28
+ .hidden-link {
29
+ text-decoration: none;
30
+ color: var(--text-primary);
31
+
32
+ &:hover {
33
+ text-decoration: none;
34
+ }
35
+ }
36
+
37
+ .center {
38
+ text-align: center;
39
+ }
40
+
41
+ .hover-underline {
42
+ &:hover {
43
+ text-decoration: underline;
44
+ }
45
+ }
46
+
47
+ .content-width {
48
+ max-width: $content-width;
49
+ margin-left: auto;
50
+ margin-right: auto;
51
+ }
@@ -0,0 +1,82 @@
1
+ // from: https://github.com/jekyll/minima/blob/master/_sass/minima/initialize.scss
2
+ // license: https://github.com/jekyll/minima/blob/master/LICENSE.txt
3
+ @charset "utf-8";
4
+
5
+ // Define defaults for each variable.
6
+ $base-font-family:
7
+ "Open Sans",
8
+ -apple-system,
9
+ system-ui,
10
+ sans-serif,
11
+ Arial !default;
12
+ $code-font-family: "Consolas", "Courier New", monospace !default;
13
+ $base-font-size: 15px !default;
14
+ $base-font-weight: 400 !default;
15
+ $base-line-height: 1.5 !default;
16
+
17
+ $table-text-align: left !default;
18
+
19
+ $min-width : 220px !default;
20
+
21
+ // Width of the content area
22
+ $main-max-width: 1200px !default;
23
+ $content-width-overflow: 100px !default;
24
+ $content-width: 1000px !default;
25
+
26
+ $card-max-width: 18rem !default;
27
+ $card-min-width: 16rem !default;
28
+ $card-max-height: 440px !default;
29
+
30
+ $preview-max-height: 15rem !default;
31
+
32
+ // Colors
33
+ :root {
34
+ --background-color: #fff;
35
+
36
+ --text-primary: #1b1b1b;
37
+ --text-secondary: #282828;
38
+ --text-link: #005b9f;
39
+
40
+ --card-background-primary: #ececec;
41
+ --card-background-secondary: #c8c8c8;
42
+
43
+ --code-background-color: #f8f8f8;
44
+
45
+ --border-primary: #777;
46
+ --border-secondary: #ddd;
47
+
48
+ --blockquote-background: #f0f0f0;
49
+
50
+ --header-background: #282828;
51
+ --header-text-primary: #f4f4f4;
52
+
53
+ --nav-link-hover: #777777aa;
54
+ --link-hover: #777777aa;
55
+
56
+ --svg-fill: #000;
57
+
58
+ --accent-primary: #fe7a36;
59
+ --accent-secondary: #3652ad;
60
+ }
61
+
62
+ @media (prefers-color-scheme: dark) {
63
+ :root {
64
+ --background-color: #121212;
65
+
66
+ --text-primary: #f4f4f4;
67
+ --text-secondary: #d4d4d4;
68
+ --text-link: #4faeff;
69
+
70
+ --card-background-primary: #343434;
71
+ --card-background-secondary: #6b6b6b;
72
+
73
+ --code-background-color: #2a2a2a;
74
+
75
+ --border-primary: #747474;
76
+ --border-secondary: #393939;
77
+
78
+ --blockquote-background: #1e1e1e;
79
+
80
+ --svg-fill: #fff;
81
+ }
82
+ }
@@ -0,0 +1,10 @@
1
+ @import "tallneck/font";
2
+ @import "tallneck/variables";
3
+
4
+ @import "custom_variables";
5
+
6
+ @import "tallneck/base";
7
+ @import "tallneck/layout";
8
+ @import "tallneck/components";
9
+
10
+ @import "custom_layout";
@@ -0,0 +1,6 @@
1
+ ---
2
+ ---
3
+
4
+ @charset "utf-8";
5
+
6
+ @import "light_code", "dark_code";
@@ -0,0 +1,16 @@
1
+ @media print {
2
+ header {
3
+ display: none !important;
4
+ }
5
+
6
+ footer {
7
+ display: none !important;
8
+ }
9
+ }
10
+
11
+
12
+ @media print {
13
+ .no_print, .no_print * {
14
+ display: none !important;
15
+ }
16
+ }
@@ -0,0 +1,6 @@
1
+ ---
2
+ ---
3
+
4
+ @charset "utf-8";
5
+
6
+ @import "tallneck";
Binary file
Binary file
Binary file
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="discord" viewBox="0 0 127.14 127.14">
3
+ <path id="discord" d="M107.69977483 23.46a105.15 105.15 0 0 0-26.23-8.07 72.06 72.06 0 0 0-3.36 6.83 97.68 97.68 0 0 0-29.11 0 72.37 72.37 0 0 0-3.36-6.83 105.89 105.89 0 0 0-26.25 8.09c-16.6 24.56-21.1 48.51-18.85 72.12a105.73 105.73 0 0 0 32.17 16.15 77.7 77.7 0 0 0 6.89-11.11 68.42 68.42 0 0 1-10.85-5.18c.91-.66 1.8-1.34 2.66-2a75.57 75.57 0 0 0 64.32 0c.87.71 1.76 1.39 2.66 2a68.68 68.68 0 0 1-10.87 5.19 77 77 0 0 0 6.89 11.1 105.25 105.25 0 0 0 32.19-16.14c2.64-27.38-4.51-51.11-18.9-72.15Zm-65.25 57.62c-6.27 0-11.45-5.69-11.45-12.69 0-7 5-12.74 11.43-12.74s11.57 5.74 11.46 12.74c-.11 7-5.05 12.69-11.44 12.69Zm42.24 0c-6.28 0-11.44-5.69-11.44-12.69 0-7 5-12.74 11.44-12.74 6.44 0 11.54 5.74 11.43 12.74-.11 7-5.04 12.69-11.43 12.69z"/>
4
+ </symbol>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="github" viewBox="0 0 16 16">
3
+ <path d="M8 0C3.58 0 0 3.582 0 8c0 3.535 2.292 6.533 5.47 7.59.4.075.547-.172.547-.385 0-.19-.007-.693-.01-1.36-2.226.483-2.695-1.073-2.695-1.073-.364-.924-.89-1.17-.89-1.17-.725-.496.056-.486.056-.486.803.056 1.225.824 1.225.824.714 1.223 1.873.87 2.33.665.072-.517.278-.87.507-1.07-1.777-.2-3.644-.888-3.644-3.953 0-.873.31-1.587.823-2.147-.09-.202-.36-1.015.07-2.117 0 0 .67-.215 2.2.82.64-.178 1.32-.266 2-.27.68.004 1.36.092 2 .27 1.52-1.035 2.19-.82 2.19-.82.43 1.102.16 1.915.08 2.117.51.56.82 1.274.82 2.147 0 3.073-1.87 3.75-3.65 3.947.28.24.54.73.54 1.48 0 1.07-.01 1.93-.01 2.19 0 .21.14.46.55.38C13.71 14.53 16 11.53 16 8c0-4.418-3.582-8-8-8"/>
4
+ </symbol>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="gitlab" viewBox="93.97 97.52 192.05 184.95">
3
+ <path class="cls-1" d="M282.83,170.73l-.27-.69-26.14-68.22a6.81,6.81,0,0,0-2.69-3.24,7,7,0,0,0-8,.43,7,7,0,0,0-2.32,3.52l-17.65,54H154.29l-17.65-54A6.86,6.86,0,0,0,134.32,99a7,7,0,0,0-8-.43,6.87,6.87,0,0,0-2.69,3.24L97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82,19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91,40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z"></path>
4
+ </symbol>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="instagram" viewBox="0 0 1000 1000">
3
+ <path d="M292.92 3.5c-53.2 2.51-89.53 11-121.29 23.48-32.87 12.81-60.73 30-88.45 57.82s-44.79 55.7-57.51 88.62c-12.31 31.83-20.65 68.19-23 121.42S-.2 365.18.06 500.96.92 653.76 3.5 707.1c2.54 53.19 11 89.51 23.48 121.28 12.83 32.87 30 60.72 57.83 88.45s55.69 44.76 88.69 57.5c31.8 12.29 68.17 20.67 121.39 23s70.35 2.87 206.09 2.61 152.83-.86 206.16-3.39 89.46-11.05 121.24-23.47c32.87-12.86 60.74-30 88.45-57.84s44.77-55.74 57.48-88.68c12.32-31.8 20.69-68.17 23-121.35 2.33-53.37 2.88-70.41 2.62-206.17s-.87-152.78-3.4-206.1-11-89.53-23.47-121.32c-12.85-32.87-30-60.7-57.82-88.45s-55.74-44.8-88.67-57.48c-31.82-12.31-68.17-20.7-121.39-23S634.83-.2 499.04.06 346.25.9 292.92 3.5m5.84 903.88c-48.75-2.12-75.22-10.22-92.86-17-23.36-9-40-19.88-57.58-37.29s-28.38-34.11-37.5-57.42c-6.85-17.64-15.1-44.08-17.38-92.83-2.48-52.69-3-68.51-3.29-202s.22-149.29 2.53-202c2.08-48.71 10.23-75.21 17-92.84 9-23.39 19.84-40 37.29-57.57s34.1-28.39 57.43-37.51c17.62-6.88 44.06-15.06 92.79-17.38 52.73-2.5 68.53-3 202-3.29s149.31.21 202.06 2.53c48.71 2.12 75.22 10.19 92.83 17 23.37 9 40 19.81 57.57 37.29s28.4 34.07 37.52 57.45c6.89 17.57 15.07 44 17.37 92.76 2.51 52.73 3.08 68.54 3.32 202s-.23 149.31-2.54 202c-2.13 48.75-10.21 75.23-17 92.89-9 23.35-19.85 40-37.31 57.56s-34.09 28.38-57.43 37.5c-17.6 6.87-44.07 15.07-92.76 17.39-52.73 2.48-68.53 3-202.05 3.29s-149.27-.25-202-2.53m407.6-674.61a60 60 0 1 0 59.88-60.1 60 60 0 0 0-59.88 60.1M243.27 500.5c.28 141.8 115.44 256.49 257.21 256.22S757.02 641.3 756.75 499.5 641.29 242.98 499.5 243.26 243 358.72 243.27 500.5m90.06-.18a166.67 166.67 0 1 1 167 166.34 166.65 166.65 0 0 1-167-166.34"/>
4
+ </symbol>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="linkedin" viewBox="0 0 64.791 64.788791">
3
+ <path d="M55.205 55.204412h-9.6v-15.034c0-3.585-.064-8.2-4.993-8.2-5 0-5.765 3.906-5.765 7.939v15.294h-9.6v-30.916h9.216v4.225h.129a10.1 10.1 0 0 1 9.093-4.994c9.73 0 11.524 6.4 11.524 14.726zm-40.79-35.143a5.571 5.571 0 1 1 5.57-5.572 5.571 5.571 0 0 1-5.57 5.572m4.8 35.143h-9.61v-30.917h9.61zM59.991.00441201H4.781A4.728 4.728 0 0 0 0 4.674412v55.439a4.731 4.731 0 0 0 4.781 4.675h55.21a4.741 4.741 0 0 0 4.8-4.675v-55.443a4.738 4.738 0 0 0-4.8-4.67"/>
4
+ </symbol>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="mail" viewBox="0 12.09 75.29 51.12">
3
+ <path d="M66.097,12.089h-56.9C4.126,12.089,0,16.215,0,21.286v32.722c0,5.071,4.126,9.197,9.197,9.197h56.9 c5.071,0,9.197-4.126,9.197-9.197V21.287C75.295,16.215,71.169,12.089,66.097,12.089z M61.603,18.089L37.647,33.523L13.691,18.089 H61.603z M66.097,57.206h-56.9C7.434,57.206,6,55.771,6,54.009V21.457l29.796,19.16c0.04,0.025,0.083,0.042,0.124,0.065 c0.043,0.024,0.087,0.047,0.131,0.069c0.231,0.119,0.469,0.215,0.712,0.278c0.025,0.007,0.05,0.01,0.075,0.016 c0.267,0.063,0.537,0.102,0.807,0.102c0.001,0,0.002,0,0.002,0c0.002,0,0.003,0,0.004,0c0.27,0,0.54-0.038,0.807-0.102 c0.025-0.006,0.05-0.009,0.075-0.016c0.243-0.063,0.48-0.159,0.712-0.278c0.044-0.022,0.088-0.045,0.131-0.069 c0.041-0.023,0.084-0.04,0.124-0.065l29.796-19.16v32.551C69.295,55.771,67.86,57.206,66.097,57.206z"></path>
4
+ </symbol>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="reddit" viewBox="25.55 38.4 204.9 179.22">
3
+ <path d="m200.56,98.04c-6.85,0-13.16,2.31-18.2,6.19-13.72-8.49-31.04-13.83-49.99-14.54,0-.03,0-.05,0-.08,0-12.7,9.44-23.24,21.68-24.97,2.22,9.41,10.67,16.42,20.76,16.42,11.78,0,21.33-9.55,21.33-21.33s-9.55-21.33-21.33-21.33c-10.3,0-18.89,7.3-20.89,17.01-17.25,1.85-30.72,16.48-30.72,34.21,0,.04,0,.07,0,.11-18.76.79-35.89,6.13-49.49,14.56-5.05-3.91-11.39-6.24-18.27-6.24-16.51,0-29.89,13.38-29.89,29.89,0,11.98,7.04,22.3,17.21,27.07.99,34.7,38.8,62.61,85.31,62.61s84.37-27.94,85.31-62.67c10.09-4.8,17.07-15.09,17.07-27,0-16.51-13.38-29.89-29.89-29.89Z"></path>
4
+ </symbol>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="telegram" viewBox="189 301 543 450">
3
+ <path d="M226.328419,494.722069 C372.088573,431.216685 469.284839,389.350049 517.917216,369.122161 C656.772535,311.36743 685.625481,301.334815 704.431427,301.003532 C708.567621,300.93067 717.815839,301.955743 723.806446,306.816707 C728.864797,310.92121 730.256552,316.46581 730.922551,320.357329 C731.588551,324.248848 732.417879,333.113828 731.758626,340.040666 C724.234007,419.102486 691.675104,610.964674 675.110982,699.515267 C668.10208,736.984342 654.301336,749.547532 640.940618,750.777006 C611.904684,753.448938 589.856115,731.588035 561.733393,713.153237 C517.726886,684.306416 492.866009,666.349181 450.150074,638.200013 C400.78442,605.66878 432.786119,587.789048 460.919462,558.568563 C468.282091,550.921423 596.21508,434.556479 598.691227,424.000355 C599.00091,422.680135 599.288312,417.758981 596.36474,415.160431 C593.441168,412.561881 589.126229,413.450484 586.012448,414.157198 C581.598758,415.158943 511.297793,461.625274 375.109553,553.556189 C355.154858,567.258623 337.080515,573.934908 320.886524,573.585046 C303.033948,573.199351 268.692754,563.490928 243.163606,555.192408 C211.851067,545.013936 186.964484,539.632504 189.131547,522.346309 C190.260287,513.342589 202.659244,504.134509 226.328419,494.722069 Z"></path>
4
+ </symbol>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="threads" viewBox="0 0 192 192">
3
+ <path d="M141.537 88.9883C140.71 88.5919 139.87 88.2104 139.019 87.8451C137.537 60.5382 122.616 44.905 97.5619 44.745C97.4484 44.7443 97.3355 44.7443 97.222 44.7443C82.2364 44.7443 69.7731 51.1409 62.102 62.7807L75.881 72.2328C81.6116 63.5383 90.6052 61.6848 97.2286 61.6848C97.3051 61.6848 97.3819 61.6848 97.4576 61.6855C105.707 61.7381 111.932 64.1366 115.961 68.814C118.893 72.2193 120.854 76.925 121.825 82.8638C114.511 81.6207 106.601 81.2385 98.145 81.7233C74.3247 83.0954 59.0111 96.9879 60.0396 116.292C60.5615 126.084 65.4397 134.508 73.775 140.011C80.8224 144.663 89.899 146.938 99.3323 146.423C111.79 145.74 121.563 140.987 128.381 132.296C133.559 125.696 136.834 117.143 138.28 106.366C144.217 109.949 148.617 114.664 151.047 120.332C155.179 129.967 155.42 145.8 142.501 158.708C131.182 170.016 117.576 174.908 97.0135 175.059C74.2042 174.89 56.9538 167.575 45.7381 153.317C35.2355 139.966 29.8077 120.682 29.6052 96C29.8077 71.3178 35.2355 52.0336 45.7381 38.6827C56.9538 24.4249 74.2039 17.11 97.0132 16.9405C119.988 17.1113 137.539 24.4614 149.184 38.788C154.894 45.8136 159.199 54.6488 162.037 64.9503L178.184 60.6422C174.744 47.9622 169.331 37.0357 161.965 27.974C147.036 9.60668 125.202 0.195148 97.0695 0H96.9569C68.8816 0.19447 47.2921 9.6418 32.7883 28.0793C19.8819 44.4864 13.2244 67.3157 13.0007 95.9325L13 96L13.0007 96.0675C13.2244 124.684 19.8819 147.514 32.7883 163.921C47.2921 182.358 68.8816 191.806 96.9569 192H97.0695C122.03 191.827 139.624 185.292 154.118 170.811C173.081 151.866 172.51 128.119 166.26 113.541C161.776 103.087 153.227 94.5962 141.537 88.9883ZM98.4405 129.507C88.0005 130.095 77.1544 125.409 76.6196 115.372C76.2232 107.93 81.9158 99.626 99.0812 98.6368C101.047 98.5234 102.976 98.468 104.871 98.468C111.106 98.468 116.939 99.0737 122.242 100.233C120.264 124.935 108.662 128.946 98.4405 129.507Z"></path>
4
+ </symbol>
5
+ </svg>
data/assets/icon/x.svg ADDED
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <symbol id="x" viewBox="0 0 1200 1227">
3
+ <path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z"/>
4
+ </symbol>
5
+ </svg>
Binary file
Binary file
Binary file
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" viewBox="0 0 250 250">
2
+ <defs>
3
+ <linearGradient id="a">
4
+ <stop offset=".2" stop-color="#6852ad"/>
5
+ <stop offset="1" stop-color="#fe7a36"/>
6
+ </linearGradient>
7
+ <linearGradient xlink:href="#a" id="b" x1="211.9" x2="139.8" y1="133.3" y2="160.4" gradientUnits="userSpaceOnUse"/>
8
+ </defs>
9
+ <g fill="url(#b)" stroke-width="1.5" font-size="288" font-weight="bold" transform="translate(16.7 16.7) scale(.86606)">
10
+ <path d="M152.2 30.5v129.2q0 6.5-2 12.3-2 5.6-5.5 9.7-3.6 4.1-8.8 6.5-5 2.3-11.2 2.3-7.7 0-13-2-5.5-2-8.8-6.3-2.5-3.4-3.8-8.4-1.3-5-1.3-11.7H61.7q.1 14.5 4.7 25.2 4.6 10.8 13 17.8 8.2 7.2 19.7 10.8 11.5 3.6 25.6 3.6 13.3 0 24.8-4.4 11.7-4.3 20.2-12.3 8.6-7.9 13.5-18.8 5-11 5.1-24.3l-.1-129.2Z"/>
11
+ <path d="M97.8 127.5a18 18 0 0 1-18 18 18 18 0 0 1-18.1-18 18 18 0 0 1 18-18 18 18 0 0 1 18 18z"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250">
2
+ <path fill="#FAFAFA" d="M154.9 21.2v142q0 7-2.3 13.4-2 6.2-6 10.7t-9.6 7.2q-5.6 2.5-12.4 2.5-8.4 0-14.3-2.3t-9.6-6.8q-2.8-3.8-4.2-9.3-1.4-5.5-1.4-12.8H55.5q.1 15.9 5.2 27.7 5 11.8 14.2 19.5 9 8 21.6 11.8 12.7 4 28.1 4 14.7 0 27.3-4.8 12.8-4.8 22.2-13.5 9.5-8.7 14.8-20.7 5.5-12 5.6-26.7l-.1-141.9Z"/>
3
+ <circle cx="75.3" cy="127.7" r="19.8" fill="#FAFAFA"/>
4
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="background-color:#000" version="1.2" viewBox="0 0 250 250">
2
+ <defs>
3
+ <linearGradient id="a">
4
+ <stop offset=".2" stop-color="#6852ad"/>
5
+ <stop offset="1" stop-color="#fe7a36"/>
6
+ </linearGradient>
7
+ <linearGradient xlink:href="#a" id="b" x1="211.9" x2="139.8" y1="133.3" y2="160.4" gradientUnits="userSpaceOnUse"/>
8
+ </defs>
9
+ <g fill="url(#b)" stroke-width="1.5" font-size="288" font-weight="bold" transform="translate(16.7 16.7) scale(.86606)">
10
+ <path d="M152.2 30.5v129.2q0 6.5-2 12.3-2 5.6-5.5 9.7-3.6 4.1-8.8 6.5-5 2.3-11.2 2.3-7.7 0-13-2-5.5-2-8.8-6.3-2.5-3.4-3.8-8.4-1.3-5-1.3-11.7H61.7q.1 14.5 4.7 25.2 4.6 10.8 13 17.8 8.2 7.2 19.7 10.8 11.5 3.6 25.6 3.6 13.3 0 24.8-4.4 11.7-4.3 20.2-12.3 8.6-7.9 13.5-18.8 5-11 5.1-24.3l-.1-129.2Z"/>
11
+ <path d="M97.8 127.5a18 18 0 0 1-18 18 18 18 0 0 1-18.1-18 18 18 0 0 1 18-18 18 18 0 0 1 18 18z"/>
12
+ </g>
13
+ </svg>
Binary file
Binary file
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "Tallneck preview",
3
+ "short_name": "Tallneck",
4
+ "lang": "en",
5
+ "description": "Preview for the theme Tallneck for Jeckyll.",
6
+ "categories": ["personalization", "utilities", "medical"],
7
+ "start_url": "/tallneck-test",
8
+ "icons": [
9
+ {
10
+ "src": "/assets/image/pwa_icon.svg",
11
+ "sizes": "any",
12
+ "type": "image/svg+xml"
13
+ },
14
+ {
15
+ "src": "/assets/image/pwa_icon_x96.png",
16
+ "sizes": "96x96",
17
+ "type": "image/png"
18
+ },
19
+ {
20
+ "src": "/assets/image/pwa_icon_x512.png",
21
+ "sizes": "512x512",
22
+ "type": "image/png"
23
+ }
24
+ ],
25
+ "theme_color": "#282828",
26
+ "background_color": "#282828",
27
+ "display": "standalone"
28
+ }