sexyjekyll-theme 1.0.0

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.
Files changed (83) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +82 -0
  3. data/LICENSE +21 -0
  4. data/README.de.md +276 -0
  5. data/README.es.md +276 -0
  6. data/README.fr.md +276 -0
  7. data/README.it.md +219 -0
  8. data/README.md +276 -0
  9. data/_includes/critical-css.html +4 -0
  10. data/_includes/footer.html +81 -0
  11. data/_includes/head.html +88 -0
  12. data/_includes/nav.html +21 -0
  13. data/_includes/related-posts.html +75 -0
  14. data/_includes/social-icon.html +98 -0
  15. data/_includes/structured-data-article.html +55 -0
  16. data/_includes/structured-data-breadcrumb.html +28 -0
  17. data/_includes/structured-data-person.html +82 -0
  18. data/_includes/structured-data-website.html +23 -0
  19. data/_layouts/blog.html +101 -0
  20. data/_layouts/category.html +66 -0
  21. data/_layouts/contact.html +26 -0
  22. data/_layouts/default.html +13 -0
  23. data/_layouts/home.html +30 -0
  24. data/_layouts/llms.txt +34 -0
  25. data/_layouts/post.html +99 -0
  26. data/_plugins/auto_related_posts.rb +153 -0
  27. data/_plugins/category_generator.rb +27 -0
  28. data/_plugins/llms_txt_generator.rb +45 -0
  29. data/_plugins/localized_date.rb +52 -0
  30. data/assets/bg.jpeg +0 -0
  31. data/assets/bg.webp +0 -0
  32. data/assets/debug/blocco.png +0 -0
  33. data/assets/debug/categorie.jpeg +0 -0
  34. data/assets/debug/categorie.png +0 -0
  35. data/assets/debug/codice.png +0 -0
  36. data/assets/debug/contrasto.jpeg +0 -0
  37. data/assets/debug/dipendenze.png +0 -0
  38. data/assets/debug/h1.png +0 -0
  39. data/assets/debug/pagespeed.png +0 -0
  40. data/assets/debug/ricerca.png +0 -0
  41. data/assets/debug/richieste.png +0 -0
  42. data/assets/favicon/android-icon-144x144.png +0 -0
  43. data/assets/favicon/android-icon-192x192.png +0 -0
  44. data/assets/favicon/android-icon-36x36.png +0 -0
  45. data/assets/favicon/android-icon-48x48.png +0 -0
  46. data/assets/favicon/android-icon-72x72.png +0 -0
  47. data/assets/favicon/android-icon-96x96.png +0 -0
  48. data/assets/favicon/apple-icon-114x114.png +0 -0
  49. data/assets/favicon/apple-icon-120x120.png +0 -0
  50. data/assets/favicon/apple-icon-144x144.png +0 -0
  51. data/assets/favicon/apple-icon-152x152.png +0 -0
  52. data/assets/favicon/apple-icon-180x180.png +0 -0
  53. data/assets/favicon/apple-icon-57x57.png +0 -0
  54. data/assets/favicon/apple-icon-60x60.png +0 -0
  55. data/assets/favicon/apple-icon-72x72.png +0 -0
  56. data/assets/favicon/apple-icon-76x76.png +0 -0
  57. data/assets/favicon/apple-icon-precomposed.png +0 -0
  58. data/assets/favicon/apple-icon.png +0 -0
  59. data/assets/favicon/favicon-16x16.png +0 -0
  60. data/assets/favicon/favicon-32x32.png +0 -0
  61. data/assets/favicon/favicon-96x96.png +0 -0
  62. data/assets/favicon/favicon.ico +0 -0
  63. data/assets/favicon/ms-icon-144x144.png +0 -0
  64. data/assets/favicon/ms-icon-150x150.png +0 -0
  65. data/assets/favicon/ms-icon-310x310.png +0 -0
  66. data/assets/favicon/ms-icon-70x70.png +0 -0
  67. data/assets/images/aiact.jpeg +0 -0
  68. data/assets/images/aiethics.jpeg +0 -0
  69. data/assets/images/green.jpeg +0 -0
  70. data/assets/images/jekyll.webp +0 -0
  71. data/assets/images/parenting.jpeg +0 -0
  72. data/assets/images/seo-generativo.jpeg +0 -0
  73. data/assets/images/upskilling-ai.jpeg +0 -0
  74. data/assets/pic.jpeg +0 -0
  75. data/assets/screens/screen.jpeg +0 -0
  76. data/assets/screens/screen2.jpeg +0 -0
  77. data/css/animations.css +404 -0
  78. data/css/style.css +2250 -0
  79. data/css/syntax-dark.css +157 -0
  80. data/css/syntax-light.css +157 -0
  81. data/js/main.js +706 -0
  82. data/js/simple-jekyll-search.min.js +6 -0
  83. metadata +254 -0
@@ -0,0 +1,157 @@
1
+ /* Line numbers table structure */
2
+ .highlight table {
3
+ width: 100%;
4
+ border-collapse: collapse;
5
+ margin: 0;
6
+ border-spacing: 0;
7
+ }
8
+
9
+ .highlight table td {
10
+ padding: 0;
11
+ border: none;
12
+ }
13
+
14
+ .highlight table pre {
15
+ margin: 0;
16
+ padding: 0;
17
+ }
18
+
19
+ /* Line numbers column */
20
+ .highlight .lineno {
21
+ color: #6e7681;
22
+ background-color: transparent;
23
+ border: none;
24
+ padding: 0 1rem 0 0;
25
+ text-align: left;
26
+ user-select: none;
27
+ min-width: 3rem;
28
+ vertical-align: top;
29
+ font-family: 'SF Mono', 'Consolas', 'Monaco', 'Courier New', monospace;
30
+ }
31
+
32
+ .highlight .lineno::before {
33
+ content: attr(data-line-number);
34
+ }
35
+
36
+ /* Code column */
37
+ .highlight .code {
38
+ padding: 0 0 0 1rem;
39
+ }
40
+
41
+ .highlight .code pre {
42
+ padding: 0;
43
+ }
44
+ .highlight, .highlight .w {
45
+ color: #c9d1d9;
46
+ background-color: #161b22;
47
+ }
48
+ .highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt, .highlight .kv {
49
+ color: #ff7b72;
50
+ }
51
+ .highlight .gr {
52
+ color: #f0f6fc;
53
+ }
54
+ .highlight .gd {
55
+ color: #ffdcd7;
56
+ background-color: #67060c;
57
+ }
58
+ .highlight .nb {
59
+ color: #ffa657;
60
+ }
61
+ .highlight .nc {
62
+ color: #ffa657;
63
+ }
64
+ .highlight .no {
65
+ color: #ffa657;
66
+ }
67
+ .highlight .nn {
68
+ color: #ffa657;
69
+ }
70
+ .highlight .sr {
71
+ color: #7ee787;
72
+ }
73
+ .highlight .na {
74
+ color: #7ee787;
75
+ }
76
+ .highlight .nt {
77
+ color: #7ee787;
78
+ }
79
+ .highlight .gi {
80
+ color: #aff5b4;
81
+ background-color: #033a16;
82
+ }
83
+ .highlight .ges {
84
+ font-weight: bold;
85
+ font-style: italic;
86
+ }
87
+ .highlight .kc {
88
+ color: #79c0ff;
89
+ }
90
+ .highlight .l, .highlight .ld, .highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
91
+ color: #79c0ff;
92
+ }
93
+ .highlight .sb {
94
+ color: #79c0ff;
95
+ }
96
+ .highlight .bp {
97
+ color: #79c0ff;
98
+ }
99
+ .highlight .ne {
100
+ color: #79c0ff;
101
+ }
102
+ .highlight .nl {
103
+ color: #79c0ff;
104
+ }
105
+ .highlight .py {
106
+ color: #79c0ff;
107
+ }
108
+ .highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi, .highlight .vm {
109
+ color: #79c0ff;
110
+ }
111
+ .highlight .o, .highlight .ow {
112
+ color: #79c0ff;
113
+ }
114
+ .highlight .gh {
115
+ color: #1f6feb;
116
+ font-weight: bold;
117
+ }
118
+ .highlight .gu {
119
+ color: #1f6feb;
120
+ font-weight: bold;
121
+ }
122
+ .highlight .s, .highlight .sa, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .sx, .highlight .s1, .highlight .ss {
123
+ color: #a5d6ff;
124
+ }
125
+ .highlight .nd {
126
+ color: #d2a8ff;
127
+ }
128
+ .highlight .nf, .highlight .fm {
129
+ color: #d2a8ff;
130
+ }
131
+ .highlight .err {
132
+ color: #f0f6fc;
133
+ background-color: #8e1519;
134
+ }
135
+ .highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cp, .highlight .cpf, .highlight .c1, .highlight .cs {
136
+ color: #8b949e;
137
+ }
138
+ .highlight .gl {
139
+ color: #8b949e;
140
+ }
141
+ .highlight .gt {
142
+ color: #8b949e;
143
+ }
144
+ .highlight .ni {
145
+ color: #c9d1d9;
146
+ }
147
+ .highlight .si {
148
+ color: #c9d1d9;
149
+ }
150
+ .highlight .ge {
151
+ color: #c9d1d9;
152
+ font-style: italic;
153
+ }
154
+ .highlight .gs {
155
+ color: #c9d1d9;
156
+ font-weight: bold;
157
+ }
@@ -0,0 +1,157 @@
1
+ /* Line numbers table structure */
2
+ .highlight table {
3
+ width: 100%;
4
+ border-collapse: collapse;
5
+ margin: 0;
6
+ border-spacing: 0;
7
+ }
8
+
9
+ .highlight table td {
10
+ padding: 0;
11
+ border: none;
12
+ }
13
+
14
+ .highlight table pre {
15
+ margin: 0;
16
+ padding: 0;
17
+ }
18
+
19
+ /* Line numbers column */
20
+ .highlight .lineno {
21
+ color: #57606a;
22
+ background-color: transparent;
23
+ border: none;
24
+ padding: 0 1rem 0 0;
25
+ text-align: left;
26
+ user-select: none;
27
+ min-width: 3rem;
28
+ vertical-align: top;
29
+ font-family: 'SF Mono', 'Consolas', 'Monaco', 'Courier New', monospace;
30
+ }
31
+
32
+ .highlight .lineno::before {
33
+ content: attr(data-line-number);
34
+ }
35
+
36
+ /* Code column */
37
+ .highlight .code {
38
+ padding: 0 0 0 1rem;
39
+ }
40
+
41
+ .highlight .code pre {
42
+ padding: 0;
43
+ }
44
+ .highlight, .highlight .w {
45
+ color: #24292f;
46
+ background-color: #f6f8fa;
47
+ }
48
+ .highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt, .highlight .kv {
49
+ color: #cf222e;
50
+ }
51
+ .highlight .gr {
52
+ color: #f6f8fa;
53
+ }
54
+ .highlight .gd {
55
+ color: #82071e;
56
+ background-color: #ffebe9;
57
+ }
58
+ .highlight .nb {
59
+ color: #953800;
60
+ }
61
+ .highlight .nc {
62
+ color: #953800;
63
+ }
64
+ .highlight .no {
65
+ color: #953800;
66
+ }
67
+ .highlight .nn {
68
+ color: #953800;
69
+ }
70
+ .highlight .sr {
71
+ color: #116329;
72
+ }
73
+ .highlight .na {
74
+ color: #116329;
75
+ }
76
+ .highlight .nt {
77
+ color: #116329;
78
+ }
79
+ .highlight .gi {
80
+ color: #116329;
81
+ background-color: #dafbe1;
82
+ }
83
+ .highlight .ges {
84
+ font-weight: bold;
85
+ font-style: italic;
86
+ }
87
+ .highlight .kc {
88
+ color: #0550ae;
89
+ }
90
+ .highlight .l, .highlight .ld, .highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
91
+ color: #0550ae;
92
+ }
93
+ .highlight .sb {
94
+ color: #0550ae;
95
+ }
96
+ .highlight .bp {
97
+ color: #0550ae;
98
+ }
99
+ .highlight .ne {
100
+ color: #0550ae;
101
+ }
102
+ .highlight .nl {
103
+ color: #0550ae;
104
+ }
105
+ .highlight .py {
106
+ color: #0550ae;
107
+ }
108
+ .highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi, .highlight .vm {
109
+ color: #0550ae;
110
+ }
111
+ .highlight .o, .highlight .ow {
112
+ color: #0550ae;
113
+ }
114
+ .highlight .gh {
115
+ color: #0550ae;
116
+ font-weight: bold;
117
+ }
118
+ .highlight .gu {
119
+ color: #0550ae;
120
+ font-weight: bold;
121
+ }
122
+ .highlight .s, .highlight .sa, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .sx, .highlight .s1, .highlight .ss {
123
+ color: #0a3069;
124
+ }
125
+ .highlight .nd {
126
+ color: #8250df;
127
+ }
128
+ .highlight .nf, .highlight .fm {
129
+ color: #8250df;
130
+ }
131
+ .highlight .err {
132
+ color: #f6f8fa;
133
+ background-color: #82071e;
134
+ }
135
+ .highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cp, .highlight .cpf, .highlight .c1, .highlight .cs {
136
+ color: #6e7781;
137
+ }
138
+ .highlight .gl {
139
+ color: #6e7781;
140
+ }
141
+ .highlight .gt {
142
+ color: #6e7781;
143
+ }
144
+ .highlight .ni {
145
+ color: #24292f;
146
+ }
147
+ .highlight .si {
148
+ color: #24292f;
149
+ }
150
+ .highlight .ge {
151
+ color: #24292f;
152
+ font-style: italic;
153
+ }
154
+ .highlight .gs {
155
+ color: #24292f;
156
+ font-weight: bold;
157
+ }