-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
56 lines (53 loc) · 1.98 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/css.css?v=1.0.3">
<link rel="stylesheet" href="css/theme-dark.css?v=1.0.3">
<!--
Electron - Line needed in order to script imports to work.
Need to be added before all JS files are loaded.
-->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="js/stash.min.js"></script>
<script type="text/javascript" src="js/aaig.js?v=1.0.3"></script>
<script type="text/javascript">
// Electron - Line needed in order to script imports to work.
// Need to be added after all JS files are loaded.
if (window.module) module = window.module;
// Common tool routines
var device = aaig.getDevice(true);
$(function(){
aaig.loadConfigs();
aaig.loadTheme();
aaig.closeAboutWindowOnEscEvent();
aaig.loadLanguage(true);
})
</script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">
<img class="brand" alt="Brand" src="favicons/brand.png" />
<span class="title l-main-title">Ace Attorney Image Generator</span>
</a>
</div>
</div>
</nav>
<div class="container-fluid" style="text-align: center; color: #777">
<p class="version l-version">v1.0.3</p>
<p class="description l-about-description"> </p>
<a href="#" onclick="aaig.openPageAboutThisSoftware()" class="l-about-github-page"> </a>
</div>
<footer class="footer">
<div class="container">
<p class="text-muted">© 2017 - Solid One</p>
</div>
</footer>
</body>
</html>