get creation of links working
This commit is contained in:
8
views/layout/footer.ejs
Normal file
8
views/layout/footer.ejs
Normal file
@@ -0,0 +1,8 @@
|
||||
<footer>
|
||||
<p>© 2023 Intended Link. All rights reserved.</p>
|
||||
<p>
|
||||
<a href="https://git.silentsilas.com/silentsilas/intended-server" target="_blank" rel="noopener noreferrer">
|
||||
Intended Link
|
||||
</a>, by <a href="https://silentsilas.com" target="_blank" rel="noopener noreferrer">Silent Silas</a>
|
||||
</p>
|
||||
</footer>
|
25
views/layout/head.ejs
Normal file
25
views/layout/head.ejs
Normal file
@@ -0,0 +1,25 @@
|
||||
<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">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title>
|
||||
<%= title %>
|
||||
</title>
|
||||
<style>
|
||||
html {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
background-color: #121212;
|
||||
color: #e0e0e0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<link href="/static/missing/missing.min.css" rel="stylesheet" />
|
||||
<link href="/static/victormono/index.css" rel="stylesheet" />
|
||||
<link href="/static/app.css" rel="stylesheet" />
|
||||
</head>
|
9
views/layout/header.ejs
Normal file
9
views/layout/header.ejs
Normal file
@@ -0,0 +1,9 @@
|
||||
<header class="navbar">
|
||||
<nav aria-label="Site sections">
|
||||
<ul role="list">
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/doc">Docs</a></li>
|
||||
<li><a href="/app">App</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
Reference in New Issue
Block a user