mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 14:15:50 -06:00
45 lines
No EOL
1.6 KiB
HTML
45 lines
No EOL
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Proton Native - React Native for the desktop, cross compatible</title>
|
|
<link rel="icon" href="images/favicon.png">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta title="description" content="React Native for the desktop, cross compatible">
|
|
<meta title="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
window.$docsify = {
|
|
name: 'Proton Native',
|
|
coverpage: true,
|
|
loadSidebar: true,
|
|
alias: {
|
|
'/.*/_sidebar.md': '/_sidebar.md'
|
|
},
|
|
plugins: [
|
|
function (hook) {
|
|
var footer = [
|
|
"<footer>",
|
|
"<div style='text-align:center'>",
|
|
"<img src='http://protonnative-af51.kxcdn.com/images/icon_black.svg' style='position:relative; top: 0px; padding-right: 10px;' width='5%' height='' alt='' />",
|
|
"Logo and graphics by <a href='https://twitter.com/elisiri_'>@elisiri_</a>",
|
|
"</div>",
|
|
"</footer>"
|
|
].join('')
|
|
|
|
hook.afterEach(function (html) {
|
|
return html + footer
|
|
})
|
|
}
|
|
]
|
|
}
|
|
</script>
|
|
<script src="//unpkg.com/docsify@4.7.1/lib/docsify.min.js"></script>
|
|
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
|
|
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
|
|
<script src="//unpkg.com/prismjs/components/prism-jsx.min.js"></script>
|
|
</body>
|
|
</html> |