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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +110 -0
- data/README.md +114 -32
- data/_data/i4y-colors.json +218 -0
- data/_data/i4y-errors.json +32 -0
- data/_data/i4y-icons.json +1 -0
- data/_data/i4y-illustrations.json +20 -0
- data/_data/i4y-social-media.yml +24 -0
- data/_includes/card/profile.html +42 -0
- data/_includes/layout/footer.html +48 -0
- data/_includes/layout/head.html +79 -0
- data/_includes/layout/navbar-logo.html +137 -0
- data/_includes/layout/navbar.html +82 -0
- data/_includes/ui/button.html +13 -14
- data/_includes/ui/icon.html +24 -26
- data/_includes/ui/spinner.html +2 -0
- data/_includes/utils/banner.html +7 -0
- data/_includes/utils/settings.html +144 -0
- data/_layouts/base.html +63 -0
- data/_layouts/default.html +36 -11
- data/_sass/_bootstrap-components.scss +31 -0
- data/_sass/_bootstrap-config.scss +7 -0
- data/_sass/_bootstrap-override.scss +78 -0
- data/_sass/_config.scss +9 -0
- data/_sass/_core.scss +78 -0
- data/_sass/_debug.scss +49 -0
- data/_sass/_mixins.scss +2 -0
- data/_sass/_props.scss +91 -0
- data/_sass/_utilities-marketing.scss +209 -0
- data/_sass/_utilities.scss +135 -0
- data/_sass/_variables-dark.scss +19 -0
- data/_sass/_variables-marketing.scss +0 -0
- data/_sass/_variables.scss +1001 -0
- data/_sass/bootstrap/LICENSE +21 -0
- data/_sass/bootstrap/README.md +246 -0
- data/_sass/bootstrap/js/index.esm.js +19 -0
- data/_sass/bootstrap/js/index.umd.js +34 -0
- data/_sass/bootstrap/js/src/alert.js +87 -0
- data/_sass/bootstrap/js/src/base-component.js +85 -0
- data/_sass/bootstrap/js/src/button.js +72 -0
- data/_sass/bootstrap/js/src/carousel.js +474 -0
- data/_sass/bootstrap/js/src/collapse.js +297 -0
- data/_sass/bootstrap/js/src/dom/data.js +55 -0
- data/_sass/bootstrap/js/src/dom/event-handler.js +317 -0
- data/_sass/bootstrap/js/src/dom/manipulator.js +71 -0
- data/_sass/bootstrap/js/src/dom/selector-engine.js +126 -0
- data/_sass/bootstrap/js/src/dropdown.js +455 -0
- data/_sass/bootstrap/js/src/modal.js +378 -0
- data/_sass/bootstrap/js/src/offcanvas.js +282 -0
- data/_sass/bootstrap/js/src/popover.js +97 -0
- data/_sass/bootstrap/js/src/scrollspy.js +296 -0
- data/_sass/bootstrap/js/src/tab.js +315 -0
- data/_sass/bootstrap/js/src/toast.js +225 -0
- data/_sass/bootstrap/js/src/tooltip.js +633 -0
- data/_sass/bootstrap/js/src/util/backdrop.js +151 -0
- data/_sass/bootstrap/js/src/util/component-functions.js +35 -0
- data/_sass/bootstrap/js/src/util/config.js +65 -0
- data/_sass/bootstrap/js/src/util/focustrap.js +115 -0
- data/_sass/bootstrap/js/src/util/index.js +306 -0
- data/_sass/bootstrap/js/src/util/sanitizer.js +117 -0
- data/_sass/bootstrap/js/src/util/scrollbar.js +114 -0
- data/_sass/bootstrap/js/src/util/swipe.js +146 -0
- data/_sass/bootstrap/js/src/util/template-factory.js +160 -0
- data/_sass/bootstrap/package.json +184 -0
- data/_sass/bootstrap/scss/_accordion.scss +158 -0
- data/_sass/bootstrap/scss/_alert.scss +68 -0
- data/_sass/bootstrap/scss/_badge.scss +38 -0
- data/_sass/bootstrap/scss/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/scss/_button-group.scss +142 -0
- data/_sass/bootstrap/scss/_buttons.scss +216 -0
- data/_sass/bootstrap/scss/_card.scss +239 -0
- data/_sass/bootstrap/scss/_carousel.scss +236 -0
- data/_sass/bootstrap/scss/_close.scss +63 -0
- data/_sass/bootstrap/scss/_containers.scss +41 -0
- data/_sass/bootstrap/scss/_dropdown.scss +250 -0
- data/_sass/bootstrap/scss/_forms.scss +9 -0
- data/_sass/bootstrap/scss/_functions.scss +302 -0
- data/_sass/bootstrap/scss/_grid.scss +39 -0
- data/_sass/bootstrap/scss/_helpers.scss +12 -0
- data/_sass/bootstrap/scss/_images.scss +42 -0
- data/_sass/bootstrap/scss/_list-group.scss +197 -0
- data/_sass/bootstrap/scss/_maps.scss +174 -0
- data/_sass/bootstrap/scss/_mixins.scss +42 -0
- data/_sass/bootstrap/scss/_modal.scss +236 -0
- data/_sass/bootstrap/scss/_nav.scss +197 -0
- data/_sass/bootstrap/scss/_navbar.scss +289 -0
- data/_sass/bootstrap/scss/_offcanvas.scss +143 -0
- data/_sass/bootstrap/scss/_pagination.scss +109 -0
- data/_sass/bootstrap/scss/_placeholders.scss +51 -0
- data/_sass/bootstrap/scss/_popover.scss +196 -0
- data/_sass/bootstrap/scss/_progress.scss +68 -0
- data/_sass/bootstrap/scss/_reboot.scss +611 -0
- data/_sass/bootstrap/scss/_root.scss +187 -0
- data/_sass/bootstrap/scss/_spinners.scss +85 -0
- data/_sass/bootstrap/scss/_tables.scss +171 -0
- data/_sass/bootstrap/scss/_toasts.scss +73 -0
- data/_sass/bootstrap/scss/_tooltip.scss +119 -0
- data/_sass/bootstrap/scss/_transitions.scss +27 -0
- data/_sass/bootstrap/scss/_type.scss +106 -0
- data/_sass/bootstrap/scss/_utilities.scss +806 -0
- data/_sass/bootstrap/scss/_variables-dark.scss +87 -0
- data/_sass/bootstrap/scss/_variables.scss +1751 -0
- data/_sass/bootstrap/scss/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/scss/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/scss/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/scss/bootstrap.scss +52 -0
- data/_sass/bootstrap/scss/forms/_floating-labels.scss +95 -0
- data/_sass/bootstrap/scss/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/scss/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/scss/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/scss/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/scss/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/scss/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/scss/forms/_labels.scss +36 -0
- data/_sass/bootstrap/scss/forms/_validation.scss +12 -0
- data/_sass/bootstrap/scss/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/scss/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/scss/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/scss/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/scss/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/scss/helpers/_position.scss +36 -0
- data/_sass/bootstrap/scss/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/scss/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/scss/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/scss/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/scss/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/scss/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/scss/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/scss/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/scss/mixins/_box-shadow.scss +18 -0
- data/_sass/bootstrap/scss/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/scss/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/scss/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/scss/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/scss/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/scss/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_container.scss +11 -0
- data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/scss/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/scss/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/scss/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/scss/mixins/_image.scss +16 -0
- data/_sass/bootstrap/scss/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/scss/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/scss/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/scss/mixins/_visually-hidden.scss +33 -0
- data/_sass/bootstrap/scss/utilities/_api.scss +47 -0
- data/_sass/fonts/_webfonts.scss +15 -0
- data/_sass/helpers/_index.scss +143 -0
- data/_sass/layout/_animations.scss +63 -0
- data/_sass/layout/_core.scss +62 -0
- data/_sass/layout/_dark.scss +77 -0
- data/_sass/layout/_footer.scss +12 -0
- data/_sass/layout/_navbar.scss +392 -0
- data/_sass/layout/_page.scss +169 -0
- data/_sass/layout/_root.scss +64 -0
- data/_sass/marketing/_browser.scss +67 -0
- data/_sass/marketing/_core.scss +8 -0
- data/_sass/marketing/_filters.scss +0 -0
- data/_sass/marketing/_hero.scss +69 -0
- data/_sass/marketing/_pricing.scss +111 -0
- data/_sass/marketing/_sections.scss +124 -0
- data/_sass/marketing/_shape.scss +31 -0
- data/_sass/mixins/_functions.scss +96 -0
- data/_sass/mixins/_mixins.scss +68 -0
- data/_sass/tabler-flags.scss +2 -0
- data/_sass/tabler-marketing.scss +13 -0
- data/_sass/tabler-payments.scss +2 -0
- data/_sass/tabler-props.scss +1 -0
- data/_sass/tabler-socials.scss +2 -0
- data/_sass/tabler-themes.scss +121 -0
- data/_sass/tabler-vendors.scss +16 -0
- data/_sass/tabler.scss +2 -0
- data/_sass/ui/_accordion.scss +177 -0
- data/_sass/ui/_alerts.scss +99 -0
- data/_sass/ui/_avatars.scss +145 -0
- data/_sass/ui/_badges.scss +113 -0
- data/_sass/ui/_breadcrumbs.scss +50 -0
- data/_sass/ui/_button-group.scss +16 -0
- data/_sass/ui/_buttons.scss +261 -0
- data/_sass/ui/_calendars.scss +104 -0
- data/_sass/ui/_cards.scss +594 -0
- data/_sass/ui/_carousel.scss +68 -0
- data/_sass/ui/_charts.scss +61 -0
- data/_sass/ui/_chat.scss +38 -0
- data/_sass/ui/_chips.scss +0 -0
- data/_sass/ui/_close.scss +60 -0
- data/_sass/ui/_datagrid.scss +17 -0
- data/_sass/ui/_dropdowns.scss +120 -0
- data/_sass/ui/_empty.scss +60 -0
- data/_sass/ui/_flags.scss +31 -0
- data/_sass/ui/_forms.scss +241 -0
- data/_sass/ui/_grid.scss +115 -0
- data/_sass/ui/_icons.scss +72 -0
- data/_sass/ui/_images.scss +19 -0
- data/_sass/ui/_legend.scss +12 -0
- data/_sass/ui/_lists.scss +124 -0
- data/_sass/ui/_loaders.scss +72 -0
- data/_sass/ui/_login.scss +3 -0
- data/_sass/ui/_markdown.scss +43 -0
- data/_sass/ui/_modals.scss +67 -0
- data/_sass/ui/_nav.scss +96 -0
- data/_sass/ui/_offcanvas.scss +17 -0
- data/_sass/ui/_pagination.scss +58 -0
- data/_sass/ui/_payments.scss +28 -0
- data/_sass/ui/_placeholder.scss +9 -0
- data/_sass/ui/_popovers.scss +2 -0
- data/_sass/ui/_progress.scss +107 -0
- data/_sass/ui/_ribbons.scss +157 -0
- data/_sass/ui/_segmented.scss +101 -0
- data/_sass/ui/_signature.scss +15 -0
- data/_sass/ui/_social.scss +52 -0
- data/_sass/ui/_stars.scss +13 -0
- data/_sass/ui/_status.scss +163 -0
- data/_sass/ui/_steps.scss +156 -0
- data/_sass/ui/_switch-icon.scss +211 -0
- data/_sass/ui/_tables.scss +177 -0
- data/_sass/ui/_tags.scss +57 -0
- data/_sass/ui/_timeline.scss +61 -0
- data/_sass/ui/_toasts.scss +18 -0
- data/_sass/ui/_toolbar.scss +10 -0
- data/_sass/ui/_tracking.scss +29 -0
- data/_sass/ui/_type.scss +268 -0
- data/_sass/ui/forms/_form-check.scss +91 -0
- data/_sass/ui/forms/_form-colorinput.scss +54 -0
- data/_sass/ui/forms/_form-custom.scss +28 -0
- data/_sass/ui/forms/_form-icon.scss +35 -0
- data/_sass/ui/forms/_form-imagecheck.scss +105 -0
- data/_sass/ui/forms/_form-selectgroup.scss +153 -0
- data/_sass/ui/forms/_validation.scss +13 -0
- data/_sass/ui/typo/_hr.scss +77 -0
- data/_sass/utils/_background.scss +15 -0
- data/_sass/utils/_colors.scss +100 -0
- data/_sass/utils/_opacity.scss +7 -0
- data/_sass/utils/_scroll.scss +47 -0
- data/_sass/utils/_shadow.scss +9 -0
- data/_sass/utils/_sizing.scss +6 -0
- data/_sass/utils/_text.scss +15 -0
- data/_sass/vendors/_apexcharts.scss +48 -0
- data/_sass/vendors/_coloris.scss +72 -0
- data/_sass/vendors/_dropzone.scss +27 -0
- data/_sass/vendors/_fslightbox.scss +13 -0
- data/_sass/vendors/_jsvectormap.scss +47 -0
- data/_sass/vendors/_litepicker.scss +69 -0
- data/_sass/vendors/_nouislider.scss +49 -0
- data/_sass/vendors/_plyr.scss +3 -0
- data/_sass/vendors/_stars-rating.scss +22 -0
- data/_sass/vendors/_tinymce.scss +34 -0
- data/_sass/vendors/_tom-select.scss +81 -0
- data/_sass/vendors/_turbo.scss +3 -0
- data/_sass/vendors/_typed.scss +4 -0
- data/_sass/vendors/_wysiwyg.scss +34 -0
- data/assets/css/main.scss +10 -0
- data/assets/images/i4y-logo.jpg +0 -0
- data/assets/images/preview-dark.png +0 -0
- data/assets/js/custom.js +175 -0
- data/assets/js/custom.min.js +1 -0
- data/assets/js/theme.js +11 -30
- data/assets/js/theme.min.js +12 -0
- data/insights4you-jekyll-theme.gemspec +93 -0
- metadata +393 -25
- data/_includes/footer.html +0 -45
- data/_includes/head.html +0 -63
- data/_includes/header-logo.html +0 -179
- data/_includes/header-navbar.html +0 -69
- data/_includes/header-svg.html +0 -39
- data/_layouts/home.html +0 -19
- data/assets/css/theme.min.css +0 -90
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e7de0952caad7e7ba6bdb9650aaa40e8a343c177967a0cdbf42801a46f1d738
|
4
|
+
data.tar.gz: 727f114144cd5246336b73239b9cc285d8240cd7bbf68b6ec42479185040096f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-

|
8
|
+
|
9
|
+
[][repo]
|
10
|
+
[][build]
|
11
|
+
[][codacy]
|
12
|
+
[][gem]
|
13
|
+
[][gem]
|
14
|
+
[][license]
|
10
15
|
|
11
|
-
[][repo]
|
12
|
-
[][build]
|
13
|
-
[][codacy]
|
14
|
-
[][gem]
|
15
|
-
[][gem]
|
16
|
-
[][gem]
|
17
|
-
[][license]
|
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
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
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
|
-
|
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
|
40
|
-
cd insights4you-jekyll-theme
|
41
|
-
|
42
|
-
# Install dependencies
|
43
|
-
bundle install
|
79
|
+
# Navigate to theme directory
|
80
|
+
cd insights4you-jekyll-theme
|
44
81
|
|
45
|
-
#
|
46
|
-
|
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
|
+
}
|