28 lines
868 B
HTML
28 lines
868 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
|
|
<title>About This App</title>
|
|
<link rel="stylesheet" href="./styles/ui.css">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons|Open+Sans:300" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="logo">
|
|
<img id="app-icon" alt="App icon" height="200">
|
|
</div>
|
|
<h2 class="title"></h2>
|
|
<span class="description"></span>
|
|
<div class="copyright"></div>
|
|
<table class="versions"></table>
|
|
<footer class="footer">
|
|
<div class="link bug-report-link"></div>
|
|
</footer>
|
|
|
|
<!-- https://github.com/electron/electron/issues/2863 -->
|
|
<script>var exports = exports || {};</script>
|
|
|
|
<script src="./src/renderer.js"></script>
|
|
</body>
|
|
</html>
|