insights4you-jekyll-theme 0.2.0 → 0.4.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 (276) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +110 -0
  3. data/README.md +114 -32
  4. data/_data/i4y-colors.json +218 -0
  5. data/_data/i4y-errors.json +32 -0
  6. data/_data/i4y-icons.json +1 -0
  7. data/_data/i4y-illustrations.json +20 -0
  8. data/_data/i4y-social-media.yml +24 -0
  9. data/_includes/card/profile.html +42 -0
  10. data/_includes/layout/footer.html +48 -0
  11. data/_includes/layout/head.html +79 -0
  12. data/_includes/layout/navbar-logo.html +137 -0
  13. data/_includes/layout/navbar.html +82 -0
  14. data/_includes/ui/button.html +13 -14
  15. data/_includes/ui/icon.html +24 -26
  16. data/_includes/ui/spinner.html +2 -0
  17. data/_includes/utils/banner.html +7 -0
  18. data/_includes/utils/settings.html +144 -0
  19. data/_layouts/base.html +63 -0
  20. data/_layouts/default.html +36 -11
  21. data/_sass/_bootstrap-components.scss +31 -0
  22. data/_sass/_bootstrap-config.scss +7 -0
  23. data/_sass/_bootstrap-override.scss +78 -0
  24. data/_sass/_config.scss +9 -0
  25. data/_sass/_core.scss +78 -0
  26. data/_sass/_debug.scss +49 -0
  27. data/_sass/_mixins.scss +2 -0
  28. data/_sass/_props.scss +91 -0
  29. data/_sass/_utilities-marketing.scss +209 -0
  30. data/_sass/_utilities.scss +135 -0
  31. data/_sass/_variables-dark.scss +19 -0
  32. data/_sass/_variables-marketing.scss +0 -0
  33. data/_sass/_variables.scss +1001 -0
  34. data/_sass/bootstrap/LICENSE +21 -0
  35. data/_sass/bootstrap/README.md +246 -0
  36. data/_sass/bootstrap/js/index.esm.js +19 -0
  37. data/_sass/bootstrap/js/index.umd.js +34 -0
  38. data/_sass/bootstrap/js/src/alert.js +87 -0
  39. data/_sass/bootstrap/js/src/base-component.js +85 -0
  40. data/_sass/bootstrap/js/src/button.js +72 -0
  41. data/_sass/bootstrap/js/src/carousel.js +474 -0
  42. data/_sass/bootstrap/js/src/collapse.js +297 -0
  43. data/_sass/bootstrap/js/src/dom/data.js +55 -0
  44. data/_sass/bootstrap/js/src/dom/event-handler.js +317 -0
  45. data/_sass/bootstrap/js/src/dom/manipulator.js +71 -0
  46. data/_sass/bootstrap/js/src/dom/selector-engine.js +126 -0
  47. data/_sass/bootstrap/js/src/dropdown.js +455 -0
  48. data/_sass/bootstrap/js/src/modal.js +378 -0
  49. data/_sass/bootstrap/js/src/offcanvas.js +282 -0
  50. data/_sass/bootstrap/js/src/popover.js +97 -0
  51. data/_sass/bootstrap/js/src/scrollspy.js +296 -0
  52. data/_sass/bootstrap/js/src/tab.js +315 -0
  53. data/_sass/bootstrap/js/src/toast.js +225 -0
  54. data/_sass/bootstrap/js/src/tooltip.js +633 -0
  55. data/_sass/bootstrap/js/src/util/backdrop.js +151 -0
  56. data/_sass/bootstrap/js/src/util/component-functions.js +35 -0
  57. data/_sass/bootstrap/js/src/util/config.js +65 -0
  58. data/_sass/bootstrap/js/src/util/focustrap.js +115 -0
  59. data/_sass/bootstrap/js/src/util/index.js +306 -0
  60. data/_sass/bootstrap/js/src/util/sanitizer.js +117 -0
  61. data/_sass/bootstrap/js/src/util/scrollbar.js +114 -0
  62. data/_sass/bootstrap/js/src/util/swipe.js +146 -0
  63. data/_sass/bootstrap/js/src/util/template-factory.js +160 -0
  64. data/_sass/bootstrap/package.json +184 -0
  65. data/_sass/bootstrap/scss/_accordion.scss +158 -0
  66. data/_sass/bootstrap/scss/_alert.scss +68 -0
  67. data/_sass/bootstrap/scss/_badge.scss +38 -0
  68. data/_sass/bootstrap/scss/_breadcrumb.scss +40 -0
  69. data/_sass/bootstrap/scss/_button-group.scss +142 -0
  70. data/_sass/bootstrap/scss/_buttons.scss +216 -0
  71. data/_sass/bootstrap/scss/_card.scss +239 -0
  72. data/_sass/bootstrap/scss/_carousel.scss +236 -0
  73. data/_sass/bootstrap/scss/_close.scss +63 -0
  74. data/_sass/bootstrap/scss/_containers.scss +41 -0
  75. data/_sass/bootstrap/scss/_dropdown.scss +250 -0
  76. data/_sass/bootstrap/scss/_forms.scss +9 -0
  77. data/_sass/bootstrap/scss/_functions.scss +302 -0
  78. data/_sass/bootstrap/scss/_grid.scss +39 -0
  79. data/_sass/bootstrap/scss/_helpers.scss +12 -0
  80. data/_sass/bootstrap/scss/_images.scss +42 -0
  81. data/_sass/bootstrap/scss/_list-group.scss +197 -0
  82. data/_sass/bootstrap/scss/_maps.scss +174 -0
  83. data/_sass/bootstrap/scss/_mixins.scss +42 -0
  84. data/_sass/bootstrap/scss/_modal.scss +236 -0
  85. data/_sass/bootstrap/scss/_nav.scss +197 -0
  86. data/_sass/bootstrap/scss/_navbar.scss +289 -0
  87. data/_sass/bootstrap/scss/_offcanvas.scss +143 -0
  88. data/_sass/bootstrap/scss/_pagination.scss +109 -0
  89. data/_sass/bootstrap/scss/_placeholders.scss +51 -0
  90. data/_sass/bootstrap/scss/_popover.scss +196 -0
  91. data/_sass/bootstrap/scss/_progress.scss +68 -0
  92. data/_sass/bootstrap/scss/_reboot.scss +611 -0
  93. data/_sass/bootstrap/scss/_root.scss +187 -0
  94. data/_sass/bootstrap/scss/_spinners.scss +85 -0
  95. data/_sass/bootstrap/scss/_tables.scss +171 -0
  96. data/_sass/bootstrap/scss/_toasts.scss +73 -0
  97. data/_sass/bootstrap/scss/_tooltip.scss +119 -0
  98. data/_sass/bootstrap/scss/_transitions.scss +27 -0
  99. data/_sass/bootstrap/scss/_type.scss +106 -0
  100. data/_sass/bootstrap/scss/_utilities.scss +806 -0
  101. data/_sass/bootstrap/scss/_variables-dark.scss +87 -0
  102. data/_sass/bootstrap/scss/_variables.scss +1751 -0
  103. data/_sass/bootstrap/scss/bootstrap-grid.scss +62 -0
  104. data/_sass/bootstrap/scss/bootstrap-reboot.scss +10 -0
  105. data/_sass/bootstrap/scss/bootstrap-utilities.scss +19 -0
  106. data/_sass/bootstrap/scss/bootstrap.scss +52 -0
  107. data/_sass/bootstrap/scss/forms/_floating-labels.scss +95 -0
  108. data/_sass/bootstrap/scss/forms/_form-check.scss +189 -0
  109. data/_sass/bootstrap/scss/forms/_form-control.scss +214 -0
  110. data/_sass/bootstrap/scss/forms/_form-range.scss +91 -0
  111. data/_sass/bootstrap/scss/forms/_form-select.scss +80 -0
  112. data/_sass/bootstrap/scss/forms/_form-text.scss +11 -0
  113. data/_sass/bootstrap/scss/forms/_input-group.scss +132 -0
  114. data/_sass/bootstrap/scss/forms/_labels.scss +36 -0
  115. data/_sass/bootstrap/scss/forms/_validation.scss +12 -0
  116. data/_sass/bootstrap/scss/helpers/_clearfix.scss +3 -0
  117. data/_sass/bootstrap/scss/helpers/_color-bg.scss +7 -0
  118. data/_sass/bootstrap/scss/helpers/_colored-links.scss +30 -0
  119. data/_sass/bootstrap/scss/helpers/_focus-ring.scss +5 -0
  120. data/_sass/bootstrap/scss/helpers/_icon-link.scss +25 -0
  121. data/_sass/bootstrap/scss/helpers/_position.scss +36 -0
  122. data/_sass/bootstrap/scss/helpers/_ratio.scss +26 -0
  123. data/_sass/bootstrap/scss/helpers/_stacks.scss +15 -0
  124. data/_sass/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  125. data/_sass/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  126. data/_sass/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  127. data/_sass/bootstrap/scss/helpers/_vr.scss +8 -0
  128. data/_sass/bootstrap/scss/mixins/_alert.scss +18 -0
  129. data/_sass/bootstrap/scss/mixins/_backdrop.scss +14 -0
  130. data/_sass/bootstrap/scss/mixins/_banner.scss +7 -0
  131. data/_sass/bootstrap/scss/mixins/_border-radius.scss +78 -0
  132. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  133. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  134. data/_sass/bootstrap/scss/mixins/_buttons.scss +70 -0
  135. data/_sass/bootstrap/scss/mixins/_caret.scss +69 -0
  136. data/_sass/bootstrap/scss/mixins/_clearfix.scss +9 -0
  137. data/_sass/bootstrap/scss/mixins/_color-mode.scss +21 -0
  138. data/_sass/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  139. data/_sass/bootstrap/scss/mixins/_container.scss +11 -0
  140. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  141. data/_sass/bootstrap/scss/mixins/_forms.scss +163 -0
  142. data/_sass/bootstrap/scss/mixins/_gradients.scss +47 -0
  143. data/_sass/bootstrap/scss/mixins/_grid.scss +151 -0
  144. data/_sass/bootstrap/scss/mixins/_image.scss +16 -0
  145. data/_sass/bootstrap/scss/mixins/_list-group.scss +26 -0
  146. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  147. data/_sass/bootstrap/scss/mixins/_pagination.scss +10 -0
  148. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  149. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  150. data/_sass/bootstrap/scss/mixins/_table-variants.scss +24 -0
  151. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  152. data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
  153. data/_sass/bootstrap/scss/mixins/_utilities.scss +97 -0
  154. data/_sass/bootstrap/scss/mixins/_visually-hidden.scss +33 -0
  155. data/_sass/bootstrap/scss/utilities/_api.scss +47 -0
  156. data/_sass/fonts/_webfonts.scss +15 -0
  157. data/_sass/helpers/_index.scss +143 -0
  158. data/_sass/layout/_animations.scss +63 -0
  159. data/_sass/layout/_core.scss +62 -0
  160. data/_sass/layout/_dark.scss +77 -0
  161. data/_sass/layout/_footer.scss +12 -0
  162. data/_sass/layout/_navbar.scss +392 -0
  163. data/_sass/layout/_page.scss +169 -0
  164. data/_sass/layout/_root.scss +64 -0
  165. data/_sass/marketing/_browser.scss +67 -0
  166. data/_sass/marketing/_core.scss +8 -0
  167. data/_sass/marketing/_filters.scss +0 -0
  168. data/_sass/marketing/_hero.scss +69 -0
  169. data/_sass/marketing/_pricing.scss +111 -0
  170. data/_sass/marketing/_sections.scss +124 -0
  171. data/_sass/marketing/_shape.scss +31 -0
  172. data/_sass/mixins/_functions.scss +96 -0
  173. data/_sass/mixins/_mixins.scss +68 -0
  174. data/_sass/tabler-flags.scss +2 -0
  175. data/_sass/tabler-marketing.scss +13 -0
  176. data/_sass/tabler-payments.scss +2 -0
  177. data/_sass/tabler-props.scss +1 -0
  178. data/_sass/tabler-socials.scss +2 -0
  179. data/_sass/tabler-themes.scss +121 -0
  180. data/_sass/tabler-vendors.scss +16 -0
  181. data/_sass/tabler.scss +2 -0
  182. data/_sass/ui/_accordion.scss +177 -0
  183. data/_sass/ui/_alerts.scss +99 -0
  184. data/_sass/ui/_avatars.scss +145 -0
  185. data/_sass/ui/_badges.scss +113 -0
  186. data/_sass/ui/_breadcrumbs.scss +50 -0
  187. data/_sass/ui/_button-group.scss +16 -0
  188. data/_sass/ui/_buttons.scss +261 -0
  189. data/_sass/ui/_calendars.scss +104 -0
  190. data/_sass/ui/_cards.scss +594 -0
  191. data/_sass/ui/_carousel.scss +68 -0
  192. data/_sass/ui/_charts.scss +61 -0
  193. data/_sass/ui/_chat.scss +38 -0
  194. data/_sass/ui/_chips.scss +0 -0
  195. data/_sass/ui/_close.scss +60 -0
  196. data/_sass/ui/_datagrid.scss +17 -0
  197. data/_sass/ui/_dropdowns.scss +120 -0
  198. data/_sass/ui/_empty.scss +60 -0
  199. data/_sass/ui/_flags.scss +31 -0
  200. data/_sass/ui/_forms.scss +241 -0
  201. data/_sass/ui/_grid.scss +115 -0
  202. data/_sass/ui/_icons.scss +72 -0
  203. data/_sass/ui/_images.scss +19 -0
  204. data/_sass/ui/_legend.scss +12 -0
  205. data/_sass/ui/_lists.scss +124 -0
  206. data/_sass/ui/_loaders.scss +72 -0
  207. data/_sass/ui/_login.scss +3 -0
  208. data/_sass/ui/_markdown.scss +43 -0
  209. data/_sass/ui/_modals.scss +67 -0
  210. data/_sass/ui/_nav.scss +96 -0
  211. data/_sass/ui/_offcanvas.scss +17 -0
  212. data/_sass/ui/_pagination.scss +58 -0
  213. data/_sass/ui/_payments.scss +28 -0
  214. data/_sass/ui/_placeholder.scss +9 -0
  215. data/_sass/ui/_popovers.scss +2 -0
  216. data/_sass/ui/_progress.scss +107 -0
  217. data/_sass/ui/_ribbons.scss +157 -0
  218. data/_sass/ui/_segmented.scss +101 -0
  219. data/_sass/ui/_signature.scss +15 -0
  220. data/_sass/ui/_social.scss +52 -0
  221. data/_sass/ui/_stars.scss +13 -0
  222. data/_sass/ui/_status.scss +163 -0
  223. data/_sass/ui/_steps.scss +156 -0
  224. data/_sass/ui/_switch-icon.scss +211 -0
  225. data/_sass/ui/_tables.scss +177 -0
  226. data/_sass/ui/_tags.scss +57 -0
  227. data/_sass/ui/_timeline.scss +61 -0
  228. data/_sass/ui/_toasts.scss +18 -0
  229. data/_sass/ui/_toolbar.scss +10 -0
  230. data/_sass/ui/_tracking.scss +29 -0
  231. data/_sass/ui/_type.scss +268 -0
  232. data/_sass/ui/forms/_form-check.scss +91 -0
  233. data/_sass/ui/forms/_form-colorinput.scss +54 -0
  234. data/_sass/ui/forms/_form-custom.scss +28 -0
  235. data/_sass/ui/forms/_form-icon.scss +35 -0
  236. data/_sass/ui/forms/_form-imagecheck.scss +105 -0
  237. data/_sass/ui/forms/_form-selectgroup.scss +153 -0
  238. data/_sass/ui/forms/_validation.scss +13 -0
  239. data/_sass/ui/typo/_hr.scss +77 -0
  240. data/_sass/utils/_background.scss +15 -0
  241. data/_sass/utils/_colors.scss +100 -0
  242. data/_sass/utils/_opacity.scss +7 -0
  243. data/_sass/utils/_scroll.scss +47 -0
  244. data/_sass/utils/_shadow.scss +9 -0
  245. data/_sass/utils/_sizing.scss +6 -0
  246. data/_sass/utils/_text.scss +15 -0
  247. data/_sass/vendors/_apexcharts.scss +48 -0
  248. data/_sass/vendors/_coloris.scss +72 -0
  249. data/_sass/vendors/_dropzone.scss +27 -0
  250. data/_sass/vendors/_fslightbox.scss +13 -0
  251. data/_sass/vendors/_jsvectormap.scss +47 -0
  252. data/_sass/vendors/_litepicker.scss +69 -0
  253. data/_sass/vendors/_nouislider.scss +49 -0
  254. data/_sass/vendors/_plyr.scss +3 -0
  255. data/_sass/vendors/_stars-rating.scss +22 -0
  256. data/_sass/vendors/_tinymce.scss +34 -0
  257. data/_sass/vendors/_tom-select.scss +81 -0
  258. data/_sass/vendors/_turbo.scss +3 -0
  259. data/_sass/vendors/_typed.scss +4 -0
  260. data/_sass/vendors/_wysiwyg.scss +34 -0
  261. data/assets/css/main.scss +10 -0
  262. data/assets/images/i4y-logo.jpg +0 -0
  263. data/assets/images/preview-dark.png +0 -0
  264. data/assets/js/custom.js +175 -0
  265. data/assets/js/custom.min.js +1 -0
  266. data/assets/js/theme.js +11 -30
  267. data/assets/js/theme.min.js +12 -0
  268. data/insights4you-jekyll-theme.gemspec +93 -0
  269. metadata +393 -25
  270. data/_includes/footer.html +0 -45
  271. data/_includes/head.html +0 -63
  272. data/_includes/header-logo.html +0 -179
  273. data/_includes/header-navbar.html +0 -69
  274. data/_includes/header-svg.html +0 -39
  275. data/_layouts/home.html +0 -19
  276. data/assets/css/theme.min.css +0 -90
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b1fb0a09c09bea65e66d227a87d457a2c07a1992ecf990704baa0f2b3a72cc4
4
- data.tar.gz: d837a99c62fcfe008bea93d44cac410ddad97c901980f5a6503c257e1a4ab48c
3
+ metadata.gz: 7e7de0952caad7e7ba6bdb9650aaa40e8a343c177967a0cdbf42801a46f1d738
4
+ data.tar.gz: 727f114144cd5246336b73239b9cc285d8240cd7bbf68b6ec42479185040096f
5
5
  SHA512:
6
- metadata.gz: 5d97e2a13ac71bc6bf9e2e3a63e17c2981cd52e2651ace5a17fc509c75e7765b81fac3478126ff7605f7111fe92ed2eca194b085b0e961b9c76b69b6204e616e
7
- data.tar.gz: f3e86d977c3b267eb161580660c0eed529c95a4a849b16f8028adb09171ac35900979a2b7377f8c3cf75691c8f0722ee2601477f73bc2119bc305ed5526ad2cd
6
+ metadata.gz: 804f08bc79666cc67596b3bf0ab5cafcf61a6279f18e10c4852c1fadd4f57ef6e6b501f0cea1154c421e9251bc2a9c856699f1992f5493ee2bf6269e16e09478
7
+ data.tar.gz: c00d4da9f2ac0caf0fa15acc27426a0d8e5f9065d35223a62238eae69c614afb35db0bc6f507817ed559e7566513f12bbb9eb052344f59b245f64d270fa1a242
data/CHANGELOG.md ADDED
@@ -0,0 +1,110 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.4.0]
9
+
10
+ ### Added
11
+ - **New UI Components**: Introduced additional UI components in the `_includes/ui` directory.
12
+ - **Custom JavaScript**: Added `assets/js/custom.js` for custom JavaScript functionalities.
13
+ - **Enhanced Documentation**: Updated `README.md` with detailed instructions and feature descriptions.
14
+ - **Gem Metadata**: Enhanced gemspec metadata with additional documentation and support links.
15
+
16
+ ### Changed
17
+ - **Theme Configuration**: Updated `_config.yml` in the example site for better theme configuration.
18
+ - **Dependencies**: Updated runtime and development dependencies in `insights4you-jekyll-theme.gemspec`.
19
+ - **Build Process**: Improved the Makefile for better build and test processes.
20
+
21
+ ### Fixed
22
+ - **Bug Fixes**: Resolved minor bugs and improved overall stability.
23
+
24
+ ### Removed
25
+ - **Deprecated Files**: Removed any deprecated or unused files to clean up the project structure.
26
+
27
+ ## [0.3.0]
28
+
29
+ ### Added
30
+ - **Theme System**: Implemented dark/light theme switching functionality
31
+ - **Theme Toggle**: Added theme toggle buttons in header navigation
32
+ - **Theme Persistence**: Added localStorage support for saving theme preferences
33
+ - **System Theme**: Added automatic system theme preference detection
34
+ - **Accessibility**: Added ARIA attributes and screen reader announcements for theme changes
35
+ - **Sass Architecture**: Added new _sass directory for better style organization
36
+
37
+ ### Changed
38
+ - **Asset Structure**: Reorganized CSS into Sass-based architecture
39
+ - **Resource Loading**: Updated stylesheet and script loading in head.html
40
+ - **Dependencies**: Updated Tabler Core CSS implementation
41
+ - **Example Site**: Updated example pages with new theme support
42
+ - **Documentation**: Enhanced configuration documentation
43
+ - **Build Process**: Improved asset compilation and organization
44
+
45
+ ### Removed
46
+ - **Legacy CSS**: Removed deprecated theme.min.css in favor of Sass structure
47
+
48
+ ### Fixed
49
+ - **Resource Loading**: Fixed stylesheet loading order and dependencies
50
+ - **Theme Toggle**: Improved theme switching reliability
51
+ - **UI Components**: Enhanced component styling for both light and dark themes
52
+
53
+
54
+ ## [0.2.3]
55
+
56
+ ### Added
57
+ - **Ruby Version Requirement**: Set minimum Ruby version to 3.2.2
58
+ - **Security**: Added `rubygems_mfa_required` metadata flag
59
+ - **Documentation**: Enhanced metadata with additional documentation URIs
60
+
61
+ ### Changed
62
+ - **Dependencies**: Updated Jekyll requirement to >= 4.4.1
63
+ - **Gemspec**: Improved file organization and readability
64
+ - **Installation**: Enhanced post-install message with quick start guide
65
+
66
+ ### Security
67
+ - **Authentication**: Enabled mandatory MFA for RubyGems publishing
68
+
69
+
70
+ ## [0.2.2]
71
+
72
+ ### Added
73
+
74
+ - **Social Media Component**: A new component for integrating social media links.
75
+ - **User Profile Component**: A dedicated component for displaying user profile information.
76
+
77
+ ### Changed
78
+
79
+ - **Notifications**: Resolved issues and improved the functionality of notifications.
80
+ - **Gemspec and Versioning**: Updated the gemspec file and version details for better compatibility.
81
+ - **Dynamic Menu System**: The menu is now dynamically generated, improving flexibility and maintainability.
82
+ - **Component Review**: Conducted a comprehensive review and refinement of all existing components.
83
+
84
+ ### Removed
85
+
86
+ - **Example Site Test File**: Removed the `example-site/test.html` file as it was no longer needed.
87
+
88
+
89
+ ## [0.2.0]
90
+
91
+ ### Added
92
+
93
+ - **UI Components**: Introduced a set of reusable UI components for consistency across the project.
94
+ - **Example Site for Testing**: Implemented an example site to facilitate testing and demonstration of features.
95
+ - **Changelog File**: Created the `changelog.md` file to track project updates systematically.
96
+
97
+ ### Changed
98
+
99
+ - **Layout Adjustments**: Made improvements to the home, default, and error layouts for better usability and design.
100
+ - **Gemspec Fixes**: Updated the gemspec file to address development-related issues.
101
+
102
+ ### Removed
103
+
104
+ - **N/A**: No files or features were removed in this release.
105
+
106
+
107
+ [0.4.0]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.3.0...v0.4.0
108
+ [0.3.0]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.2.3...v0.3.0
109
+ [0.2.3]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.2.2...v0.2.3
110
+ [0.2.2]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.2.0...v0.2.2
data/README.md CHANGED
@@ -1,34 +1,74 @@
1
- <!-- markdownlint-disable-next-line -->
2
1
  <div align='center'>
3
2
 
4
- <!-- markdownlint-disable-next-line -->
5
3
  # Insights4YOU Jekyll Theme
6
4
 
7
- A sleek and modern Jekyll theme inspired by the [Tabler Admin Dashboard](https://github.com/tabler). This theme offers a clean, professional, and responsive interface, making it ideal for developers, content creators, and businesses. Whether you're building documentation sites, admin panels, or project showcases, this theme provides a minimal-effort solution with customizable layouts and modern design elements.
5
+ A sleek and modern Jekyll theme inspired by the [Tabler Admin Dashboard](https://github.com/tabler/tabler). This theme offers a clean, professional, and responsive interface, making it ideal for developers, content creators, and businesses. Whether you're building documentation sites, admin panels, or project showcases, this theme provides a minimal-effort solution with customizable layouts and modern design elements.
8
6
 
9
- ![Theme Preview](https://via.placeholder.com/800x400?text=Insights4You+Theme+Preview)
7
+ ![Theme Preview](assets/images/preview-dark.png)
8
+
9
+ [![last commit](https://img.shields.io/github/last-commit/marciopaiva/insights4you-jekyll-theme?logo=github)][repo]
10
+ [![gem build](https://github.com/marciopaiva/insights4you-jekyll-theme/actions/workflows/gem-build.yml/badge.svg)][build]
11
+ [![codacy badge](https://img.shields.io/codacy/grade/4e556876a3c54d5e8f2d2857c4f43894?logo=codacy)][codacy]
12
+ [![gem version](https://img.shields.io/gem/v/insights4you-jekyll-theme?&logo=rubygems&logoColor=ghostwhite&label=gem&color=orange)][gem]
13
+ [![downloads](https://img.shields.io/gem/dt/insights4you-jekyll-theme?logo=rubygems&color=blue)][gem]
14
+ [![github license](https://img.shields.io/github/license/marciopaiva/insights4you-jekyll-theme?color=goldenrod)][license]
10
15
 
11
- [![last commit](https://img.shields.io/github/last-commit/marciopaiva/insights4you-jekyll-theme?logo=github)][repo]&nbsp;
12
- [![gem build](https://github.com/marciopaiva/insights4you-jekyll-theme/actions/workflows/gem-build.yml/badge.svg)][build]&nbsp;
13
- [![codacy badge](https://img.shields.io/codacy/grade/4e556876a3c54d5e8f2d2857c4f43894?logo=codacy)][codacy]&nbsp;
14
- [![gem version](https://img.shields.io/gem/v/insights4you-jekyll-theme?&logo=rubygems&logocolor=ghostwhite&label=gem&color=orange)][gem]&nbsp;
15
- [![downloads](https://img.shields.io/gem/dt/insights4you-jekyll-theme?logo=rubygems&color=blue)][gem]&nbsp;
16
- [![ruby version](https://img.shields.io/badge/ruby-~%3E%203.1-red?logo=ruby)][gem]
17
- [![github license](https://img.shields.io/github/license/marciopaiva/insights4you-jekyll-theme?color=goldenrod)][license]&nbsp;
18
16
  </div>
19
17
 
20
- ## Features
18
+ ## 🌟 Features
19
+
20
+ - 🌙 **Dark and Light Themes**: Switch between dark and light modes for a personalized experience
21
+ - 📱 **Responsive Design**: Fully optimized for mobile, tablet, and desktop devices
22
+ - 🔧 **Customizable Layouts**: Easily modify layouts to suit your needs
23
+ - 🚀 **SEO Optimized**: Built-in support for Jekyll SEO tags to improve search engine visibility
24
+ - 📦 **Gem-Based Installation**: Simple installation via RubyGems
25
+ - 📝 **Markdown Support**: Write content using Markdown for simplicity and flexibility
26
+ - 🎨 **Modern Design**: Inspired by the Tabler Admin Dashboard for a sleek and professional look
27
+ - 📊 **Analytics Ready**: Add analytics scripts easily for tracking user interactions
28
+ - 🔍 **Search Functionality**: Built-in search capabilities for content discovery
29
+ - 🎯 **Clean Code**: Well-documented and maintainable codebase
30
+ - 🛠️ **Developer Friendly**: Easy to extend and customize
31
+ - 📱 **Mobile First**: Designed with mobile devices in mind
32
+
33
+ ## 📋 Requirements
34
+
35
+ - Ruby >= 2.7.0
36
+ - Jekyll ~> 4.2
37
+ - Bundler ~> 2.3
38
+
39
+ ## 🚀 Quick Start
40
+
41
+ 1. **Install the theme:**
42
+ ```ruby
43
+ gem install insights4you-jekyll-theme
44
+ ```
45
+
46
+ 2. **Create a new Jekyll site:**
47
+ ```ruby
48
+ jekyll new my-website
49
+ ```
50
+
51
+ 3. **Add the theme to your Jekyll site's `Gemfile`:**
52
+ ```ruby
53
+ gem "insights4you-jekyll-theme"
54
+ ```
55
+
56
+ 4. **Update your `_config.yml`:**
57
+ ```yaml
58
+ theme: insights4you-jekyll-theme
59
+ ```
21
60
 
22
- - 🌙 **Dark and Light Themes**: Switch between dark and light modes for a personalized experience.
23
- - 📱 **Responsive Design**: Fully optimized for mobile, tablet, and desktop devices.
24
- - 🔧 **Customizable Layouts**: Easily modify layouts to suit your needs.
25
- - 🚀 **SEO Optimized**: Built-in support for Jekyll SEO tags to improve search engine visibility.
26
- - 📦 **Gem-Based Installation**: Simple installation via RubyGems.
27
- - 📝 **Markdown Support**: Write content using Markdown for simplicity and flexibility.
28
- - 🎨 **Modern Design**: Inspired by the Tabler Admin Dashboard for a sleek and professional look.
29
- - 📊 **Analytics Ready**: Add analytics scripts easily for tracking user interactions.
61
+ 5. **Install dependencies:**
62
+ ```bash
63
+ bundle install
64
+ ```
30
65
 
31
- ## Example Site
66
+ 6. **Start your site:**
67
+ ```bash
68
+ bundle exec jekyll serve
69
+ ```
70
+
71
+ ## 🎯 Demo Site
32
72
 
33
73
  To see the theme in action, check out the included example site:
34
74
 
@@ -36,19 +76,61 @@ To see the theme in action, check out the included example site:
36
76
  # Clone the repository
37
77
  git clone https://github.com/marciopaiva/insights4you-jekyll-theme.git
38
78
 
39
- # Navigate to example directory
40
- cd insights4you-jekyll-theme/example-site
41
-
42
- # Install dependencies
43
- bundle install
79
+ # Navigate to theme directory
80
+ cd insights4you-jekyll-theme
44
81
 
45
- # Serve the site locally
46
- bundle exec jekyll serve
82
+ # build and test
83
+ make dev
47
84
  ```
48
85
 
86
+ Visit `http://localhost:4000` to see the demo site in action.
87
+
88
+ ## 🎨 Customization
89
+
90
+ ### Theme Configuration
91
+ [WIP]
92
+
93
+ ### Available Layouts
94
+ - `default`: Standard page layout
95
+
96
+ ### Custom Styling
97
+ Create a new file `assets/css/custom.scss` to add your own styles:
98
+
99
+ [WIP]
100
+
101
+ ## 📝 Documentation
102
+
103
+ ### Directory Structure
104
+ [WIP]
105
+
106
+ ### Creating Posts
107
+ [WIP]
108
+
109
+ ### Creating Pages
110
+ [WIP]
111
+
112
+ ## 🤝 Contributing
113
+
114
+ We love your input! We want to make contributing to Insights4YOU as easy and transparent as possible. Please:
115
+
116
+ 1. Fork the repository
117
+ 2. Create your feature branch (`git checkout -b feature/amazing-feature`)
118
+ 3. Commit your changes (`git commit -m 'Add amazing feature'`)
119
+ 4. Push to the branch (`git push origin feature/amazing-feature`)
120
+ 5. Open a Pull Request
121
+
122
+ ## 📄 License
123
+
124
+ This project is licensed under the MIT License - see the LICENSE file for details.
125
+
126
+ ## 🙏 Acknowledgments
127
+
128
+ - Tabler Admin Dashboard for design inspiration
129
+ - Jekyll community for the amazing static site generator
130
+ - All contributors who help improve this theme
131
+
132
+ [repo]: https://github.com/marciopaiva/insights4you-jekyll-theme
133
+ [build]: https://github.com/marciopaiva/insights4you-jekyll-theme/actions/workflows/gem-build.yml
134
+ [codacy]: https://app.codacy.com/gh/marciopaiva/insights4you-jekyll-theme/dashboard
49
135
  [gem]: https://rubygems.org/gems/insights4you-jekyll-theme
50
- [codacy]: https://app.codacy.com/gh/marciopaiva/insights4you-jekyll-theme/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade
51
136
  [license]: https://github.com/marciopaiva/insights4you-jekyll-theme/blob/master/LICENSE
52
- [build]: https://github.com/marciopaiva/insights4you-jekyll-theme/actions/workflows/gem-build.yml
53
- [repo]: https://github.com/marciopaiva/insights4you-jekyll-theme
54
- [issues]: https://github.com/marciopaiva/insights4you-jekyll-theme/issues
@@ -0,0 +1,218 @@
1
+ {
2
+ "base": [
3
+ {
4
+ "name": "blue",
5
+ "variable": "var(--tblr-blue)",
6
+ "value": "#066fd1"
7
+ },
8
+ {
9
+ "name": "azure",
10
+ "variable": "var(--tblr-azure)",
11
+ "value": "#4299e1"
12
+ },
13
+ {
14
+ "name": "indigo",
15
+ "variable": "var(--tblr-indigo)",
16
+ "value": "#4263eb"
17
+ },
18
+ {
19
+ "name": "purple",
20
+ "variable": "var(--tblr-purple)",
21
+ "value": "#ae3ec9"
22
+ },
23
+ {
24
+ "name": "pink",
25
+ "variable": "var(--tblr-pink)",
26
+ "value": "#d6336c"
27
+ },
28
+ {
29
+ "name": "red",
30
+ "variable": "var(--tblr-red)",
31
+ "value": "#d63939"
32
+ },
33
+ {
34
+ "name": "orange",
35
+ "variable": "var(--tblr-orange)",
36
+ "value": "#f76707"
37
+ },
38
+ {
39
+ "name": "yellow",
40
+ "variable": "var(--tblr-yellow)",
41
+ "value": "#f59f00"
42
+ },
43
+ {
44
+ "name": "lime",
45
+ "variable": "var(--tblr-lime)",
46
+ "value": "#74b816"
47
+ },
48
+ {
49
+ "name": "green",
50
+ "variable": "var(--tblr-green)",
51
+ "value": "#2fb344"
52
+ },
53
+ {
54
+ "name": "teal",
55
+ "variable": "var(--tblr-teal)",
56
+ "value": "#0ca678"
57
+ },
58
+ {
59
+ "name": "cyan",
60
+ "variable": "var(--tblr-cyan)",
61
+ "value": "#17a2b8"
62
+ }
63
+ ],
64
+ "grays": [
65
+ {
66
+ "name": "gray-50",
67
+ "value": "#f8fafc"
68
+ },
69
+ {
70
+ "name": "gray-100",
71
+ "value": "#f1f5f9"
72
+ },
73
+ {
74
+ "name": "gray-200",
75
+ "value": "#e2e8f0"
76
+ },
77
+ {
78
+ "name": "gray-300",
79
+ "value": "#c8d3e1"
80
+ },
81
+ {
82
+ "name": "gray-400",
83
+ "value": "#9ba9be"
84
+ },
85
+ {
86
+ "name": "gray-500",
87
+ "value": "#6c7a91"
88
+ },
89
+ {
90
+ "name": "gray-600",
91
+ "value": "#49566c"
92
+ },
93
+ {
94
+ "name": "gray-700",
95
+ "value": "#313c52"
96
+ },
97
+ {
98
+ "name": "gray-800",
99
+ "value": "#1d273b"
100
+ },
101
+ {
102
+ "name": "gray-900",
103
+ "value": "#0f172a"
104
+ }
105
+ ],
106
+ "light": [
107
+ {
108
+ "name": "blue-lt",
109
+ "value": "#e9f0f9"
110
+ },
111
+ {
112
+ "name": "azure-lt",
113
+ "value": "#ecf5fc"
114
+ },
115
+ {
116
+ "name": "indigo-lt",
117
+ "value": "#eceffd"
118
+ },
119
+ {
120
+ "name": "purple-lt",
121
+ "value": "#f7ecfa"
122
+ },
123
+ {
124
+ "name": "pink-lt",
125
+ "value": "#fbebf0"
126
+ },
127
+ {
128
+ "name": "red-lt",
129
+ "value": "#fbebeb"
130
+ },
131
+ {
132
+ "name": "orange-lt",
133
+ "value": "#fef0e6"
134
+ },
135
+ {
136
+ "name": "yellow-lt",
137
+ "value": "#fef5e6"
138
+ },
139
+ {
140
+ "name": "lime-lt",
141
+ "value": "#f1f8e8"
142
+ },
143
+ {
144
+ "name": "green-lt",
145
+ "value": "#eaf7ec"
146
+ },
147
+ {
148
+ "name": "teal-lt",
149
+ "value": "#e7f6f2"
150
+ },
151
+ {
152
+ "name": "cyan-lt",
153
+ "value": "#e8f6f8"
154
+ }
155
+ ],
156
+ "social": [
157
+ {
158
+ "name": "facebook",
159
+ "value": "#1877F2"
160
+ },
161
+ {
162
+ "name": "twitter",
163
+ "value": "#1da1f2"
164
+ },
165
+ {
166
+ "name": "linkedin",
167
+ "value": "#0a66c2"
168
+ },
169
+ {
170
+ "name": "google",
171
+ "value": "#dc4e41"
172
+ },
173
+ {
174
+ "name": "youtube",
175
+ "value": "#ff0000"
176
+ },
177
+ {
178
+ "name": "vimeo",
179
+ "value": "#1ab7ea"
180
+ },
181
+ {
182
+ "name": "dribbble",
183
+ "value": "#ea4c89"
184
+ },
185
+ {
186
+ "name": "github",
187
+ "value": "#181717"
188
+ },
189
+ {
190
+ "name": "instagram",
191
+ "value": "#e4405f"
192
+ },
193
+ {
194
+ "name": "pinterest",
195
+ "value": "#bd081c"
196
+ },
197
+ {
198
+ "name": "vk",
199
+ "value": "#6383a8"
200
+ },
201
+ {
202
+ "name": "rss",
203
+ "value": "#ffa500"
204
+ },
205
+ {
206
+ "name": "flickr",
207
+ "value": "#0063dc"
208
+ },
209
+ {
210
+ "name": "bitbucket",
211
+ "value": "#0052cc"
212
+ },
213
+ {
214
+ "name": "tabler",
215
+ "value": "#066fd1"
216
+ }
217
+ ]
218
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "400": {
3
+ "title": 400,
4
+ "description": "We are sorry but your request contains bad syntax and cannot be fulfilled"
5
+ },
6
+ "401": {
7
+ "title": 401,
8
+ "description": "We are sorry but you are not authorized to access this page"
9
+ },
10
+ "403": {
11
+ "title": 403,
12
+ "description": "We are sorry but you do not have permission to access this page"
13
+ },
14
+ "404": {
15
+ "illustration": "not-found.svg",
16
+ "title": 404,
17
+ "description": "We are sorry but the page you are looking for was not found"
18
+ },
19
+ "500": {
20
+ "title": 500,
21
+ "description": "We are sorry but our server encountered an internal error"
22
+ },
23
+ "503": {
24
+ "title": 503,
25
+ "description": "We are sorry but our service is currently not available"
26
+ },
27
+ "maintenance": {
28
+ "illustration": "computer-fix.svg",
29
+ "header": "Temporarily down for maintenance",
30
+ "description": "Sorry for the inconvenience but we’re performing some maintenance at the moment. We’ll be back online shortly!"
31
+ }
32
+ }