|
1 | 1 | <!DOCTYPE html> |
2 | | -<html lang="{{ page.lang | default: site.lang | default: "en" }}"> |
3 | | - |
4 | | -{% include head.html %} |
5 | | - |
6 | | -<body> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>{{ page.title }} - Trading Pal Documentation</title> |
| 7 | + <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> |
| 8 | + <link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/themes/prism-tomorrow.min.css" rel="stylesheet"> |
| 9 | + <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}"> |
| 10 | +</head> |
| 11 | +<body class="bg-dark text-light"> |
| 12 | + <nav class="navbar navbar-expand-lg navbar-dark bg-dark border-bottom border-secondary"> |
| 13 | + <div class="container"> |
| 14 | + <a class="navbar-brand" href="{{ '/' | relative_url }}">Trading Pal</a> |
| 15 | + <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"> |
| 16 | + <span class="navbar-toggler-icon"></span> |
| 17 | + </button> |
| 18 | + <div class="collapse navbar-collapse" id="navbarNav"> |
| 19 | + <ul class="navbar-nav"> |
| 20 | + <li class="nav-item"> |
| 21 | + <a class="nav-link" href="{{ '/data_server.html' | relative_url }}">Data Server</a> |
| 22 | + </li> |
| 23 | + <li class="nav-item"> |
| 24 | + <a class="nav-link" href="{{ '/charts_display.html' | relative_url }}">Charts</a> |
| 25 | + </li> |
| 26 | + <li class="nav-item"> |
| 27 | + <a class="nav-link" href="{{ '/backtesting.html' | relative_url }}">Backtesting</a> |
| 28 | + </li> |
| 29 | + </ul> |
| 30 | + </div> |
| 31 | + </div> |
| 32 | + </nav> |
7 | 33 |
|
8 | | - {% include topnav.html %} |
| 34 | + <main class="container py-5"> |
| 35 | + <div class="row"> |
| 36 | + <div class="col-md-3"> |
| 37 | + <div class="sidebar sticky-top"> |
| 38 | + <div class="list-group"> |
| 39 | + <a href="{{ '/data_server.html' | relative_url }}" class="list-group-item list-group-item-action bg-dark text-light border-secondary">Data Server</a> |
| 40 | + <a href="{{ '/charts_display.html' | relative_url }}" class="list-group-item list-group-item-action bg-dark text-light border-secondary">Charts Display</a> |
| 41 | + <a href="{{ '/backtesting.html' | relative_url }}" class="list-group-item list-group-item-action bg-dark text-light border-secondary">Backtesting</a> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + <div class="col-md-9"> |
| 46 | + <div class="content"> |
| 47 | + {{ content }} |
| 48 | + </div> |
| 49 | + </div> |
| 50 | + </div> |
| 51 | + </main> |
9 | 52 |
|
10 | | - <div class="page-content"> |
11 | | - <div class="wrapper"> |
12 | | - {{ content }} |
| 53 | + <footer class="footer mt-auto py-3 bg-dark border-top border-secondary"> |
| 54 | + <div class="container text-center"> |
| 55 | + <span class="text-muted">Trading Pal Documentation</span> |
13 | 56 | </div> |
14 | | - </div> |
| 57 | + </footer> |
15 | 58 |
|
16 | | - {% include footer.html %} |
17 | | - {% include js_files.html %} |
| 59 | + <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> |
| 60 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/prism.min.js"></script> |
| 61 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/components/prism-json.min.js"></script> |
18 | 62 | </body> |
19 | | - |
20 | 63 | </html> |
0 commit comments