blob: 1698cb5ba6bdabc8d20e1e553ac2f2b570e57831 (
plain)
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
|
<!DOCTYPE html>
<html lang='en-US'>
<head>
<meta charset="utf-8"/>
<title>Guff Admin</title>
<%=
styles %w{
assets/font-awesome-4.5.0/css/font-awesome.min.css
assets/bootstrap-3.3.6/css/bootstrap.min.css
assets/bootstrap-3.3.6/css/bootstrap-theme.min.css
}
%>
</head>
<body>
<a
href='logout.html'
title='Go to logout page.'
>
<i class='fa fa-logout'></i>
Logout
</a>
</body>
<%=
scripts %w{
assets/jquery-2.2.1.min.js
assets/luigi-template-0.4.1.min.js
assets/js/util.js
assets/bootstrap-3.3.6/js/bootstrap.min.js
assets/ckeditor-4.5.8-custom/ckeditor.js
assets/js/search-field.js
assets/test/tab-users.js
assets/test/tab-posts.js
}
%>
</html>
|