diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/footer.ejs | 16 | ||||
-rw-r--r-- | templates/header.ejs | 24 |
2 files changed, 20 insertions, 20 deletions
diff --git a/templates/footer.ejs b/templates/footer.ejs index f9ac4de..db2d403 100644 --- a/templates/footer.ejs +++ b/templates/footer.ejs @@ -1,9 +1,9 @@ - </main> - <footer class="<%- config.classes.footer.join(" ") %>"> - <hr> - <p style="text-align:center;"> - <i>generated by <a href="https://gitlab.minteck.org/minteck/cobalt">Cobalt</a> v<%- config._version %></i> - </p> - </footer> -</body> + </main>
+ <footer class="<%- config.classes.footer.join(" ") %>">
+ <hr>
+ <p style="text-align:center;">
+ <i>generated by <a href="https://gitlab.minteck.org/minteck/cobalt">Cobalt</a> v<%- config._version %></i>
+ </p>
+ </footer>
+</body>
</html>
\ No newline at end of file diff --git a/templates/header.ejs b/templates/header.ejs index 5aaaf44..c435efa 100644 --- a/templates/header.ejs +++ b/templates/header.ejs @@ -1,13 +1,13 @@ -<!DOCTYPE html> -<html lang="en" class="<%- config.classes.html.join(" ") %>"> -<head> - <meta charset="UTF-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title><%- name %> | <%- config.site_name %></title> - <link rel="stylesheet" href="<%- config.imports.css.join('"><link rel="stylesheet" href="') %>"> - <script src="<%- config.imports.js.join('"></script><script src="') %>"></script> -</head> -<body class="<%- config.classes.body.join(" ") %>"> - <!-- TODO: put your navigation, header, etc... here --> +<!DOCTYPE html>
+<html lang="en" class="<%- config.classes.html.join(" ") %>">
+<head>
+ <meta charset="UTF-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title><%- name %> | <%- config.site_name %></title>
+ <link rel="stylesheet" href="<%- config.imports.css.join('"><link rel="stylesheet" href="') %>">
+ <script src="<%- config.imports.js.join('"></script><script src="') %>"></script>
+</head>
+<body class="<%- config.classes.body.join(" ") %>">
+ <!-- TODO: put your navigation, header, etc... here -->
<main class="<%- config.classes.main.join(" ") %>">
\ No newline at end of file |