aboutsummaryrefslogtreecommitdiff
path: root/src/views/admin-page.ecr
blob: 287e35f7e6eb6fe5dbc5cc54d8c68bdc3ea672eb (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang='en-US'>
  <head>
    <meta charset="utf-8"/>
    <title><%= h(TITLE) %></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>
    <div
      class='navbar navbar-inverse navbar-static-top'
      role='navigation'
    >
      <div class='container-fluid'>
        <div class='navbar-header'>
          <a
            href='admin.html'
            class='navbar-brand'
          >
            <i class='fa fa-bomb'></i>
            <%= h(TITLE) %>
          </a><!-- navbar-brand -->
        </div><!-- navbar-default -->

        <ul class='nav navbar-nav navbar-right'>
          <li>
            <a
              href='logout.html'
              title='Log out.'
            >
              <i class='fa fa-power-off'></i>
              Log Out
            </a>
          </li>
        </ul><!-- nav -->
      </div><!-- container-fluid -->
    </div><!-- navbar -->

    <div class='container'>
      <p>
        TODO
      </p>
    </div><!-- container -->
  </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>