-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui-route-template.html
41 lines (41 loc) · 1.4 KB
/
ui-route-template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html data-navbar="navbar.html">
<head>
<title></title>
<link rel="stylesheet" href="/public/style.css">
<script async src="/public/highlight.min.js"></script>
<script src="/public/browser.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/public/wa-mediabox.min.css">
<script async src="/public/wa-mediabox.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
</head>
<body>
<a name="top" id="top"></a>
<div class="body-container">
<header>
<h1>Dashboard</h1>
<section id="navigation" class="navigation"></section>
</header>
<div class="section-container">
<section class="full">
<a name="content" id="content"></a>
<div class="content">
<h1 id="title"></h1>
<ul id="screenshots" class="screenshots desktop"></ul>
<p><a class="skip" href="#top">Top of page</a></p>
</div>
</section>
</div>
</div>
<template id="screenshot-template">
<li>
<a class="screenshot-link" href="${screenshot.urlPath}">
<img data-src="${screenshot.urlPath}" title="${screenshot.description}">
<span class="description">${screenshot.description}</span>
</a>
</li>
</template>
</body>
</html>