Switched to Shifu.
@@ -1,3 +1,3 @@
|
|||||||
# marvinblum.de
|
# marvinblum.de
|
||||||
|
|
||||||
My website build using [Oogway](https://github.com/emvi/oogway).
|
My [website](https://marvinblum.de) built with [Shifu](https://github.com/emvi/shifu).
|
||||||
|
|||||||
0
.gitignore → _old/.gitignore
vendored
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 4.9 MiB After Width: | Height: | Size: 4.9 MiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 816 B After Width: | Height: | Size: 816 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 190 B After Width: | Height: | Size: 190 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 455 B After Width: | Height: | Size: 455 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 292 KiB After Width: | Height: | Size: 292 KiB |
1
assets/js/main.js
Normal file
@@ -0,0 +1 @@
|
|||||||
|
console.log("Hello from Shifu!");
|
||||||
4
assets/scss/main.scss
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
body {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 40px;
|
||||||
|
}
|
||||||
45
config.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"dev": true,
|
||||||
|
"server": {
|
||||||
|
"host": "localhost",
|
||||||
|
"port": 8081,
|
||||||
|
"shutdown_time": 30,
|
||||||
|
"write_timeout": 5,
|
||||||
|
"read_timeout": 5,
|
||||||
|
"tls_cert_file": "",
|
||||||
|
"tls_key_file": "",
|
||||||
|
"hostname": "",
|
||||||
|
"secure_cookies": false,
|
||||||
|
"cookie_domain_name": ""
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"provider": "fs",
|
||||||
|
"update_seconds": 5,
|
||||||
|
"repository": ""
|
||||||
|
},
|
||||||
|
"cors": {
|
||||||
|
"origins": "",
|
||||||
|
"loglevel": ""
|
||||||
|
},
|
||||||
|
"sass": {
|
||||||
|
"entrypoint": "main.scss",
|
||||||
|
"dir": "assets/scss",
|
||||||
|
"watch": true,
|
||||||
|
"out": "static/main.css",
|
||||||
|
"out_source_map": "static/main.css.map"
|
||||||
|
},
|
||||||
|
"js": {
|
||||||
|
"entrypoint": "main.js",
|
||||||
|
"dir": "assets/js",
|
||||||
|
"watch": true,
|
||||||
|
"out": "static/main.min.js",
|
||||||
|
"source_map": true
|
||||||
|
},
|
||||||
|
"analytics": {
|
||||||
|
"provider": "",
|
||||||
|
"client_id": "",
|
||||||
|
"client_secret": "",
|
||||||
|
"subnets": null,
|
||||||
|
"header": null
|
||||||
|
}
|
||||||
|
}
|
||||||
21
content/home.json
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"path": {
|
||||||
|
"en": "/"
|
||||||
|
},
|
||||||
|
"sitemap": {
|
||||||
|
"priority": "1.0"
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"content": [
|
||||||
|
{
|
||||||
|
"tpl": "main",
|
||||||
|
"copy": {
|
||||||
|
"en": {
|
||||||
|
"title": "Marvin Blum - marvinblum.de",
|
||||||
|
"headline": "Welcome to my website!"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
1
static/main.css
Normal file
@@ -0,0 +1 @@
|
|||||||
|
body{max-width:800px;margin:40px}/*# sourceMappingURL=main.css.map */
|
||||||
1
static/main.css.map
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"version":3,"sourceRoot":"","sources":["../assets/scss/main.scss"],"names":[],"mappings":"AAAA,KACC,gBACA","file":"main.css"}
|
||||||
1
static/main.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
(()=>{console.log("Hello from Shifu!");})();
|
||||||
7
static/main.min.js.map
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": ["../assets/js/main.js"],
|
||||||
|
"sourcesContent": ["console.log(\"Hello from Shifu!\");\n"],
|
||||||
|
"mappings": "MAAA,QAAQ,IAAI,mBAAmB",
|
||||||
|
"names": []
|
||||||
|
}
|
||||||
13
tpl/main.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<base href="/" />
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="static/main.css" />
|
||||||
|
<script type="text/javascript" src="static/main.min.js"></script>
|
||||||
|
<title>{{copy .Page .Content "title"}}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>{{copy .Page .Content "headline"}}</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||