Fix. Website now has css applied
All checks were successful
On_Push / deploy (push) Successful in 10s

This commit is contained in:
Eoghan Conlon 2024-09-27 14:54:43 +01:00
parent 5ab1925772
commit e010bd03dc
2 changed files with 20 additions and 3 deletions

View file

@ -2,7 +2,22 @@ indentation = 2
src = "./src"
dest = "./build"
html_void = []
[template]
enable = true
general = "./template.html"
slides = "./src/templates/powerpoint.html"
order = [
{ 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

View file

@ -1,9 +1,11 @@
<!DOCTYPE html>
<html lang="en-IE">
<head>
<link rel="stylesheet" href="Test.css">
<title>{title}</title>
<link rel="stylesheet" href="./Test.css">
<meta charset="UTF-8">
</head>
<body>
{body}
</body>
</html>