Skip to content

Commit 9734d86

Browse files
authored
fix: puts place holder in the right place for head-custom partial (#32)
* fix: puts place holder in the right place for head-custom partial * chore: merge conflict 🤣
1 parent 731654e commit 9734d86

File tree

3 files changed

+40
-39
lines changed

3 files changed

+40
-39
lines changed

layouts/partials/head-custom.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{/* Here is will you will put your custom head tags. */}}

layouts/partials/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@
3737
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
3838
<link rel="manifest" href="/site.webmanifest" />
3939
<!-- Add your custom headers here -->
40-
{{- partial "head-custom.html" . -}}
40+
{{- partial "head/head-custom.html" . }}
4141
{{- /* Trim EOF */ -}}

package.json

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
{
2-
"name": "simpl",
3-
"version": "0.2.1",
4-
"description": "A simpl(e) Hugo Theme",
5-
"author": "@esacteksab",
6-
"scripts": {
7-
"postcss": "postcss ./assets/css/main.css --config ./postcss.config.js -r"
8-
},
9-
"devDependencies": {
10-
"@tailwindcss/cli": "^4.1.2",
11-
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
12-
"@tailwindcss/postcss": "^4.1.2",
13-
"@tailwindcss/typography": "^0.5.16",
14-
"autoprefixer": "^10.4.21",
15-
"install": "^0.13.0",
16-
"npm": "^11.2.0",
17-
"postcss": "^8.5.3",
18-
"postcss-cli": "^11.0.1",
19-
"postcss-color-converter": "^1.1.2",
20-
"postcss-flexbugs-fixes": "^5.0.2",
21-
"prettier": "^3.5.3",
22-
"prettier-plugin-css-order": "^2.1.2",
23-
"prettier-plugin-go-template": "^0.0.15",
24-
"prettier-plugin-organize-attributes": "^1.0.0",
25-
"prettier-plugin-pkg": "^0.18.1",
26-
"prettier-plugin-sh": "^0.16.0",
27-
"prettier-plugin-tailwindcss": "^0.6.11",
28-
"prettier-plugin-toml": "^2.0.3",
29-
"stylelint": "^16.17.0",
30-
"stylelint-config-recommended": "^15.0.0",
31-
"tailwindcss": "^4.1.2"
32-
},
33-
"postcss": {
34-
"map": false,
35-
"plugins": {
36-
"css-declaration-sorter": {
37-
"order": "smacss"
38-
}
39-
}
2+
"name": "simpl",
3+
"version": "0.2.4",
4+
"description": "A simpl(e) Hugo Theme",
5+
"author": "@esacteksab",
6+
"scripts": {
7+
"postcss": "postcss ./assets/css/main.css --config ./postcss.config.js -r"
8+
},
9+
"devDependencies": {
10+
"@tailwindcss/cli": "^4.1.2",
11+
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
12+
"@tailwindcss/postcss": "^4.1.2",
13+
"@tailwindcss/typography": "^0.5.16",
14+
"autoprefixer": "^10.4.21",
15+
"install": "^0.13.0",
16+
"npm": "^11.2.0",
17+
"postcss": "^8.5.3",
18+
"postcss-cli": "^11.0.1",
19+
"postcss-color-converter": "^1.1.2",
20+
"postcss-flexbugs-fixes": "^5.0.2",
21+
"prettier": "^3.5.3",
22+
"prettier-plugin-css-order": "^2.1.2",
23+
"prettier-plugin-go-template": "^0.0.15",
24+
"prettier-plugin-organize-attributes": "^1.0.0",
25+
"prettier-plugin-pkg": "^0.18.1",
26+
"prettier-plugin-sh": "^0.16.0",
27+
"prettier-plugin-tailwindcss": "^0.6.11",
28+
"prettier-plugin-toml": "^2.0.3",
29+
"stylelint": "^16.17.0",
30+
"stylelint-config-recommended": "^15.0.0",
31+
"tailwindcss": "^4.1.2"
32+
},
33+
"postcss": {
34+
"map": false,
35+
"plugins": {
36+
"css-declaration-sorter": {
37+
"order": "smacss"
38+
}
4039
}
40+
}
4141
}

0 commit comments

Comments
 (0)