diff options
| author | Connor Thomson <blumatrikz@gmail.com> | 2026-09-18 17:23:39 -0700 |
|---|---|---|
| committer | Connor Thomson <blumatrikz@gmail.com> | 2026-09-18 17:23:39 -0700 |
| commit | 94a6551bafd51deb2bfae144336689eb0472abf6 (patch) | |
| tree | 103db6511e06a43dbc90fc26b89ded9ca519a3d3 /html | |
Upload files from test.gnufault.org
Diffstat (limited to 'html')
| -rw-r--r-- | html/app.html | 19 | ||||
| -rw-r--r-- | html/footer.html | 3 | ||||
| -rw-r--r-- | html/header.html | 16 |
3 files changed, 38 insertions, 0 deletions
diff --git a/html/app.html b/html/app.html new file mode 100644 index 0000000..3db26fa --- /dev/null +++ b/html/app.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>GNUfault</title> + <link rel="stylesheet" type="text/css" href="/css/all.css"> +</head> +<body> + <div class="container"> + {{HEADER}} + + <div class="content"> + {{CONTENT}} + </div> + + {{FOOTER}} + </div> +</body> +</html> diff --git a/html/footer.html b/html/footer.html new file mode 100644 index 0000000..d1599f9 --- /dev/null +++ b/html/footer.html @@ -0,0 +1,3 @@ +<div class="footer"> + <h6>© {{YEAR}} Connor Thomson. Content licensed under the <a href=https://creativecommons.org/licenses/by-sa/4.0/>Creative Commons Attribution-ShareAlike 4.0 International</a> license unless otherwise noted.</h6> +</div> diff --git a/html/header.html b/html/header.html new file mode 100644 index 0000000..98036d4 --- /dev/null +++ b/html/header.html @@ -0,0 +1,16 @@ +<!-- header.html --> +<div class="header"> + <a href="/"> + <div class="banner"> + <div class="taya"> + <img src="/images/logos/taya.gif"> + </div> + <div class="logo"> + <img src="/images/logos/logo.gif"> + </div> + </div> + </a> + <nav class="navbar"> + <p>Hello, world!</p> + </nav> +</div> |
