generated from Skynet/deploy_user
Fix. Website now has css applied
All checks were successful
On_Push / deploy (push) Successful in 10s
All checks were successful
On_Push / deploy (push) Successful in 10s
This commit is contained in:
parent
5ab1925772
commit
e010bd03dc
2 changed files with 20 additions and 3 deletions
19
.md.toml
19
.md.toml
|
@ -2,7 +2,22 @@ indentation = 2
|
||||||
src = "./src"
|
src = "./src"
|
||||||
dest = "./build"
|
dest = "./build"
|
||||||
|
|
||||||
|
html_void = []
|
||||||
|
|
||||||
[template]
|
[template]
|
||||||
enable = true
|
enable = true
|
||||||
general = "./template.html"
|
order = [
|
||||||
slides = "./src/templates/powerpoint.html"
|
{ type = "Powerpoint", path = "./src/templates/powerpoint.html" },
|
||||||
|
{ type = "Adjacent" },
|
||||||
|
{ type = "AdjacentFolder" },
|
||||||
|
#{ type = "RootFolder", path = "./src/templates/folder.html" },
|
||||||
|
# path to the templates' folder,
|
||||||
|
#{ type = "Root", path = "./src/templates" },
|
||||||
|
{ type = "General", path = "./src/templates/template.html" },
|
||||||
|
{ type = "Default" },
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
[indexing]
|
||||||
|
roots = []
|
||||||
|
render_drafts = false
|
|
@ -1,9 +1,11 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-IE">
|
<html lang="en-IE">
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" href="Test.css">
|
<title>{title}</title>
|
||||||
|
<link rel="stylesheet" href="./Test.css">
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
{body}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue