welsonjs/app.hta
2020-07-31 15:50:24 +09:00

71 lines
3.0 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
<head>
<!--
@tag hta:application
@attribute ApplicationName Sets the name of the HTA.
@attribute Border [Thick]|Thin|None
@attribute BorderStyle [Normal]|Raised|Sunken|Complex|Static
@attribute InnerBorder [Yes]|No
@attribute Caption [Yes]|No
@attribute ContextMenu [Yes]|No
@attribute Icon Path/To/Icon.ico
@attribute MaximizeButton [Yes]|No
@attribute MinimizeButton [Yes]|No
@attribute Navigable [Yes]|No
@attribute Scroll [Auto]|Yes|No
@attribute ScrollFlat [Auto]|Yes|No
@attribute Selection [Yes]|No
@attribute ShowInTaskbar [Yes]|No
@attribute SingleInstance [Yes]|No
@attribute SysMenu [Yes]|No (Setting to No will remove close button)
@attribute WindowsState [Normal]|Minimize|Maximize
-->
<hta:application
ID="WELSONJS_WINDOW"
Version="0.1.2"
ApplicationName="WelsonJS"
Border="None"
BorderStyle="Static"
InnerBorder="No"
Caption="No"
Icon="app/favicon.ico"
ContextMenu="No"
MaximizeButton="No"
MinimizeButton="No"
Navigable="No"
Scroll="No"
ScrollFlat="Yes"
Selection="No"
ShowInTaskbar="Yes"
SingleInstance="Yes"
SysMenu="Yes"
WindowState="Normal"
Selection="No"
/>
<title>Welcome to WelsonJS application</title>
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<meta name="description" content="Welsonjs - Build a Windows desktop apps with JavaScript, HTML, and CSS based on WSH/HTA" />
<meta name="keywords" content="webapp" />
<meta name="author" content="gnh1201" />
<meta name="generator" content="welsonjs" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link type="image/x-icon" rel="icon" href="app/favicon.ico" />
<link type="image/png" rel="shortcut icon" href="app/assets/img/paper-plane-icon.png" />
<link type="text/css" rel="stylesheet" href="app/style.css" />
</head>
<body>
<div id="app">
<welsonjs-view></welsonjs-view>
</div>
<script src="app.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">//<!--<![CDATA[
init_window("webloader", [WELSONJS_WINDOW.commandLine], 800, 600);
//]]>--></script>
</body>
</html>