insights4you-jekyll-theme 0.2.2 → 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 (271) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +110 -0
  3. data/README.md +113 -30
  4. data/_data/i4y-colors.json +218 -0
  5. data/_data/i4y-social-media.yml +0 -2
  6. data/_includes/layout/footer.html +48 -0
  7. data/_includes/{head.html → layout/head.html} +40 -20
  8. data/_includes/layout/navbar-logo.html +137 -0
  9. data/_includes/layout/navbar.html +82 -0
  10. data/_includes/ui/button.html +13 -14
  11. data/_includes/ui/icon.html +24 -26
  12. data/_includes/ui/spinner.html +2 -0
  13. data/_includes/utils/banner.html +7 -0
  14. data/_includes/utils/settings.html +144 -0
  15. data/_layouts/base.html +63 -0
  16. data/_layouts/default.html +39 -16
  17. data/_sass/_bootstrap-components.scss +31 -0
  18. data/_sass/_bootstrap-config.scss +7 -0
  19. data/_sass/_bootstrap-override.scss +78 -0
  20. data/_sass/_config.scss +9 -0
  21. data/_sass/_core.scss +78 -0
  22. data/_sass/_debug.scss +49 -0
  23. data/_sass/_mixins.scss +2 -0
  24. data/_sass/_props.scss +91 -0
  25. data/_sass/_utilities-marketing.scss +209 -0
  26. data/_sass/_utilities.scss +135 -0
  27. data/_sass/_variables-dark.scss +19 -0
  28. data/_sass/_variables-marketing.scss +0 -0
  29. data/_sass/_variables.scss +1001 -0
  30. data/_sass/bootstrap/LICENSE +21 -0
  31. data/_sass/bootstrap/README.md +246 -0
  32. data/_sass/bootstrap/js/index.esm.js +19 -0
  33. data/_sass/bootstrap/js/index.umd.js +34 -0
  34. data/_sass/bootstrap/js/src/alert.js +87 -0
  35. data/_sass/bootstrap/js/src/base-component.js +85 -0
  36. data/_sass/bootstrap/js/src/button.js +72 -0
  37. data/_sass/bootstrap/js/src/carousel.js +474 -0
  38. data/_sass/bootstrap/js/src/collapse.js +297 -0
  39. data/_sass/bootstrap/js/src/dom/data.js +55 -0
  40. data/_sass/bootstrap/js/src/dom/event-handler.js +317 -0
  41. data/_sass/bootstrap/js/src/dom/manipulator.js +71 -0
  42. data/_sass/bootstrap/js/src/dom/selector-engine.js +126 -0
  43. data/_sass/bootstrap/js/src/dropdown.js +455 -0
  44. data/_sass/bootstrap/js/src/modal.js +378 -0
  45. data/_sass/bootstrap/js/src/offcanvas.js +282 -0
  46. data/_sass/bootstrap/js/src/popover.js +97 -0
  47. data/_sass/bootstrap/js/src/scrollspy.js +296 -0
  48. data/_sass/bootstrap/js/src/tab.js +315 -0
  49. data/_sass/bootstrap/js/src/toast.js +225 -0
  50. data/_sass/bootstrap/js/src/tooltip.js +633 -0
  51. data/_sass/bootstrap/js/src/util/backdrop.js +151 -0
  52. data/_sass/bootstrap/js/src/util/component-functions.js +35 -0
  53. data/_sass/bootstrap/js/src/util/config.js +65 -0
  54. data/_sass/bootstrap/js/src/util/focustrap.js +115 -0
  55. data/_sass/bootstrap/js/src/util/index.js +306 -0
  56. data/_sass/bootstrap/js/src/util/sanitizer.js +117 -0
  57. data/_sass/bootstrap/js/src/util/scrollbar.js +114 -0
  58. data/_sass/bootstrap/js/src/util/swipe.js +146 -0
  59. data/_sass/bootstrap/js/src/util/template-factory.js +160 -0
  60. data/_sass/bootstrap/package.json +184 -0
  61. data/_sass/bootstrap/scss/_accordion.scss +158 -0
  62. data/_sass/bootstrap/scss/_alert.scss +68 -0
  63. data/_sass/bootstrap/scss/_badge.scss +38 -0
  64. data/_sass/bootstrap/scss/_breadcrumb.scss +40 -0
  65. data/_sass/bootstrap/scss/_button-group.scss +142 -0
  66. data/_sass/bootstrap/scss/_buttons.scss +216 -0
  67. data/_sass/bootstrap/scss/_card.scss +239 -0
  68. data/_sass/bootstrap/scss/_carousel.scss +236 -0
  69. data/_sass/bootstrap/scss/_close.scss +63 -0
  70. data/_sass/bootstrap/scss/_containers.scss +41 -0
  71. data/_sass/bootstrap/scss/_dropdown.scss +250 -0
  72. data/_sass/bootstrap/scss/_forms.scss +9 -0
  73. data/_sass/bootstrap/scss/_functions.scss +302 -0
  74. data/_sass/bootstrap/scss/_grid.scss +39 -0
  75. data/_sass/bootstrap/scss/_helpers.scss +12 -0
  76. data/_sass/bootstrap/scss/_images.scss +42 -0
  77. data/_sass/bootstrap/scss/_list-group.scss +197 -0
  78. data/_sass/bootstrap/scss/_maps.scss +174 -0
  79. data/_sass/bootstrap/scss/_mixins.scss +42 -0
  80. data/_sass/bootstrap/scss/_modal.scss +236 -0
  81. data/_sass/bootstrap/scss/_nav.scss +197 -0
  82. data/_sass/bootstrap/scss/_navbar.scss +289 -0
  83. data/_sass/bootstrap/scss/_offcanvas.scss +143 -0
  84. data/_sass/bootstrap/scss/_pagination.scss +109 -0
  85. data/_sass/bootstrap/scss/_placeholders.scss +51 -0
  86. data/_sass/bootstrap/scss/_popover.scss +196 -0
  87. data/_sass/bootstrap/scss/_progress.scss +68 -0
  88. data/_sass/bootstrap/scss/_reboot.scss +611 -0
  89. data/_sass/bootstrap/scss/_root.scss +187 -0
  90. data/_sass/bootstrap/scss/_spinners.scss +85 -0
  91. data/_sass/bootstrap/scss/_tables.scss +171 -0
  92. data/_sass/bootstrap/scss/_toasts.scss +73 -0
  93. data/_sass/bootstrap/scss/_tooltip.scss +119 -0
  94. data/_sass/bootstrap/scss/_transitions.scss +27 -0
  95. data/_sass/bootstrap/scss/_type.scss +106 -0
  96. data/_sass/bootstrap/scss/_utilities.scss +806 -0
  97. data/_sass/bootstrap/scss/_variables-dark.scss +87 -0
  98. data/_sass/bootstrap/scss/_variables.scss +1751 -0
  99. data/_sass/bootstrap/scss/bootstrap-grid.scss +62 -0
  100. data/_sass/bootstrap/scss/bootstrap-reboot.scss +10 -0
  101. data/_sass/bootstrap/scss/bootstrap-utilities.scss +19 -0
  102. data/_sass/bootstrap/scss/bootstrap.scss +52 -0
  103. data/_sass/bootstrap/scss/forms/_floating-labels.scss +95 -0
  104. data/_sass/bootstrap/scss/forms/_form-check.scss +189 -0
  105. data/_sass/bootstrap/scss/forms/_form-control.scss +214 -0
  106. data/_sass/bootstrap/scss/forms/_form-range.scss +91 -0
  107. data/_sass/bootstrap/scss/forms/_form-select.scss +80 -0
  108. data/_sass/bootstrap/scss/forms/_form-text.scss +11 -0
  109. data/_sass/bootstrap/scss/forms/_input-group.scss +132 -0
  110. data/_sass/bootstrap/scss/forms/_labels.scss +36 -0
  111. data/_sass/bootstrap/scss/forms/_validation.scss +12 -0
  112. data/_sass/bootstrap/scss/helpers/_clearfix.scss +3 -0
  113. data/_sass/bootstrap/scss/helpers/_color-bg.scss +7 -0
  114. data/_sass/bootstrap/scss/helpers/_colored-links.scss +30 -0
  115. data/_sass/bootstrap/scss/helpers/_focus-ring.scss +5 -0
  116. data/_sass/bootstrap/scss/helpers/_icon-link.scss +25 -0
  117. data/_sass/bootstrap/scss/helpers/_position.scss +36 -0
  118. data/_sass/bootstrap/scss/helpers/_ratio.scss +26 -0
  119. data/_sass/bootstrap/scss/helpers/_stacks.scss +15 -0
  120. data/_sass/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  121. data/_sass/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  122. data/_sass/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  123. data/_sass/bootstrap/scss/helpers/_vr.scss +8 -0
  124. data/_sass/bootstrap/scss/mixins/_alert.scss +18 -0
  125. data/_sass/bootstrap/scss/mixins/_backdrop.scss +14 -0
  126. data/_sass/bootstrap/scss/mixins/_banner.scss +7 -0
  127. data/_sass/bootstrap/scss/mixins/_border-radius.scss +78 -0
  128. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  129. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  130. data/_sass/bootstrap/scss/mixins/_buttons.scss +70 -0
  131. data/_sass/bootstrap/scss/mixins/_caret.scss +69 -0
  132. data/_sass/bootstrap/scss/mixins/_clearfix.scss +9 -0
  133. data/_sass/bootstrap/scss/mixins/_color-mode.scss +21 -0
  134. data/_sass/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  135. data/_sass/bootstrap/scss/mixins/_container.scss +11 -0
  136. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  137. data/_sass/bootstrap/scss/mixins/_forms.scss +163 -0
  138. data/_sass/bootstrap/scss/mixins/_gradients.scss +47 -0
  139. data/_sass/bootstrap/scss/mixins/_grid.scss +151 -0
  140. data/_sass/bootstrap/scss/mixins/_image.scss +16 -0
  141. data/_sass/bootstrap/scss/mixins/_list-group.scss +26 -0
  142. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  143. data/_sass/bootstrap/scss/mixins/_pagination.scss +10 -0
  144. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  145. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  146. data/_sass/bootstrap/scss/mixins/_table-variants.scss +24 -0
  147. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  148. data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
  149. data/_sass/bootstrap/scss/mixins/_utilities.scss +97 -0
  150. data/_sass/bootstrap/scss/mixins/_visually-hidden.scss +33 -0
  151. data/_sass/bootstrap/scss/utilities/_api.scss +47 -0
  152. data/_sass/fonts/_webfonts.scss +15 -0
  153. data/_sass/helpers/_index.scss +143 -0
  154. data/_sass/layout/_animations.scss +63 -0
  155. data/_sass/layout/_core.scss +62 -0
  156. data/_sass/layout/_dark.scss +77 -0
  157. data/_sass/layout/_footer.scss +12 -0
  158. data/_sass/layout/_navbar.scss +392 -0
  159. data/_sass/layout/_page.scss +169 -0
  160. data/_sass/layout/_root.scss +64 -0
  161. data/_sass/marketing/_browser.scss +67 -0
  162. data/_sass/marketing/_core.scss +8 -0
  163. data/_sass/marketing/_filters.scss +0 -0
  164. data/_sass/marketing/_hero.scss +69 -0
  165. data/_sass/marketing/_pricing.scss +111 -0
  166. data/_sass/marketing/_sections.scss +124 -0
  167. data/_sass/marketing/_shape.scss +31 -0
  168. data/_sass/mixins/_functions.scss +96 -0
  169. data/_sass/mixins/_mixins.scss +68 -0
  170. data/_sass/tabler-flags.scss +2 -0
  171. data/_sass/tabler-marketing.scss +13 -0
  172. data/_sass/tabler-payments.scss +2 -0
  173. data/_sass/tabler-props.scss +1 -0
  174. data/_sass/tabler-socials.scss +2 -0
  175. data/_sass/tabler-themes.scss +121 -0
  176. data/_sass/tabler-vendors.scss +16 -0
  177. data/_sass/tabler.scss +2 -0
  178. data/_sass/ui/_accordion.scss +177 -0
  179. data/_sass/ui/_alerts.scss +99 -0
  180. data/_sass/ui/_avatars.scss +145 -0
  181. data/_sass/ui/_badges.scss +113 -0
  182. data/_sass/ui/_breadcrumbs.scss +50 -0
  183. data/_sass/ui/_button-group.scss +16 -0
  184. data/_sass/ui/_buttons.scss +261 -0
  185. data/_sass/ui/_calendars.scss +104 -0
  186. data/_sass/ui/_cards.scss +594 -0
  187. data/_sass/ui/_carousel.scss +68 -0
  188. data/_sass/ui/_charts.scss +61 -0
  189. data/_sass/ui/_chat.scss +38 -0
  190. data/_sass/ui/_chips.scss +0 -0
  191. data/_sass/ui/_close.scss +60 -0
  192. data/_sass/ui/_datagrid.scss +17 -0
  193. data/_sass/ui/_dropdowns.scss +120 -0
  194. data/_sass/ui/_empty.scss +60 -0
  195. data/_sass/ui/_flags.scss +31 -0
  196. data/_sass/ui/_forms.scss +241 -0
  197. data/_sass/ui/_grid.scss +115 -0
  198. data/_sass/ui/_icons.scss +72 -0
  199. data/_sass/ui/_images.scss +19 -0
  200. data/_sass/ui/_legend.scss +12 -0
  201. data/_sass/ui/_lists.scss +124 -0
  202. data/_sass/ui/_loaders.scss +72 -0
  203. data/_sass/ui/_login.scss +3 -0
  204. data/_sass/ui/_markdown.scss +43 -0
  205. data/_sass/ui/_modals.scss +67 -0
  206. data/_sass/ui/_nav.scss +96 -0
  207. data/_sass/ui/_offcanvas.scss +17 -0
  208. data/_sass/ui/_pagination.scss +58 -0
  209. data/_sass/ui/_payments.scss +28 -0
  210. data/_sass/ui/_placeholder.scss +9 -0
  211. data/_sass/ui/_popovers.scss +2 -0
  212. data/_sass/ui/_progress.scss +107 -0
  213. data/_sass/ui/_ribbons.scss +157 -0
  214. data/_sass/ui/_segmented.scss +101 -0
  215. data/_sass/ui/_signature.scss +15 -0
  216. data/_sass/ui/_social.scss +52 -0
  217. data/_sass/ui/_stars.scss +13 -0
  218. data/_sass/ui/_status.scss +163 -0
  219. data/_sass/ui/_steps.scss +156 -0
  220. data/_sass/ui/_switch-icon.scss +211 -0
  221. data/_sass/ui/_tables.scss +177 -0
  222. data/_sass/ui/_tags.scss +57 -0
  223. data/_sass/ui/_timeline.scss +61 -0
  224. data/_sass/ui/_toasts.scss +18 -0
  225. data/_sass/ui/_toolbar.scss +10 -0
  226. data/_sass/ui/_tracking.scss +29 -0
  227. data/_sass/ui/_type.scss +268 -0
  228. data/_sass/ui/forms/_form-check.scss +91 -0
  229. data/_sass/ui/forms/_form-colorinput.scss +54 -0
  230. data/_sass/ui/forms/_form-custom.scss +28 -0
  231. data/_sass/ui/forms/_form-icon.scss +35 -0
  232. data/_sass/ui/forms/_form-imagecheck.scss +105 -0
  233. data/_sass/ui/forms/_form-selectgroup.scss +153 -0
  234. data/_sass/ui/forms/_validation.scss +13 -0
  235. data/_sass/ui/typo/_hr.scss +77 -0
  236. data/_sass/utils/_background.scss +15 -0
  237. data/_sass/utils/_colors.scss +100 -0
  238. data/_sass/utils/_opacity.scss +7 -0
  239. data/_sass/utils/_scroll.scss +47 -0
  240. data/_sass/utils/_shadow.scss +9 -0
  241. data/_sass/utils/_sizing.scss +6 -0
  242. data/_sass/utils/_text.scss +15 -0
  243. data/_sass/vendors/_apexcharts.scss +48 -0
  244. data/_sass/vendors/_coloris.scss +72 -0
  245. data/_sass/vendors/_dropzone.scss +27 -0
  246. data/_sass/vendors/_fslightbox.scss +13 -0
  247. data/_sass/vendors/_jsvectormap.scss +47 -0
  248. data/_sass/vendors/_litepicker.scss +69 -0
  249. data/_sass/vendors/_nouislider.scss +49 -0
  250. data/_sass/vendors/_plyr.scss +3 -0
  251. data/_sass/vendors/_stars-rating.scss +22 -0
  252. data/_sass/vendors/_tinymce.scss +34 -0
  253. data/_sass/vendors/_tom-select.scss +81 -0
  254. data/_sass/vendors/_turbo.scss +3 -0
  255. data/_sass/vendors/_typed.scss +4 -0
  256. data/_sass/vendors/_wysiwyg.scss +34 -0
  257. data/assets/css/main.scss +10 -0
  258. data/assets/js/custom.js +175 -0
  259. data/assets/js/custom.min.js +1 -0
  260. data/assets/js/theme.js +12 -194
  261. data/assets/js/theme.min.js +12 -0
  262. data/insights4you-jekyll-theme.gemspec +93 -0
  263. metadata +386 -27
  264. data/_data/notifications.yml +0 -10
  265. data/_includes/footer.html +0 -48
  266. data/_includes/header-logo.html +0 -91
  267. data/_includes/header-navbar.html +0 -59
  268. data/_includes/header-svg.html +0 -275
  269. data/_layouts/home.html +0 -19
  270. data/_layouts/post.html +0 -19
  271. data/assets/css/theme.min.css +0 -120
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8b7bba90c588be341fb084f58ad0e8b763747117cfc2d3feeec4d07b1faa0619
4
- data.tar.gz: ea650f38c87131586c54a5735a23a9343b723fe309addaafbb5bedcb315f18a4
3
+ metadata.gz: 7e7de0952caad7e7ba6bdb9650aaa40e8a343c177967a0cdbf42801a46f1d738
4
+ data.tar.gz: 727f114144cd5246336b73239b9cc285d8240cd7bbf68b6ec42479185040096f
5
5
  SHA512:
6
- metadata.gz: 10ebb07acf9603e3d24ba6bf258d397227c21ca7ca3189bbe1940c1b201da86aa6054e852ad72f3797a091d0ca3e4a93dbfb3a035b21ba606d36eeadaae5bb32
7
- data.tar.gz: 87ebf9d496c038338f6ad40c9fcad7f50f0e07ee8bba7925da4c7a154a973485bb683cd7dc855414e46f1071414868dcda4ebb9b6345f4a177203046c748067c
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,33 +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
7
  ![Theme Preview](assets/images/preview-dark.png)
10
8
 
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
- [![github license](https://img.shields.io/github/license/marciopaiva/insights4you-jekyll-theme?color=goldenrod)][license]&nbsp;
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]
15
+
17
16
  </div>
18
17
 
19
- ## 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
+ ```
20
60
 
21
- - 🌙 **Dark and Light Themes**: Switch between dark and light modes for a personalized experience.
22
- - 📱 **Responsive Design**: Fully optimized for mobile, tablet, and desktop devices.
23
- - 🔧 **Customizable Layouts**: Easily modify layouts to suit your needs.
24
- - 🚀 **SEO Optimized**: Built-in support for Jekyll SEO tags to improve search engine visibility.
25
- - 📦 **Gem-Based Installation**: Simple installation via RubyGems.
26
- - 📝 **Markdown Support**: Write content using Markdown for simplicity and flexibility.
27
- - 🎨 **Modern Design**: Inspired by the Tabler Admin Dashboard for a sleek and professional look.
28
- - 📊 **Analytics Ready**: Add analytics scripts easily for tracking user interactions.
61
+ 5. **Install dependencies:**
62
+ ```bash
63
+ bundle install
64
+ ```
29
65
 
30
- ## Example Site
66
+ 6. **Start your site:**
67
+ ```bash
68
+ bundle exec jekyll serve
69
+ ```
70
+
71
+ ## 🎯 Demo Site
31
72
 
32
73
  To see the theme in action, check out the included example site:
33
74
 
@@ -35,19 +76,61 @@ To see the theme in action, check out the included example site:
35
76
  # Clone the repository
36
77
  git clone https://github.com/marciopaiva/insights4you-jekyll-theme.git
37
78
 
38
- # Navigate to example directory
39
- cd insights4you-jekyll-theme/example-site
40
-
41
- # Install dependencies
42
- bundle install
79
+ # Navigate to theme directory
80
+ cd insights4you-jekyll-theme
43
81
 
44
- # Serve the site locally
45
- bundle exec jekyll serve
82
+ # build and test
83
+ make dev
46
84
  ```
47
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
48
135
  [gem]: https://rubygems.org/gems/insights4you-jekyll-theme
49
- [codacy]: https://app.codacy.com/gh/marciopaiva/insights4you-jekyll-theme/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade
50
136
  [license]: https://github.com/marciopaiva/insights4you-jekyll-theme/blob/master/LICENSE
51
- [build]: https://github.com/marciopaiva/insights4you-jekyll-theme/actions/workflows/gem-build.yml
52
- [repo]: https://github.com/marciopaiva/insights4you-jekyll-theme
53
- [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
+ }
@@ -1,6 +1,4 @@
1
1
  # Get Icons from : https://tabler.io/icons
2
- # Get Colors from : https://brandcolors.net/
3
-
4
2
  behance:
5
3
  url : https://www.behance.net/
6
4
  icon : brand-behance
@@ -0,0 +1,48 @@
1
+ <!-- BEGIN FOOTER -->
2
+ <footer class="footer footer-transparent d-print-none">
3
+ <div class="container-xl">
4
+ <div class="row text-center align-items-center flex-row-reverse">
5
+ <div class="col-lg-auto ms-lg-auto">
6
+ <ul class="list-inline list-inline-dots mb-0">
7
+ <li class="list-inline-item">
8
+ <a href="https://github.com/marciopaiva/insights4you-jekyll-theme/wiki" target="_blank" class="link-primary" rel="noopener">
9
+ {% include ui/icon.html icon="file-type-doc" %}
10
+ Documentation
11
+ </a>
12
+ </li>
13
+ <li class="list-inline-item">
14
+ <a href="https://github.com/marciopaiva/insights4you-jekyll-theme?tab=MIT-1-ov-file" class="link-primary">
15
+ {% include ui/icon.html icon="license" %}
16
+ License
17
+ </a>
18
+ </li>
19
+ <li class="list-inline-item">
20
+ <a href="https://github.com/marciopaiva/insights4you-jekyll-theme" target="_blank" class="link-primary" rel="noopener">
21
+ {% include ui/icon.html icon="brand-github" %}
22
+ Source code
23
+ </a>
24
+ </li>
25
+ <li class="list-inline-item">
26
+ <a href="https://github.com/sponsors/marciopaiva" target="_blank" class="link-primary" rel="noopener">
27
+ {% include ui/icon.html icon="heart" %}
28
+ Sponsor
29
+ </a>
30
+ </li>
31
+ </ul>
32
+ </div>
33
+ <div class="col-12 col-lg-auto mt-3 mt-lg-0">
34
+ <ul class="list-inline list-inline-dots mb-0">
35
+ <li class="list-inline-item">
36
+ <span class="text-primary">
37
+ {% include ui/icon.html icon="code" %}
38
+ with
39
+ {% include ui/icon.html icon="hearts" %}
40
+ by Marcio Paiva Barbosa
41
+ </span>
42
+ </li>
43
+ </ul>
44
+ </div>
45
+ </div>
46
+ </div>
47
+ </footer>
48
+ <!-- END FOOTER -->
@@ -1,21 +1,23 @@
1
1
  <head>
2
- <!-- Dynamic Variables -->
3
- {% assign title = page.title | default: site.title | escape %}
4
- {% assign description = page.description | default: site.description | strip_html | strip_newlines | truncate: 160 %}
5
- {% assign image = page.image | default: site.author.image | default: "/assets/images/default-image.jpg" %}
6
-
7
- {% if page.name and page.collection == 'projects' %}
8
- {% assign title = page.name | escape %}
9
- {% endif %}
10
-
11
2
  <!-- Basic Meta Tags -->
12
3
  <meta charset="utf-8">
13
4
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
14
- <meta name="viewport" content="width=device-width, initial-scale=1">
15
- <meta name="theme-color" content="#ffffff">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
16
6
  <meta name="robots" content="index, follow">
7
+ <meta name="description" content="{{ description | default: site.description | escape }}"/>
8
+ <meta name="author" content="{{ site.author.name }}"/>
9
+ {% if site.keywords %}<meta name="keywords" content="{{ site.keywords }}"/>{% endif %}
10
+
11
+ <!-- Theme Colors and Mobile Settings -->
12
+ <meta name="theme-color" content="{{ site.themeColor }}"/>
17
13
  <meta name="color-scheme" content="light dark">
18
-
14
+ <meta name="msapplication-TileColor" content="{{ site.themeColor }}"/>
15
+ <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
16
+ <meta name="apple-mobile-web-app-capable" content="yes"/>
17
+ <meta name="mobile-web-app-capable" content="yes"/>
18
+ <meta name="HandheldFriendly" content="True"/>
19
+ <meta name="MobileOptimized" content="320"/>
20
+
19
21
  <!-- Open Graph Meta Tags -->
20
22
  <meta property="og:type" content="website">
21
23
  <meta property="og:title" content="{{ title }}">
@@ -38,22 +40,40 @@
38
40
  <link rel="icon" type="image/png" sizes="32x32" href="{{ '/assets/images/favicon-32x32.png' | relative_url }}">
39
41
  <link rel="icon" type="image/png" sizes="16x16" href="{{ '/assets/images/favicon-16x16.png' | relative_url }}">
40
42
  <link rel="manifest" href="{{ '/assets/images/site.webmanifest' | relative_url }}">
41
-
42
- <!-- Preload External Resources -->
43
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.1.1/dist/css/tabler.min.css" />
44
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.1.1/dist/css/tabler-flags.min.css" />
45
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.1.1/dist/css/tabler-payments.min.css" />
46
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@1.1.1/dist/css/tabler-vendors.min.css" />
43
+
47
44
  {% if site.useIconfont %}
48
45
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.31.0/dist/tabler-icons.min.css" />
49
46
  {% endif %}
47
+
48
+ <!-- Preconnect to External Resources -->
49
+ <link rel="preconnect" href="https://rsms.me">
50
+ <link rel="dns-prefetch" href="https://rsms.me">
51
+
52
+ <!-- Main Stylesheet with cache busting -->
53
+ {% if env == "production" %}
54
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}?v={{ cache_bust }}"
55
+ {% if site.data.sri.css %}integrity="{{ site.data.sri.css }}"{% endif %} crossorigin="anonymous">
56
+ {% else %}
57
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}?v=dev">
58
+ {% endif %}
59
+
60
+ <!-- Page-specific CSS -->
61
+ {% if page.custom_css %}
62
+ {% for css_file in page.custom_css %}
63
+ <link rel="stylesheet" href="{{ '/assets/css/' | append: css_file | append: '.css' | relative_url }}?v={{ cache_bust }}">
64
+ {% endfor %}
65
+ {% endif %}
66
+
67
+ <!-- Custom Font -->
68
+ <style>
69
+ @import url('https://rsms.me/inter/inter.css');
70
+ </style>
50
71
 
51
- <!-- Stylesheets -->
52
- <link rel="stylesheet" href="{{ '/assets/css/theme.min.css' | relative_url }}">
53
72
 
54
73
  <!-- Title and Description -->
55
74
  <title>{{ title }} | {{ site.title }}</title>
56
75
  <meta name="description" content="{{ description }}">
57
76
 
77
+ <!-- Jekyll seo tags -->
58
78
  {% seo %}
59
79
  </head>