-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.36 KB
/
index.html
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
<html>
<head>
<link rel="stylesheet" href="node_modules/primeicons/primeicons.css" />
<link rel="stylesheet" href="node_modules/primeng/resources/primeng.css" />
<link rel="stylesheet" href="node_modules/primeflex/primeflex.css" />
<link
rel="stylesheet"
href="node_modules/primeng/resources/themes/saga-blue/theme.css"
/>
<template id="test">
<application layout="layout1">
<app-header></app-header>
<app-side-bar position="left">
<nav-item></nav-item>
</app-side-bar>
<app-content></app-content>
<app-footer></app-footer>
</application>
</template>
</head>
<body>
<!-- <div class="application app-container h-screen flex flex-column relative" tag-type="application">
<div class="app-header-container app-header">${content.appHeader}</div>
<div class="app-main-container overflow-hidden flex-grow-1 flex flex-row">
<div class="app-side-bar-container app-nav-left">${content.appSideBar}</div>
<div class="app-body flex flex-column flex-auto">
<div class="app-content flex flex-column overflow-hidden flex-grow-1">
<div class="app-content-header" id='app'></div>
${content.appContent}
</div>
<div class="app-footer">${content.appFooter}</div>
</div>
<div class="app-nav-right">ANR</div>
</div> -->
</body>
</html>