-
Notifications
You must be signed in to change notification settings - Fork 41
/
html.js
53 lines (34 loc) · 1.21 KB
/
html.js
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
'use strict';
const HTML = [
"sections/accounts/account.html",
"sections/accounts/accounts.html",
"sections/assets/asset.html",
"sections/assets/assets.html",
"sections/blocks/block.html",
"sections/blocks/blocks.html",
"sections/committee_members/committee_members.html",
"sections/dashboard/dashboard.html",
"sections/fees/fees.html",
"sections/layout/header.html",
"sections/layout/footer.html",
"sections/markets/market.html",
"sections/markets/markets.html",
"sections/objects/object.html",
"sections/operations/operation.html",
"sections/operations/operations.html",
"sections/proxies/proxies.html",
"sections/search/search.html",
"sections/txs/tx.html",
"sections/txs/txs.html",
"sections/voting/voting.html",
"sections/witnesses/witnesses.html",
"sections/workers/workers.html"
];
const CSS = [
'../node_modules/components-font-awesome/css/fontawesome.min.css',
'../node_modules/components-font-awesome/css/solid.min.css',
'../node_modules/angular-loading-bar/build/loading-bar.min.css',
'../node_modules/bootstrap/dist/css/bootstrap.min.css',
"styles/custom.css"
];
module.exports = [...HTML, ...CSS];