1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- doctype html
- html
- head
- meta(http-equiv='X-UA-Compatible', content='IE=edge')
- meta(charset='UTF-8')
- meta(name='viewport', content='user-scalable=yes, width=device-width, initial-scale=1, maximum-scale=5')
- meta(name='theme-color', content='#1976d2')
- meta(name='msapplication-TileColor', content='#1976d2')
- meta(name='msapplication-TileImage', content='/favicons/mstile-150x150.png')
- title Wiki.js Setup
- //- Favicon
- link(rel='apple-touch-icon', sizes='180x180', href='/apple-touch-icon.png')
- link(rel='icon', type='image/png', sizes='192x192', href='/favicons/android-icon-192x192.png')
- link(rel='icon', type='image/png', sizes='32x32', href='/favicons/favicon-32x32.png')
- link(rel='icon', type='image/png', sizes='16x16', href='/favicons/favicon-16x16.png')
- link(rel='mask-icon', href='/favicons/safari-pinned-tab.svg', color='#1976d2')
- link(rel='manifest', href='/manifest.json')
- //- Site Lang
- script.
- var siteConfig = !{JSON.stringify({ title: config.title })}
- //- CSS
- <% for (var index in htmlWebpackPlugin.files.css) { %>
- <% if (htmlWebpackPlugin.files.cssIntegrity) { %>
- link(
- type='text/css'
- rel='stylesheet'
- href='<%= htmlWebpackPlugin.files.css[index] %>'
- integrity='<%= htmlWebpackPlugin.files.cssIntegrity[index] %>'
- crossorigin='<%= webpackConfig.output.crossOriginLoading %>'
- )
- <% } else { %>
- link(
- type='text/css'
- rel='stylesheet'
- href='<%= htmlWebpackPlugin.files.css[index] %>'
- )
- <% } %>
- <% } %>
- //- JS
- <% for (var index in htmlWebpackPlugin.files.js) { %>
- <% if (htmlWebpackPlugin.files.cssIntegrity) { %>
- script(
- type='text/javascript'
- src='<%= htmlWebpackPlugin.files.js[index] %>'
- integrity='<%= htmlWebpackPlugin.files.jsIntegrity[index] %>'
- crossorigin='<%= webpackConfig.output.crossOriginLoading %>'
- )
- <% } else { %>
- script(
- type='text/javascript'
- src='<%= htmlWebpackPlugin.files.js[index] %>'
- )
- <% } %>
- <% } %>
- body
- #root
- setup(telemetry-id=telemetryClientID, wiki-version=packageObj.version)
|