Merge "Added Search_Results Page"
[releng.git] / utils / test / vnfcatalogue / VNF_Catalogue / views / layout.jade
1 doctype html
2 //
3   Copyright (c) 2017 Kumar Rishabh and others.
4   All rights reserved. This program and the accompanying materials
5   are made available under the terms of the Apache License, Version 2.0
6   which accompanies this distribution, and is available at
7   http://www.apache.org/licenses/LICENSE-2.0
8 html(lang='en')
9 html
10     head
11         title= title
12         link(rel='stylesheet', href='/stylesheets/3rd_party/bootstrap.css')
13         link(rel='stylesheet', href='/3rd_party/materialize/css/materialize.css')
14         script(type='text/javascript', src='https://code.jquery.com/jquery-3.1.1.min.js')
15         script(src='/javascripts/global.js')
16         script(src='/3rd_party/materialize/js/materialize.js')
17         link(href='https://fonts.googleapis.com/icon?family=Material+Icons', rel='stylesheet')
18         link(rel='stylesheet', href='/stylesheets/style.css')
19     body
20         header
21           nav.transparent.z-depth-0
22             .nav-wrapper
23               a.button-collapse(href='#', data-activates='mobile-demo')
24                 i.material-icons menu
25               ul#nav-mobile.left.hide-on-med-and-down
26                 li
27                   a(href='#')
28                     img.left.brand-logo.brand-logo-extends
29                 li
30                   a(href='#') Projects
31                 li
32                   a(href='#') People
33                 li
34                   a(href='#') About
35               ul#nav-mobile.right.hide-on-med-and-down
36                 li.signup
37                   a(href='#') Sign up
38                 li.option or
39                 li.signin
40                   a(href='#') Sign in
41               ul#mobile-demo.side-nav
42                 li
43                   a(href='#') Projects
44                 li
45                   a(href='#') People
46                 li
47                   a(href='#') About
48                 li.signup
49                   a(href='#') Sign up
50                 li.signin
51                   a(href='#') Sign in
52         block content
53