add empty preferences windows

This commit is contained in:
Damillora 2017-07-03 22:55:37 +07:00
parent 69d122ea53
commit 66a371a0cf
2 changed files with 36 additions and 1 deletions

View File

@ -8,6 +8,8 @@
"electron": "^1.6.11"
},
"dependencies": {
"electron-debug": "^1.2.0"
"electron-debug": "^1.2.0",
"electron-settings": "^3.1.1",
"photonkit": "^0.1.2"
}
}

33
preferences.html Normal file
View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title>Photon</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="photon.css">
<!-- Electron Javascript -->
<script src="app.js" charset="utf-8"></script>
</head>
<body>
<!-- Wrap your entire app inside .window -->
<div class="window">
<!-- .toolbar-header sits at the top of your app -->
<header class="toolbar toolbar-header">
<h1 class="title">Photon</h1>
</header>
<!-- Your app's content goes inside .window-content -->
<div class="window-content">
<div class="padded-more">
<h1>Welcome to Photon</h1>
<p>
Thanks for downloading Photon. This is an example HTML page that's linked up to compiled Photon CSS, has the proper meta tags
and the HTML structure.
</p>
</div>
</div>
</div>
</body>
</html>