Skip to content

Commit 06cb3ca

Browse files
committed
initialize hugoplate
0 parents  commit 06cb3ca

File tree

106 files changed

+27286
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+27286
-0
lines changed

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
; https://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 2
9+
indent_style = space
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Thumbs.db
2+
.DS_Store
3+
.dist
4+
.tmp
5+
.lock
6+
.sass-cache
7+
npm-debug.log
8+
node_modules
9+
builds
10+
package-lock.json
11+
public
12+
resources
13+
.hugo_build.lock
14+
jsconfig.json
15+
hugo_stats.json
16+
go.sum
17+
yarn.lock

.jshintrc

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"maxerr": 50,
3+
"bitwise": true,
4+
"camelcase": false,
5+
"curly": true,
6+
"eqeqeq": true,
7+
"forin": true,
8+
"freeze": true,
9+
"immed": true,
10+
"indent": 2,
11+
"latedef": true,
12+
"newcap": false,
13+
"noarg": true,
14+
"noempty": true,
15+
"nonbsp": true,
16+
"nonew": true,
17+
"plusplus": false,
18+
"undef": true,
19+
"unused": false,
20+
"strict": true,
21+
"maxparams": false,
22+
"maxdepth": 4,
23+
"maxstatements": false,
24+
"maxcomplexity": false,
25+
"maxlen": 400,
26+
"browser": true,
27+
"devel": true,
28+
"asi": false,
29+
"boss": false,
30+
"debug": false,
31+
"eqnull": false,
32+
"es3": false,
33+
"es5": false,
34+
"esversion": 12,
35+
"moz": false,
36+
"evil": true,
37+
"expr": true,
38+
"funcscope": false,
39+
"globalstrict": false,
40+
"iterator": false,
41+
"lastsemic": false,
42+
"laxbreak": false,
43+
"laxcomma": false,
44+
"loopfunc": true,
45+
"multistr": true,
46+
"noyield": false,
47+
"notypeof": false,
48+
"proto": false,
49+
"scripturl": false,
50+
"shadow": false,
51+
"sub": false,
52+
"supernew": false,
53+
"validthis": false,
54+
"globals": {
55+
"jQuery": false,
56+
"google": false,
57+
"$": false
58+
}
59+
}

.markdownlint.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"MD033": false,
3+
"MD034": false,
4+
"MD013": false
5+
}

.prettierrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"overrides": [
3+
{
4+
"files": ["*.html"],
5+
"options": {
6+
"parser": "go-template",
7+
"goTemplateBracketSpacing": true,
8+
"bracketSameLine": true
9+
}
10+
}
11+
]
12+
}

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["bradlc.vscode-tailwindcss"]
3+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2023 - Present, Zeon Studio
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

assets/js/main.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// main script
2+
(function () {
3+
"use strict";
4+
5+
// ####################### Testimonial Slider #########################
6+
new Swiper(".testimonial-slider", {
7+
spaceBetween: 24,
8+
loop: true,
9+
pagination: {
10+
el: ".testimonial-slider-pagination",
11+
type: "bullets",
12+
clickable: true,
13+
},
14+
breakpoints: {
15+
768: {
16+
slidesPerView: 2,
17+
},
18+
992: {
19+
slidesPerView: 3,
20+
},
21+
},
22+
});
23+
})();

0 commit comments

Comments
 (0)