34 lines
897 B
HTML
34 lines
897 B
HTML
|
<!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>
|