create-berna-stencil 2.6.3 → 2.6.5
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.
- package/index.js +3 -0
- package/package.json +4 -27
- package/.eleventy.js +0 -94
- package/.eleventyignore +0 -4
- package/LICENSE +0 -170
- package/NOTICE +0 -5
- package/README.md +0 -53
- package/_tools/assistant.js +0 -150
- package/_tools/buildJs.js +0 -28
- package/_tools/cleanOutput.js +0 -20
- package/_tools/modules/constants.js +0 -23
- package/_tools/modules/pageComponents.js +0 -77
- package/_tools/modules/updateData.js +0 -84
- package/_tools/modules/updateOutputPath.js +0 -112
- package/_tools/modules/updatePage.js +0 -162
- package/_tools/modules/utils.js +0 -27
- package/_tools/modules/validation.js +0 -20
- package/_tools/res/templates/template.js +0 -5
- package/_tools/res/templates/template.njk +0 -9
- package/_tools/res/templates/template.scss +0 -23
- package/_tools/res/templates/template.ts +0 -5
- package/bin/create.js +0 -429
- package/docs/Assistant CLI.md +0 -61
- package/docs/Backend.md +0 -148
- package/docs/Components.md +0 -96
- package/docs/Creating pages.md +0 -65
- package/docs/Deploy.md +0 -55
- package/docs/Head and SEO.md +0 -94
- package/docs/Javascript.md +0 -53
- package/docs/Styling with SCSS.md +0 -140
- package/nginx.conf +0 -69
- package/src/backend/.htaccess +0 -7
- package/src/backend/_core/composer.json +0 -5
- package/src/backend/_core/composer.lock +0 -492
- package/src/backend/_core/index.php +0 -148
- package/src/backend/_core/init.php +0 -34
- package/src/backend/_core/modules/RateLimiter.php +0 -31
- package/src/backend/_core/modules/Response.php +0 -49
- package/src/backend/api/protected/example-protected.php +0 -17
- package/src/backend/api/public/example-public.php +0 -17
- package/src/backend/database/Database.php +0 -24
- package/src/backend/database/migrations/create_example_db.sql +0 -1
- package/src/backend/web.config +0 -17
- package/src/frontend/.htaccess +0 -16
- package/src/frontend/404.njk +0 -17
- package/src/frontend/assets/brand/favicon.svg +0 -37
- package/src/frontend/assets/brand/logo.svg +0 -37
- package/src/frontend/components/global/footer.njk +0 -27
- package/src/frontend/components/global/header.njk +0 -11
- package/src/frontend/components/welcome.njk +0 -251
- package/src/frontend/data/site.json +0 -44
- package/src/frontend/index.njk +0 -9
- package/src/frontend/js/modules/exampleModule.js +0 -3
- package/src/frontend/js/pages/404.js +0 -7
- package/src/frontend/js/pages/homepage.js +0 -7
- package/src/frontend/layouts/base.njk +0 -137
- package/src/frontend/layouts/pageComponents.njk +0 -14
- package/src/frontend/llms.njk +0 -18
- package/src/frontend/robots.njk +0 -8
- package/src/frontend/scss/modules/_animations.scss +0 -25
- package/src/frontend/scss/modules/_buttons.scss +0 -24
- package/src/frontend/scss/modules/_footer.scss +0 -32
- package/src/frontend/scss/modules/_global.scss +0 -46
- package/src/frontend/scss/modules/_header.scss +0 -33
- package/src/frontend/scss/modules/_mobile.scss +0 -30
- package/src/frontend/scss/modules/_notification.scss +0 -56
- package/src/frontend/scss/modules/_root.scss +0 -35
- package/src/frontend/scss/modules/_typography.scss +0 -15
- package/src/frontend/scss/modules/frameworks/_bootstrap.scss +0 -110
- package/src/frontend/scss/modules/frameworks/_bulma.scss +0 -109
- package/src/frontend/scss/modules/frameworks/_foundation.scss +0 -139
- package/src/frontend/scss/modules/frameworks/_uikit.scss +0 -110
- package/src/frontend/scss/pages/404.scss +0 -28
- package/src/frontend/scss/pages/homepage.scss +0 -23
- package/src/frontend/sitemap.njk +0 -17
- package/src/frontend/ts/modules/exampleModule.ts +0 -3
- package/src/frontend/ts/pages/404.ts +0 -7
- package/src/frontend/ts/pages/homepage.ts +0 -7
- package/src/frontend/web.config +0 -27
- package/tsconfig.json +0 -25
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
// ╔══════════════════════════════════════════════════════╗
|
|
2
|
-
// ║ ../../../../../node_modules/BULMA MODULES ║
|
|
3
|
-
// ║ Comment out any module you don't need to improve ║
|
|
4
|
-
// ║ performance. Core section is required by all others ║
|
|
5
|
-
// ╚══════════════════════════════════════════════════════╝
|
|
6
|
-
|
|
7
|
-
// Imports can be filtered by commenting them
|
|
8
|
-
// Example:
|
|
9
|
-
// @import "../../../../../node_modules/bulma/sass/example-../../../../../node_modules/bulma-module";
|
|
10
|
-
|
|
11
|
-
//==========================
|
|
12
|
-
// 1️⃣ CORE – Utilities and variables
|
|
13
|
-
// ⚠️ Do not comment these out — required by all other modules
|
|
14
|
-
//==========================
|
|
15
|
-
@import "../../../../../node_modules/bulma/sass/utilities/initial-variables"; // Base variables (colors, sizes, fonts)
|
|
16
|
-
@import "../../../../../node_modules/bulma/sass/utilities/functions"; // SCSS functions
|
|
17
|
-
@import "../../../../../node_modules/bulma/sass/utilities/derived-variables"; // Variables derived from initial ones
|
|
18
|
-
@import "../../../../../node_modules/bulma/sass/utilities/css-variables"; // CSS custom properties
|
|
19
|
-
@import "../../../../../node_modules/bulma/sass/utilities/controls"; // Control base styles (inputs, buttons)
|
|
20
|
-
@import "../../../../../node_modules/bulma/sass/utilities/extends"; // Shared extends
|
|
21
|
-
@import "../../../../../node_modules/bulma/sass/utilities/mixins"; // Reusable SCSS mixins
|
|
22
|
-
|
|
23
|
-
//==========================
|
|
24
|
-
// 2️⃣ BASE – Reset and base styles
|
|
25
|
-
//==========================
|
|
26
|
-
@import "../../../../../node_modules/bulma/sass/base/minireset"; // CSS reset
|
|
27
|
-
@import "../../../../../node_modules/bulma/sass/base/generic"; // Generic base styles
|
|
28
|
-
@import "../../../../../node_modules/bulma/sass/base/animations"; // Built-in animations
|
|
29
|
-
@import "../../../../../node_modules/bulma/sass/base/skeleton"; // Skeleton loading styles
|
|
30
|
-
|
|
31
|
-
//==========================
|
|
32
|
-
// 3️⃣ THEMES
|
|
33
|
-
//==========================
|
|
34
|
-
@import "../../../../../node_modules/bulma/sass/themes/setup"; // Theme setup (required)
|
|
35
|
-
@import "../../../../../node_modules/bulma/sass/themes/light"; // Light theme
|
|
36
|
-
// @import "../../../../../node_modules/bulma/sass/themes/dark";// Dark theme
|
|
37
|
-
|
|
38
|
-
//==========================
|
|
39
|
-
// 4️⃣ LAYOUT
|
|
40
|
-
//==========================
|
|
41
|
-
@import "../../../../../node_modules/bulma/sass/layout/container"; // Containers
|
|
42
|
-
@import "../../../../../node_modules/bulma/sass/layout/section"; // Sections
|
|
43
|
-
@import "../../../../../node_modules/bulma/sass/layout/footer"; // Footer
|
|
44
|
-
@import "../../../../../node_modules/bulma/sass/layout/hero"; // Hero banners
|
|
45
|
-
@import "../../../../../node_modules/bulma/sass/layout/level"; // Level (horizontal layout)
|
|
46
|
-
@import "../../../../../node_modules/bulma/sass/layout/media"; // Media object
|
|
47
|
-
|
|
48
|
-
//==========================
|
|
49
|
-
// 5️⃣ GRID
|
|
50
|
-
//==========================
|
|
51
|
-
@import "../../../../../node_modules/bulma/sass/grid/columns"; // Flexbox column grid
|
|
52
|
-
@import "../../../../../node_modules/bulma/sass/grid/grid"; // CSS grid
|
|
53
|
-
|
|
54
|
-
//==========================
|
|
55
|
-
// 6️⃣ ELEMENTS – Basic HTML elements
|
|
56
|
-
//==========================
|
|
57
|
-
@import "../../../../../node_modules/bulma/sass/elements/block"; // Block spacing
|
|
58
|
-
@import "../../../../../node_modules/bulma/sass/elements/box"; // Box container
|
|
59
|
-
@import "../../../../../node_modules/bulma/sass/elements/button"; // Buttons
|
|
60
|
-
@import "../../../../../node_modules/bulma/sass/elements/content"; // Rich text content
|
|
61
|
-
@import "../../../../../node_modules/bulma/sass/elements/delete"; // Delete/close button
|
|
62
|
-
@import "../../../../../node_modules/bulma/sass/elements/icon"; // Icons
|
|
63
|
-
@import "../../../../../node_modules/bulma/sass/elements/image"; // Images
|
|
64
|
-
@import "../../../../../node_modules/bulma/sass/elements/loader"; // Loader spinner
|
|
65
|
-
@import "../../../../../node_modules/bulma/sass/elements/notification"; // Notifications
|
|
66
|
-
@import "../../../../../node_modules/bulma/sass/elements/progress"; // Progress bars
|
|
67
|
-
@import "../../../../../node_modules/bulma/sass/elements/table"; // Tables
|
|
68
|
-
@import "../../../../../node_modules/bulma/sass/elements/tag"; // Tags/badges
|
|
69
|
-
@import "../../../../../node_modules/bulma/sass/elements/title"; // Titles and subtitles
|
|
70
|
-
|
|
71
|
-
//==========================
|
|
72
|
-
// 7️⃣ FORM
|
|
73
|
-
//==========================
|
|
74
|
-
@import "../../../../../node_modules/bulma/sass/form/shared"; // Shared form styles
|
|
75
|
-
@import "../../../../../node_modules/bulma/sass/form/tools"; // Form tools and field wrappers
|
|
76
|
-
@import "../../../../../node_modules/bulma/sass/form/input-textarea"; // Inputs and textareas
|
|
77
|
-
@import "../../../../../node_modules/bulma/sass/form/select"; // Select dropdowns
|
|
78
|
-
@import "../../../../../node_modules/bulma/sass/form/checkbox-radio"; // Checkboxes and radios
|
|
79
|
-
@import "../../../../../node_modules/bulma/sass/form/file"; // File upload
|
|
80
|
-
|
|
81
|
-
//==========================
|
|
82
|
-
// 8️⃣ COMPONENTS
|
|
83
|
-
//==========================
|
|
84
|
-
@import "../../../../../node_modules/bulma/sass/components/breadcrumb"; // Breadcrumbs
|
|
85
|
-
@import "../../../../../node_modules/bulma/sass/components/card"; // Cards
|
|
86
|
-
@import "../../../../../node_modules/bulma/sass/components/dropdown"; // Dropdowns
|
|
87
|
-
@import "../../../../../node_modules/bulma/sass/components/menu"; // Vertical menu
|
|
88
|
-
@import "../../../../../node_modules/bulma/sass/components/message"; // Message boxes
|
|
89
|
-
@import "../../../../../node_modules/bulma/sass/components/modal"; // Modals
|
|
90
|
-
@import "../../../../../node_modules/bulma/sass/components/navbar"; // Navbar
|
|
91
|
-
@import "../../../../../node_modules/bulma/sass/components/pagination"; // Pagination
|
|
92
|
-
@import "../../../../../node_modules/bulma/sass/components/panel"; // Panel
|
|
93
|
-
@import "../../../../../node_modules/bulma/sass/components/tabs"; // Tabs
|
|
94
|
-
|
|
95
|
-
//==========================
|
|
96
|
-
// 9️⃣ HELPERS
|
|
97
|
-
//==========================
|
|
98
|
-
@import "../../../../../node_modules/bulma/sass/helpers/aspect-ratio"; // Aspect ratio
|
|
99
|
-
@import "../../../../../node_modules/bulma/sass/helpers/border"; // Border utilities
|
|
100
|
-
@import "../../../../../node_modules/bulma/sass/helpers/color"; // Color utilities
|
|
101
|
-
@import "../../../../../node_modules/bulma/sass/helpers/flexbox"; // Flexbox utilities
|
|
102
|
-
@import "../../../../../node_modules/bulma/sass/helpers/float"; // Float utilities
|
|
103
|
-
@import "../../../../../node_modules/bulma/sass/helpers/gap"; // Gap utilities
|
|
104
|
-
@import "../../../../../node_modules/bulma/sass/helpers/other"; // Other utilities
|
|
105
|
-
@import "../../../../../node_modules/bulma/sass/helpers/overflow"; // Overflow utilities
|
|
106
|
-
@import "../../../../../node_modules/bulma/sass/helpers/position"; // Position utilities
|
|
107
|
-
@import "../../../../../node_modules/bulma/sass/helpers/spacing"; // Spacing utilities (m-, p-)
|
|
108
|
-
@import "../../../../../node_modules/bulma/sass/helpers/typography"; // Typography utilities
|
|
109
|
-
@import "../../../../../node_modules/bulma/sass/helpers/visibility"; // Visibility utilities
|
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
// ╔══════════════════════════════════════════════════════╗
|
|
2
|
-
// ║ ../../../../../node_modules/FOUNDATION MODULES ║
|
|
3
|
-
// ║ Comment out any module you don't need to improve ║
|
|
4
|
-
// ║ performance. Core section is required by all others ║
|
|
5
|
-
// ╚══════════════════════════════════════════════════════╝
|
|
6
|
-
|
|
7
|
-
// Imports can be filtered by commenting them
|
|
8
|
-
// Example:
|
|
9
|
-
// @import "../../../../../node_modules/foundation-sites/scss/example-../../../../../node_modules/foundation-module";
|
|
10
|
-
|
|
11
|
-
//==========================
|
|
12
|
-
// 1️⃣ CORE – Utilities and functions
|
|
13
|
-
// ⚠️ Do not comment these out — required by all other modules
|
|
14
|
-
//==========================
|
|
15
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/util"; // Utility loader
|
|
16
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/breakpoint"; // Breakpoint helpers
|
|
17
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/color"; // Color functions
|
|
18
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/direction"; // RTL/LTR direction
|
|
19
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/flex"; // Flex utilities
|
|
20
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/math"; // Math functions
|
|
21
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/mixins"; // Reusable SCSS mixins
|
|
22
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/selector"; // Selector helpers
|
|
23
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/typography"; // Typography utilities
|
|
24
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/unit"; // Unit conversion
|
|
25
|
-
@import "../../../../../node_modules/foundation-sites/scss/util/value"; // Value helpers
|
|
26
|
-
|
|
27
|
-
//==========================
|
|
28
|
-
// 2️⃣ BASE – Reset and global styles
|
|
29
|
-
//==========================
|
|
30
|
-
@import "../../../../../node_modules/foundation-sites/scss/vendor/normalize"; // CSS reset / normalize
|
|
31
|
-
@import "../../../../../node_modules/foundation-sites/scss/_global"; // Global base styles
|
|
32
|
-
|
|
33
|
-
//==========================
|
|
34
|
-
// 3️⃣ TYPOGRAPHY
|
|
35
|
-
//==========================
|
|
36
|
-
@import "../../../../../node_modules/foundation-sites/scss/typography/typography"; // Typography loader
|
|
37
|
-
@import "../../../../../node_modules/foundation-sites/scss/typography/base"; // Base typography styles
|
|
38
|
-
@import "../../../../../node_modules/foundation-sites/scss/typography/helpers"; // Typography helpers
|
|
39
|
-
@import "../../../../../node_modules/foundation-sites/scss/typography/alignment"; // Text alignment
|
|
40
|
-
@import "../../../../../node_modules/foundation-sites/scss/typography/print"; // Print styles
|
|
41
|
-
|
|
42
|
-
//==========================
|
|
43
|
-
// 4️⃣ GRID – Layout systems
|
|
44
|
-
//==========================
|
|
45
|
-
|
|
46
|
-
// Legacy Float Grid
|
|
47
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/grid"; // Grid loader
|
|
48
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/classes"; // Grid classes
|
|
49
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/column"; // Column styles
|
|
50
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/row"; // Row styles
|
|
51
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/flex-grid"; // Flexbox grid
|
|
52
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/gutter"; // Gutters
|
|
53
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/layout"; // Layout helpers
|
|
54
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/position"; // Position helpers
|
|
55
|
-
@import "../../../../../node_modules/foundation-sites/scss/grid/size"; // Size helpers
|
|
56
|
-
|
|
57
|
-
// XY Grid (modern, recommended)
|
|
58
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/xy-grid"; // XY Grid loader
|
|
59
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/grid"; // XY Grid core
|
|
60
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/cell"; // XY Grid cells
|
|
61
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/classes"; // XY Grid classes
|
|
62
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/collapse"; // XY Grid collapse
|
|
63
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/frame"; // XY Grid frame
|
|
64
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/gutters"; // XY Grid gutters
|
|
65
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/layout"; // XY Grid layout
|
|
66
|
-
@import "../../../../../node_modules/foundation-sites/scss/xy-grid/position"; // XY Grid position
|
|
67
|
-
|
|
68
|
-
//==========================
|
|
69
|
-
// 5️⃣ FORMS
|
|
70
|
-
//==========================
|
|
71
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/forms"; // Forms loader
|
|
72
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/text"; // Text inputs
|
|
73
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/select"; // Select dropdowns
|
|
74
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/checkbox"; // Checkboxes and radios
|
|
75
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/input-group"; // Input groups
|
|
76
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/fieldset"; // Fieldsets
|
|
77
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/label"; // Form labels
|
|
78
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/help-text"; // Help text
|
|
79
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/error"; // Error states
|
|
80
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/range"; // Range sliders
|
|
81
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/meter"; // Meter element
|
|
82
|
-
@import "../../../../../node_modules/foundation-sites/scss/forms/progress"; // Progress element
|
|
83
|
-
|
|
84
|
-
//==========================
|
|
85
|
-
// 6️⃣ COMPONENTS
|
|
86
|
-
//==========================
|
|
87
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/accordion"; // Accordion
|
|
88
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/accordion-menu"; // Accordion menu
|
|
89
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/badge"; // Badges
|
|
90
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/breadcrumbs"; // Breadcrumbs
|
|
91
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/button"; // Buttons
|
|
92
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/button-group"; // Button groups
|
|
93
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/callout"; // Callout boxes
|
|
94
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/card"; // Cards
|
|
95
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/close-button"; // Close button
|
|
96
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/drilldown"; // Drilldown menu
|
|
97
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/dropdown"; // Dropdown
|
|
98
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/dropdown-menu"; // Dropdown menu
|
|
99
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/flex"; // Flex helpers
|
|
100
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/float"; // Float helpers
|
|
101
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/label"; // Labels
|
|
102
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/media-object"; // Media object
|
|
103
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/menu"; // Menu
|
|
104
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/menu-icon"; // Menu icon (hamburger)
|
|
105
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/off-canvas"; // Off-canvas sidebar
|
|
106
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/orbit"; // Orbit carousel
|
|
107
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/pagination"; // Pagination
|
|
108
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/progress-bar"; // Progress bars
|
|
109
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/responsive-embed"; // Responsive embeds
|
|
110
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/reveal"; // Reveal modals
|
|
111
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/slider"; // Sliders
|
|
112
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/sticky"; // Sticky elements
|
|
113
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/switch"; // Toggle switches
|
|
114
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/table"; // Tables
|
|
115
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/tabs"; // Tabs
|
|
116
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/thumbnail"; // Thumbnails
|
|
117
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/title-bar"; // Title bar
|
|
118
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/tooltip"; // Tooltips
|
|
119
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/top-bar"; // Top bar navbar
|
|
120
|
-
@import "../../../../../node_modules/foundation-sites/scss/components/visibility"; // Visibility helpers
|
|
121
|
-
|
|
122
|
-
//==========================
|
|
123
|
-
// 7️⃣ PROTOTYPE – Utility classes (optional)
|
|
124
|
-
// 💡 Commented by default — uncomment only if you need utility classes
|
|
125
|
-
//==========================
|
|
126
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/prototype"; // Prototype loader
|
|
127
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/arrow"; // Arrow utility
|
|
128
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/border-box"; // Border box
|
|
129
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/border-none";// Border none
|
|
130
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/bordered"; // Bordered
|
|
131
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/box"; // Box
|
|
132
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/display"; // Display utilities
|
|
133
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/font-styling";// Font styling
|
|
134
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/overflow"; // Overflow
|
|
135
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/position"; // Position
|
|
136
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/rounded"; // Rounded corners
|
|
137
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/shadow"; // Box shadows
|
|
138
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/spacing"; // Spacing utilities
|
|
139
|
-
@import "../../../../../node_modules/foundation-sites/scss/prototype/typography"; // Typography utilities
|
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
// ╔══════════════════════════════════════════════════════╗
|
|
2
|
-
// ║ ../../../../../node_modules/UIKIT MODULES ║
|
|
3
|
-
// ║ Comment out any module you don't need to improve ║
|
|
4
|
-
// ║ performance. Core section is required by all others ║
|
|
5
|
-
// ╚══════════════════════════════════════════════════════╝
|
|
6
|
-
|
|
7
|
-
// Imports can be filtered by commenting them
|
|
8
|
-
|
|
9
|
-
//==========================
|
|
10
|
-
// 1️⃣ CORE – Variables, mixins and base
|
|
11
|
-
// ⚠️ Do not comment these out — required by all other modules
|
|
12
|
-
//==========================
|
|
13
|
-
@import "../../../../../node_modules/uikit/src/scss/variables"; // Core variables
|
|
14
|
-
@import "../../../../../node_modules/uikit/src/scss/mixins"; // Reusable SCSS mixins
|
|
15
|
-
@import "../../../../../node_modules/uikit/src/scss/components/variables"; // Component variables
|
|
16
|
-
@import "../../../../../node_modules/uikit/src/scss/components/mixin"; // Component mixins
|
|
17
|
-
@import "../../../../../node_modules/uikit/src/scss/components/base"; // Base styles and reset
|
|
18
|
-
@import "../../../../../node_modules/uikit/src/scss/components/print"; // Print styles
|
|
19
|
-
|
|
20
|
-
//==========================
|
|
21
|
-
// 2️⃣ LAYOUT
|
|
22
|
-
//==========================
|
|
23
|
-
@import "../../../../../node_modules/uikit/src/scss/components/container"; // Containers
|
|
24
|
-
@import "../../../../../node_modules/uikit/src/scss/components/grid"; // Grid system
|
|
25
|
-
@import "../../../../../node_modules/uikit/src/scss/components/flex"; // Flexbox utilities
|
|
26
|
-
@import "../../../../../node_modules/uikit/src/scss/components/width"; // Width utilities
|
|
27
|
-
@import "../../../../../node_modules/uikit/src/scss/components/height"; // Height utilities
|
|
28
|
-
@import "../../../../../node_modules/uikit/src/scss/components/column"; // Column layout
|
|
29
|
-
@import "../../../../../node_modules/uikit/src/scss/components/section"; // Sections
|
|
30
|
-
@import "../../../../../node_modules/uikit/src/scss/components/position"; // Position utilities
|
|
31
|
-
|
|
32
|
-
//==========================
|
|
33
|
-
// 3️⃣ TYPOGRAPHY
|
|
34
|
-
//==========================
|
|
35
|
-
@import "../../../../../node_modules/uikit/src/scss/components/heading"; // Headings
|
|
36
|
-
@import "../../../../../node_modules/uikit/src/scss/components/text"; // Text utilities
|
|
37
|
-
@import "../../../../../node_modules/uikit/src/scss/components/link"; // Link styles
|
|
38
|
-
@import "../../../../../node_modules/uikit/src/scss/components/list"; // Lists
|
|
39
|
-
@import "../../../../../node_modules/uikit/src/scss/components/description-list"; // Description lists
|
|
40
|
-
@import "../../../../../node_modules/uikit/src/scss/components/divider"; // Dividers
|
|
41
|
-
@import "../../../../../node_modules/uikit/src/scss/components/leader"; // Leader lines
|
|
42
|
-
@import "../../../../../node_modules/uikit/src/scss/components/article"; // Article styles
|
|
43
|
-
|
|
44
|
-
//==========================
|
|
45
|
-
// 4️⃣ FORMS
|
|
46
|
-
//==========================
|
|
47
|
-
@import "../../../../../node_modules/uikit/src/scss/components/form"; // Form styles
|
|
48
|
-
@import "../../../../../node_modules/uikit/src/scss/components/form-range"; // Range sliders
|
|
49
|
-
|
|
50
|
-
//==========================
|
|
51
|
-
// 5️⃣ COMPONENTS
|
|
52
|
-
//==========================
|
|
53
|
-
@import "../../../../../node_modules/uikit/src/scss/components/accordion"; // Accordion
|
|
54
|
-
@import "../../../../../node_modules/uikit/src/scss/components/alert"; // Alerts
|
|
55
|
-
@import "../../../../../node_modules/uikit/src/scss/components/badge"; // Badges
|
|
56
|
-
@import "../../../../../node_modules/uikit/src/scss/components/breadcrumb"; // Breadcrumbs
|
|
57
|
-
@import "../../../../../node_modules/uikit/src/scss/components/button"; // Buttons
|
|
58
|
-
@import "../../../../../node_modules/uikit/src/scss/components/card"; // Cards
|
|
59
|
-
@import "../../../../../node_modules/uikit/src/scss/components/close"; // Close button
|
|
60
|
-
@import "../../../../../node_modules/uikit/src/scss/components/comment"; // Comment sections
|
|
61
|
-
@import "../../../../../node_modules/uikit/src/scss/components/countdown"; // Countdown timer
|
|
62
|
-
@import "../../../../../node_modules/uikit/src/scss/components/cover"; // Cover images
|
|
63
|
-
@import "../../../../../node_modules/uikit/src/scss/components/drop"; // Drop component
|
|
64
|
-
@import "../../../../../node_modules/uikit/src/scss/components/dropbar"; // Dropbar
|
|
65
|
-
@import "../../../../../node_modules/uikit/src/scss/components/dropdown"; // Dropdowns
|
|
66
|
-
@import "../../../../../node_modules/uikit/src/scss/components/dropnav"; // Drop navigation
|
|
67
|
-
@import "../../../../../node_modules/uikit/src/scss/components/icon"; // Icons
|
|
68
|
-
@import "../../../../../node_modules/uikit/src/scss/components/iconnav"; // Icon navigation
|
|
69
|
-
@import "../../../../../node_modules/uikit/src/scss/components/label"; // Labels
|
|
70
|
-
@import "../../../../../node_modules/uikit/src/scss/components/lightbox"; // Lightbox
|
|
71
|
-
@import "../../../../../node_modules/uikit/src/scss/components/marker"; // Markers
|
|
72
|
-
@import "../../../../../node_modules/uikit/src/scss/components/modal"; // Modals
|
|
73
|
-
@import "../../../../../node_modules/uikit/src/scss/components/nav"; // Navigation
|
|
74
|
-
@import "../../../../../node_modules/uikit/src/scss/components/navbar"; // Navbar
|
|
75
|
-
@import "../../../../../node_modules/uikit/src/scss/components/notification"; // Notifications
|
|
76
|
-
@import "../../../../../node_modules/uikit/src/scss/components/offcanvas"; // Off-canvas
|
|
77
|
-
@import "../../../../../node_modules/uikit/src/scss/components/overlay"; // Overlays
|
|
78
|
-
@import "../../../../../node_modules/uikit/src/scss/components/pagination"; // Pagination
|
|
79
|
-
@import "../../../../../node_modules/uikit/src/scss/components/placeholder"; // Placeholder boxes
|
|
80
|
-
@import "../../../../../node_modules/uikit/src/scss/components/progress"; // Progress bars
|
|
81
|
-
@import "../../../../../node_modules/uikit/src/scss/components/search"; // Search component
|
|
82
|
-
@import "../../../../../node_modules/uikit/src/scss/components/slidenav"; // Slideshow navigation
|
|
83
|
-
@import "../../../../../node_modules/uikit/src/scss/components/slider"; // Slider
|
|
84
|
-
@import "../../../../../node_modules/uikit/src/scss/components/slideshow"; // Slideshow
|
|
85
|
-
@import "../../../../../node_modules/uikit/src/scss/components/sortable"; // Sortable lists
|
|
86
|
-
@import "../../../../../node_modules/uikit/src/scss/components/spinner"; // Spinners
|
|
87
|
-
@import "../../../../../node_modules/uikit/src/scss/components/sticky"; // Sticky elements
|
|
88
|
-
@import "../../../../../node_modules/uikit/src/scss/components/subnav"; // Sub navigation
|
|
89
|
-
@import "../../../../../node_modules/uikit/src/scss/components/svg"; // SVG utilities
|
|
90
|
-
@import "../../../../../node_modules/uikit/src/scss/components/switcher"; // Switcher component
|
|
91
|
-
@import "../../../../../node_modules/uikit/src/scss/components/tab"; // Tabs
|
|
92
|
-
@import "../../../../../node_modules/uikit/src/scss/components/table"; // Tables
|
|
93
|
-
@import "../../../../../node_modules/uikit/src/scss/components/thumbnav"; // Thumbnail navigation
|
|
94
|
-
@import "../../../../../node_modules/uikit/src/scss/components/tile"; // Tiles
|
|
95
|
-
@import "../../../../../node_modules/uikit/src/scss/components/tooltip"; // Tooltips
|
|
96
|
-
@import "../../../../../node_modules/uikit/src/scss/components/totop"; // To-top button
|
|
97
|
-
|
|
98
|
-
//==========================
|
|
99
|
-
// 6️⃣ UTILITIES
|
|
100
|
-
//==========================
|
|
101
|
-
@import "../../../../../node_modules/uikit/src/scss/components/align"; // Alignment utilities
|
|
102
|
-
@import "../../../../../node_modules/uikit/src/scss/components/animation"; // Animation utilities
|
|
103
|
-
@import "../../../../../node_modules/uikit/src/scss/components/background"; // Background utilities
|
|
104
|
-
@import "../../../../../node_modules/uikit/src/scss/components/dotnav"; // Dot navigation
|
|
105
|
-
@import "../../../../../node_modules/uikit/src/scss/components/inverse"; // Inverse color mode
|
|
106
|
-
@import "../../../../../node_modules/uikit/src/scss/components/margin"; // Margin utilities
|
|
107
|
-
@import "../../../../../node_modules/uikit/src/scss/components/padding"; // Padding utilities
|
|
108
|
-
@import "../../../../../node_modules/uikit/src/scss/components/transition"; // Transition utilities
|
|
109
|
-
@import "../../../../../node_modules/uikit/src/scss/components/utility"; // General utilities
|
|
110
|
-
@import "../../../../../node_modules/uikit/src/scss/components/visibility"; // Visibility utilities
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
//==========================
|
|
2
|
-
// CSS MODULES IMPORTS
|
|
3
|
-
//==========================
|
|
4
|
-
|
|
5
|
-
// Use @use with a namespace to avoid framework variable conflicts:
|
|
6
|
-
// Example: root.$primary
|
|
7
|
-
@use "../modules/root" as root;
|
|
8
|
-
|
|
9
|
-
// This global module contains the import framework, necessary modules for each page and any other common styles
|
|
10
|
-
@import "../modules/global";
|
|
11
|
-
|
|
12
|
-
// Import any other module you need by import down here
|
|
13
|
-
@import "../modules/notification";
|
|
14
|
-
|
|
15
|
-
//==========================
|
|
16
|
-
// PAGE CUSTOM CSS RULES
|
|
17
|
-
//==========================
|
|
18
|
-
|
|
19
|
-
// Add any custom rule specific to this page below
|
|
20
|
-
// These rules override the framework and module styles
|
|
21
|
-
.not-found {
|
|
22
|
-
display: flex;
|
|
23
|
-
flex-direction: column;
|
|
24
|
-
justify-content: center;
|
|
25
|
-
align-items: center;
|
|
26
|
-
min-height: 60vh;
|
|
27
|
-
text-align: center;
|
|
28
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
//==========================
|
|
2
|
-
// CSS MODULES IMPORTS
|
|
3
|
-
//==========================
|
|
4
|
-
|
|
5
|
-
// Use @use with a namespace to avoid framework variable conflicts:
|
|
6
|
-
// Example: root.$primary
|
|
7
|
-
@use "../modules/root" as root;
|
|
8
|
-
|
|
9
|
-
// This global module contains the import framework, necessary modules for each page and any other common styles
|
|
10
|
-
@import "../modules/global";
|
|
11
|
-
|
|
12
|
-
// Import any other module you need by import down here
|
|
13
|
-
@import "../modules/notification";
|
|
14
|
-
|
|
15
|
-
//==========================
|
|
16
|
-
// PAGE CUSTOM CSS RULES
|
|
17
|
-
//==========================
|
|
18
|
-
|
|
19
|
-
// Add any custom rule specific to this page below
|
|
20
|
-
// These rules override the framework and module styles
|
|
21
|
-
// body {
|
|
22
|
-
// background-color: root.$primary;
|
|
23
|
-
// }
|
package/src/frontend/sitemap.njk
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
permalink: /sitemap.xml
|
|
3
|
-
eleventyExcludeFromCollections: true
|
|
4
|
-
---
|
|
5
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
6
|
-
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
7
|
-
{% for page in collections.all %}
|
|
8
|
-
{% if not page.data.draft and '/404' not in page.url %}
|
|
9
|
-
<url>
|
|
10
|
-
<loc>{{ site.url }}{{ page.url | lower }}</loc>
|
|
11
|
-
<lastmod>{{ page.date.toISOString() }}</lastmod>
|
|
12
|
-
<changefreq>weekly</changefreq>
|
|
13
|
-
<priority>{{ '1.0' if page.url == '/' else '0.8' }}</priority>
|
|
14
|
-
</url>
|
|
15
|
-
{% endif %}
|
|
16
|
-
{% endfor %}
|
|
17
|
-
</urlset>
|
package/src/frontend/web.config
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<configuration>
|
|
3
|
-
<system.webServer>
|
|
4
|
-
<directoryBrowse enabled="false" />
|
|
5
|
-
|
|
6
|
-
<httpErrors errorMode="Custom" existingResponse="Replace">
|
|
7
|
-
<remove statusCode="403" />
|
|
8
|
-
<remove statusCode="404" />
|
|
9
|
-
<error statusCode="403" path="/404.html" responseMode="ExecuteURL" />
|
|
10
|
-
<error statusCode="404" path="/404.html" responseMode="ExecuteURL" />
|
|
11
|
-
</httpErrors>
|
|
12
|
-
|
|
13
|
-
<rewrite>
|
|
14
|
-
<rules>
|
|
15
|
-
<rule name="BlockFiles" stopProcessing="true">
|
|
16
|
-
<match url="^(web\.config|llms\.txt|robots\.txt|sitemap\.xml|\.htaccess|\..*)$" ignoreCase="true" />
|
|
17
|
-
<action type="Rewrite" url="/404.html" />
|
|
18
|
-
</rule>
|
|
19
|
-
|
|
20
|
-
<rule name="ApiRoute" stopProcessing="true">
|
|
21
|
-
<match url="^api/(.*)$" ignoreCase="true" />
|
|
22
|
-
<action type="Rewrite" url="backend/_core/index.php" appendQueryString="true" />
|
|
23
|
-
</rule>
|
|
24
|
-
</rules>
|
|
25
|
-
</rewrite>
|
|
26
|
-
</system.webServer>
|
|
27
|
-
</configuration>
|
package/tsconfig.json
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// https://aka.ms/tsconfig
|
|
3
|
-
|
|
4
|
-
// Add options by uncommenting or adding "<key>": <value> pairs inside compilerOptions
|
|
5
|
-
|
|
6
|
-
"include": ["src/frontend/ts/**/*.ts"], // DO NOT CHANGE
|
|
7
|
-
|
|
8
|
-
"compilerOptions": {
|
|
9
|
-
"rootDir": "./src/frontend/ts", // DO NOT CHANGE
|
|
10
|
-
"outDir": "./out/ts", // DO NOT CHANGE
|
|
11
|
-
"module": "esnext", // DO NOT CHANGE
|
|
12
|
-
"target": "esnext", // DO NOT CHANGE
|
|
13
|
-
"types": [],
|
|
14
|
-
"noUncheckedIndexedAccess": true,
|
|
15
|
-
"exactOptionalPropertyTypes": true,
|
|
16
|
-
"strict": true,
|
|
17
|
-
"jsx": "react-jsx",
|
|
18
|
-
"verbatimModuleSyntax": true,
|
|
19
|
-
"isolatedModules": true,
|
|
20
|
-
"noUncheckedSideEffectImports": true,
|
|
21
|
-
"moduleDetection": "force",
|
|
22
|
-
"skipLibCheck": true,
|
|
23
|
-
"experimentalDecorators": true
|
|
24
|
-
}
|
|
25
|
-
}
|