Website/layouts/default.hbs

45 lines
1.1 KiB
Handlebars
Raw Normal View History

2015-12-03 15:24:36 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>The ODIn Lab: {{ title }}</title>
{{! Files will be fingerprinted for cache busting }}
{{! Access their filenames with the fingerprint variable }}
<link rel="stylesheet" href="{{ fingerprint.[css/index.css] }}">
<!--link rel="stylesheet" href="../src/css/index.css"-->
2015-12-03 09:45:33 -05:00
2015-12-03 15:24:36 -05:00
</head>
<body>
<div class="header_logo">
<img src="assets/ub_logo_1line_white.png"
height="20"
style="float: left; margin-top:8px"
/>
<img src="assets/lab_logo_1line_white.png"
height="35"
style="float: right"/>
</div>
2015-12-02 18:54:12 -05:00
2015-12-03 15:24:36 -05:00
<div class="header_menu">
<a>People</a>
<a>Projects</a>
<a>Teaching</a>
<a>Publications</a>
<a>Funding</a>
<a>Wiki</a>
</div>
<div class="left_menu">
<h2>Lab Services</h2>
<a>DubStep (CSE4/562)</a>
<a>GitLab (Research)</a>
<a>GitHub (Software)</a>
<a>Slack (Comm)</a>
<a>Piazza (Coursework)</a>
2015-12-02 18:54:12 -05:00
2015-12-03 15:24:36 -05:00
<h2>Recent News</h2>
<h2>Recent Rants</h2>
</div>
{{{ contents }}}
</body>
</html>