2022-07-25 15:39:05 +01:00
|
|
|
<!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>
|
2022-07-26 13:39:26 +01:00
|
|
|
<main class="main-table">
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<div class="item-table">
|
|
|
|
<div>
|
|
|
|
<div class="item-table-half">
|
|
|
|
<h1>{{ .Data.About.Title }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="item-table-half">
|
2022-07-26 14:59:09 +01:00
|
|
|
<h1>Email: <a href="mailto:{{ .Data.About.ContactEmail }}">{{ .Data.About.ContactEmail }}</a></h1>
|
2022-07-26 13:39:26 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div class="item-table-full">
|
|
|
|
{{ .Data.About.GetContent }}
|
|
|
|
</div>
|
2022-07-26 15:11:19 +01:00
|
|
|
<div class="item-table-240">
|
|
|
|
<a href="{{ .Data.About.ImageLocation }}"><img src="{{ .Data.About.ThumbnailLocation }}" alt="Image of Me." width="240px"></a>
|
2022-07-26 13:39:26 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-25 15:39:05 +01:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|