-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (97 loc) · 4.51 KB
/
Copy pathindex.html
File metadata and controls
97 lines (97 loc) · 4.51 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="data/style/style.css">
<link rel="shortcut icon" href="data/image/favicon.ico">
<title>FreeLaunch homepage</title>
</head>
<body>
<div class="header">
<img src="data/image/logo.png" alt="FreeLaunch Logo" />
<strong>FreeLaunch</strong>
<strong id="title">FreeLaunch homepage</strong>
</div>
<div class="main">
<div class="toc">
<ul>
<li>
<table>
<tr>
<td>
<img src="data/image/en/uk_flag.png" width="48" height="48" alt="English" />
</td>
<td> </td>
<td>
<a href="index.ru.html"><img src="data/image/ru/ru_flag.png" width="48" height="48" alt="Русский" /></a>
</td>
</tr>
<tr>
<td colspan="3" class="downloadlink"><a href="https://github.com/FLaunch/FreeLaunch/releases/latest/download/FreeLaunch.zip" target="_blank"><div class="downloadbox">Download</div></a></td>
</tr>
</table>
</li>
</ul>
<ul>
<li><strong>About FreeLaunch</strong>
<ul>
<li><a href="en/features.html" target="iframe_main">Features</a></li>
<li><a href="en/contributors.html" target="iframe_main">Contributors</a></li>
<li><a href="license.txt" target="iframe_main">License</a></li>
</ul>
</li>
<li><strong>Development</strong>
<ul>
<li><a href="https://github.com/FLaunch/FreeLaunch/releases" target="_blank">Releases</a></li>
<li><a href="en/changelog.html" target="iframe_main">Changelog</a></li>
<li><a href="https://github.com/FLaunch/FreeLaunch" target="_blank">Source code</a></li>
<li><a href="https://github.com/FLaunch/FreeLaunch/issues" target="_blank">Issue tracker</a></li>
<li><a href="https://github.com/FLaunch/FreeLaunch/discussions" target="_blank">Community</a></li>
</ul>
</li>
<li><strong>Documentation</strong>
<ul>
<li><a href="en/doc_mainwnd.html" target="iframe_main">Main window</a></li>
<li><a href="en/doc_settings.html" target="iframe_main">Settings window</a>
<ul>
<li><a href="en/doc_settingstab_general.html" target="iframe_main">General</a></li>
<li><a href="en/doc_settingstab_interface.html" target="iframe_main">Interface</a></li>
<li><a href="en/doc_settingstab_buttons.html" target="iframe_main">Buttons</a></li>
</ul>
</li>
<li><a href="en/doc_btnprops.html" target="iframe_main">Button properties</a>
<ul>
<li><a href="en/doc_btnprops_apps.html" target="iframe_main">For applications</a></li>
<li><a href="en/doc_btnprops_files.html" target="iframe_main">For files and folders</a></li>
<li><a href="en/doc_btnprops_iconsel.html" target="iframe_main">Icon select dialog</a></li>
</ul>
</li>
<li><a href="en/doc_renametab.html" target="iframe_main">Tab rename window</a></li>
<li><a href="en/hotkeys.html" target="iframe_main">Hotkeys</a></li>
</ul>
</li>
</ul>
</div>
<div class="frame">
<iframe src="en/features.html" name="iframe_main"></iframe>
<script type="text/javascript">
function resizeIframe() {
var contentDoc = (frameMain.contentWindow || frameMain.contentDocument);
if (contentDoc.document)
contentDoc = contentDoc.document;
document.getElementById('title').innerHTML = contentDoc.title;
}
frameMain = document.getElementsByName("iframe_main")[0];
if (frameMain.attachEvent) {
frameMain.attachEvent("onload", resizeIframe);
} else {
frameMain.onload=resizeIframe;
}
</script>
</div>
</div>
<div class="footer">
<strong>2008-<script>document.write(new Date().getFullYear())</script> © <a href="https://github.com/FLaunch/" target="_blank">FreeLaunch contributors</a></strong>
</div>
</body>
</html>