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" 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

View file

@ -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>