source: views/partials/header.ejs

main
Last change on this file was 7517a3a, checked in by Luka Krstikj <luka.krstik@…>, 20 hours ago

init

  • Property mode set to 100644
File size: 646 bytes
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title><%= title || 'Construct 307' %></title>
7 <link rel="stylesheet" href="/css/style.css">
8</head>
9<body>
10 <nav class="navbar">
11 <div class="container" style="display: flex; flex-direction: row; width: 98vw; justify-content: space-between; padding: 1vw;">
12 <a href="/" class="logo">Construct 307</a>
13 <div class="nav-links">
14 <a href="/">Home</a>
15 <a href="/buildings">Browse</a>
16 <a href="/admin">Admin</a>
17 </div>
18 </div>
19 </nav>
20 <main class="container">
Note: See TracBrowser for help on using the repository browser.