22 lines
694 B
Plaintext
22 lines
694 B
Plaintext
doctype html
|
|
html(lang='en',ng-app='exampleUI')
|
|
head
|
|
base(href='/example-ui')
|
|
title='Example UI'
|
|
meta(charset='UTF-8')
|
|
meta(http-equiv='X-UA-Compatible' content='IE=edge')
|
|
meta(name='viewport' content='width=device-width, initial-scale=1')
|
|
meta(name='keywords' content='Example UI')
|
|
each cssFile in includeCssFiles
|
|
link(rel='stylesheet' href='#{cssFile}')
|
|
body
|
|
div(id='wrapper')
|
|
div(ng-include='\'/example-ui/include/layout/header\'')
|
|
div(id='page-wrapper')
|
|
div(id='container-fluid')
|
|
div(ng-view)
|
|
div(ng-include='\'/example-ui/include/layout/footer\'')
|
|
each jsFile in includeJsFiles
|
|
script(src='#{jsFile}')
|
|
|