Compare commits
4 Commits
1cbaeb8cc9
...
2439dfa78d
Author | SHA1 | Date | |
---|---|---|---|
2439dfa78d | |||
e0248abb46 | |||
cc4a827331 | |||
e8ce3f9b75 |
10
Makefile
Normal file
10
Makefile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
all: clean format build
|
||||||
|
|
||||||
|
format:
|
||||||
|
biome format --write .
|
||||||
|
|
||||||
|
build:
|
||||||
|
zola build
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf public/
|
15
biome.json
Normal file
15
biome.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
|
||||||
|
"files": {
|
||||||
|
"ignore": [".vscode/", "node_modules/", "public/"]
|
||||||
|
},
|
||||||
|
"organizeImports": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"linter": {
|
||||||
|
"enabled": false,
|
||||||
|
"rules": {
|
||||||
|
"recommended": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -58,7 +58,7 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<p>Build time: {{ now() | date(format="%Y-%m-%d %H:%M") }},
|
<p>Build time: {{ now() | date(format="%Y-%m-%d %H:%M") }},
|
||||||
{% if config.extra.git %}
|
{% if config.extra.git %}
|
||||||
<a href="{{ config.extra.git }}">Source</a>
|
<a href="{{ config.extra.git }}" target="_blank">Source</a>
|
||||||
{% endif %}</p>
|
{% endif %}</p>
|
||||||
<p>© filiprojek.cz 2022 - {{ now() | date(format="%Y")}}</p>
|
<p>© filiprojek.cz 2022 - {{ now() | date(format="%Y")}}</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
Loading…
Reference in New Issue
Block a user