Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 144
Remove dependency on EJS#990
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| {{ headFileTopContent }} | ||
| <meta charset="utf-8"> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| <meta name="generator" content="{{ markBindVersion }}"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| <title>{{ title }}</title> | ||
| <link rel="stylesheet" href="{{ asset.bootstrap }}"> | ||
| <link rel="stylesheet" href="{{ asset.bootstrapVue }}"> | ||
| <link rel="stylesheet" href="{{ asset.fontAwesome }}"> | ||
| <link rel="stylesheet" href="{{ asset.glyphicons }}"> | ||
| <link rel="stylesheet" href="{{ asset.highlight }}"> | ||
| <link rel="stylesheet" href="{{ asset.markbind }}"> | ||
| {%- if asset.pluginLinks %} | ||
| {%- for link in asset.pluginLinks %} | ||
| {{ link }} | ||
| {%- endfor %} | ||
| {%- endif %} | ||
| <link rel="stylesheet" href="{{ asset.layoutStyle }}"> | ||
| {%- if siteNav %} | ||
| <link rel="stylesheet" href="{{ asset.siteNavCss }}"> | ||
| {%- endif %} | ||
| {%- if pageNav %} | ||
| <link rel="stylesheet" href="{{ asset.pageNavCss }}"> | ||
| {%- endif %} | ||
| {{ headFileBottomContent }} | ||
| {%- if faviconUrl %} | ||
| <link rel="icon" href="{{ faviconUrl }}"> | ||
| {%- endif %} | ||
| </head> | ||
| <body {% if pageNav %} data-spy="scroll" data-target="#page-nav" data-offset="100" {% endif %}> | ||
| <div id="app"> | ||
| {{ headerHtml }} | ||
| <div id="flex-body"> | ||
| {{ siteNavHtml }} | ||
| {{ content }} | ||
| {{ pageNavHtml }} | ||
| </div> | ||
| {{ footerHtml }} | ||
| </div> | ||
| </body> | ||
| <script src="{{ asset.vue }}"></script> | ||
| <script src="{{ asset.vueStrap }}"></script> | ||
| <script src="{{ asset.bootstrapUtilityJs }}"></script> | ||
| <script src="{{ asset.polyfillJs }}"></script> | ||
| <script src="{{ asset.bootstrapVueJs }}"></script> | ||
| <script> | ||
| const baseUrl = '{{ baseUrl }}' | ||
| const enableSearch = {{ enableSearch }} | ||
| </script> | ||
| <script src="{{ asset.setup }}"></script> | ||
| {%- if asset.externalScripts %} | ||
| {%- for script in asset.externalScripts %} | ||
| <script src="{{ script }}"></script> | ||
| {%- endfor %} | ||
| {%- endif %} | ||
| {%- if asset.pluginScripts %} | ||
| {%- for script in asset.pluginScripts %} | ||
| {{ script }} | ||
| {%- endfor %} | ||
| {%- endif %} | ||
| <script src="{{ asset.layoutScript }}"></script> | ||
| </html> |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.