Captain ALM
0b2ba868a3
All checks were successful
continuous-integration/drone/push Build is passing
Update page handling system. Update Makefile and .gitignore .
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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>City University Portfolio</title>
|
|
<link rel="stylesheet" href="{{ .Data.CSSBaseURL }}"/>
|
|
{{ if .Light }}
|
|
<link rel="stylesheet" href="{{ .Data.CSSLightURL }}"/>
|
|
{{ else }}
|
|
<link rel="stylesheet" href="{{ .Data.CSSDarkURL }}"/>
|
|
{{ end }}
|
|
<script src="{{ .Data.JScriptURL }}"></script>
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<a href="?" class="home-button no-dec"><b>⌂</b></a>
|
|
<input class="nav-menu" type="checkbox" id="nav-menu"/>
|
|
<label class="hmb" for="nav-menu"><span class="hmb-line"></span></label>
|
|
<nav class="nav">
|
|
<ul class="menu no-lst-style">
|
|
{{ range .Data.GetHeaderLabels }}
|
|
<li><b><a href="{{ $.Data.GetHeaderLink . }}" class="no-dec">{{ . }}</a></b></li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
</main>
|
|
</body>
|
|
</html> |