forked from martoncsukas/backend-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.html
More file actions
executable file
·30 lines (30 loc) · 1.21 KB
/
default.html
File metadata and controls
executable file
·30 lines (30 loc) · 1.21 KB
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
<!DOCTYPE html>
<html>
<head>
<title>
AlchemyTec - Back End Coding Test
</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="content-language" content="en-gb" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/ico" href="/favicon.ico" />
<link name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="static/css/main.min.css" />
<script type="text/javascript" src="static/js/main.min.js"></script>
<script type="text/javascript" src="static/js/codingtest.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="header">
<ng-include src=" 'navbar.html' "></ng-include>
<ng-include src=" 'navbar-subbar.html' "></ng-include>
</div>
<div id="tab-header">
<ng-include src=" 'tab-header.html' "></ng-include>
</div>
<div id="content">
<ng-view class="slide-view"></ng-view>
</div>
</body>
</html>