|
3 | 3 |
|
4 | 4 | <head> |
5 | 5 | <meta charset="utf-8"> |
6 | | - <title>{{page-title}}</title> |
| 6 | + <title>{{fsdocs-page-title}}</title> |
7 | 7 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
8 | | - <meta name="author" content="{{authors}}"> |
| 8 | + <meta name="author" content="{{fsdocs-authors}}"> |
9 | 9 |
|
10 | 10 | <link rel="stylesheet" id="theme_link" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.3.1/materia/bootstrap.min.css"> |
11 | | - <script src="https://code.jquery.com/jquery-3.4.1.min.js" ></script> |
| 11 | + <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> |
12 | 12 | <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> |
13 | 13 |
|
14 | 14 | <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> |
15 | 15 | <!-- <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML"></script> --> |
16 | 16 |
|
17 | | - <link type="text/css" rel="stylesheet" href="{{root}}/content/navbar-fixed-left.css" /> |
18 | | - <link type="text/css" rel="stylesheet" href="{{root}}/content/fsdocs-style.css" /> |
19 | | - <script type="text/javascript" src="{{root}}/content/fsdocs-tips.js"></script> |
| 17 | + <link type="text/css" rel="stylesheet" href="{{root}}content/navbar-{{fsdocs-navbar-position}}.css" /> |
| 18 | + <link type="text/css" rel="stylesheet" href="{{root}}content/fsdocs-style.css" /> |
| 19 | + <link type="text/css" rel="stylesheet" href="{{root}}content/fsdocs-custom.css" /> |
| 20 | + <script type="text/javascript" src="{{root}}content/fsdocs-tips.js"></script> |
20 | 21 | <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> |
21 | 22 | <!--[if lt IE 9]> |
22 | 23 | <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> |
|
28 | 29 | </head> |
29 | 30 |
|
30 | 31 | <body> |
31 | | - <nav class="navbar navbar-expand-md navbar-light bg-secondary fixed-left"> |
| 32 | + <nav class="navbar navbar-expand-md navbar-light bg-secondary {{fsdocs-navbar-position}}" id="fsdocs-menu"> |
32 | 33 | <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation"> |
33 | 34 | <span class="navbar-toggler-icon"></span> |
34 | 35 | </button> |
35 | 36 | <div class="collapse navbar-collapse" id="navbarsExampleDefault"> |
36 | | - <a class="navbar-brand" href="{{root}}">{{project-name}}</a> |
37 | | - <a href="{{root}}"><img src="{{root}}/img/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" /></a> |
| 37 | + <a href="{{fsdocs-logo-link}}"><img id="fsdocs-logo" src="{{fsdocs-logo-src}}" /></a> |
38 | 38 | <!-- BEGIN SEARCH BOX: this adds support for the search box --> |
39 | 39 | <div id="header"> |
40 | | - <div class="searchbox"> |
| 40 | + <div class="searchbox" id="fsdocs-searchbox"> |
41 | 41 | <label for="search-by"> |
42 | 42 | <i class="fas fa-search"></i> |
43 | 43 | </label> |
|
50 | 50 |
|
51 | 51 | <!-- END SEARCH BOX: this adds support for the search box --> |
52 | 52 | <ul class="navbar-nav"> |
53 | | - <li class="nav-item"><a class="nav-link" href="{{repository-url}}">Source on GitHub</a></li> |
54 | | - {{list-of-namespaces}} |
| 53 | + <li class="nav-header">Links</li> |
| 54 | + <li class="nav-item" id="fsdocs-license-link"><a class="nav-link" href="{{fsdocs-license-link}}">License (Apache 2.0)</a></li> |
| 55 | + <li class="nav-item" id="fsdocs-release-notes-link"><a class="nav-link" href="{{fsdocs-release-notes-link}}">Release Notes</a></li> |
| 56 | + <li class="nav-item" id="fsdocs-repository-link"><a class="nav-link" href="{{fsdocs-repository-link}}">Source Repository</a></li> |
| 57 | + {{fsdocs-list-of-documents}} |
| 58 | + {{fsdocs-list-of-namespaces}} |
55 | 59 | </ul> |
56 | 60 | </div> |
57 | 61 | </nav> |
58 | | - <div class="container" id="main"> |
59 | | - {{document}} |
60 | | - {{tooltips}} |
61 | | - </div> |
62 | | - <a href="{{repository-url}}"> |
63 | | - <img style="position: absolute; top: 0; right: 0; border: 0;" |
64 | | - src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"> |
65 | | - </a> |
| 62 | + <div class="container"> |
| 63 | + <div class="masthead"> |
| 64 | + <h3 class="muted" href="{{fsdocs-collection-name-link}}">{{fsdocs-collection-name}}</h3> |
| 65 | + </div> |
| 66 | + <hr /> |
| 67 | + <div class="container" id="fsdocs-main"> |
| 68 | + {{fsdocs-content}} |
| 69 | + {{fsdocs-tooltips}} |
| 70 | + </div> |
66 | 71 |
|
67 | | - <!-- BEGIN SEARCH BOX: this adds support for the search box --> |
68 | | - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/JavaScript-autoComplete/1.0.4/auto-complete.css" /> |
69 | | - <script type="text/javascript">var fsdocs_search_baseurl = '{{root}}'</script> |
70 | | - <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lunr.js/2.3.8/lunr.min.js"></script> |
71 | | - <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/JavaScript-autoComplete/1.0.4/auto-complete.min.js"></script> |
72 | | - <script type="text/javascript" src="{{root}}/content/fsdocs-search.js"></script> |
73 | | - <!-- END SEARCH BOX: this adds support for the search box --> |
| 72 | + <!-- BEGIN SEARCH BOX: this adds support for the search box --> |
| 73 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/JavaScript-autoComplete/1.0.4/auto-complete.css" /> |
| 74 | + <script type="text/javascript">var fsdocs_search_baseurl = '{{root}}'</script> |
| 75 | + <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lunr.js/2.3.8/lunr.min.js"></script> |
| 76 | + <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/JavaScript-autoComplete/1.0.4/auto-complete.min.js"></script> |
| 77 | + <script type="text/javascript" src="{{root}}content/fsdocs-search.js"></script> |
| 78 | + <!-- END SEARCH BOX: this adds support for the search box --> |
| 79 | + </div> |
74 | 80 | </body> |
75 | 81 |
|
76 | 82 | </html> |
|
0 commit comments