├── _index
├── bg_pattern.png
├── main.css
├── footer.html
├── main.js
├── header.html
├── bootstrap.min.js
└── jquery-3.3.1.slim.min.js
├── LICENSE
└── README.md
/_index/bg_pattern.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/llorephie/ngx-fancyindex-theme-bootstrap/HEAD/_index/bg_pattern.png
--------------------------------------------------------------------------------
/_index/main.css:
--------------------------------------------------------------------------------
1 | html {
2 | position: relative;
3 | min-height: 100%;
4 | }
5 | body {
6 | margin-bottom: 20px;
7 | font-family: 'Ubuntu', sans-serif;
8 | margin-bottom: 50px;
9 | background-image: url('/_index/bg_pattern.png');
10 | background-repeat: repeat;
11 | }
12 | body> .container {
13 | padding: 20px 15px 0;
14 | }
15 | .container .text-muted {
16 | margin: 20px 0;
17 | }
18 |
--------------------------------------------------------------------------------
/_index/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
10 |
11 |
12 |