-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·48 lines (39 loc) · 2.5 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<meta property="og:title" content="Power Editor - modern & power text editor for Windows" />
<meta name="description" content="Power Editor is created for more comfortable code and text writing exlusively for Windows devices. Powerful code environment provide more productivity and new features based on UWP and WinUI user experience. Build the future with next Gen editor for Windows." />
<meta property="og:url" content="https://dmitryborodiy.github.io/PowerEditor/" />
<meta property="og:image" content="https://dmitryborodiy.github.io/PowerEditor/assets/LaptopScreenshot.png" />
<meta name="twitter:title" content="Power Editor - modern & power text editor for Windows" />
<meta name="twitter:description" content="Power Editor is created for more comfortable code and text writing exlusively for Windows devices. Powerful code environment provide more productivity and new features based on UWP and WinUI user experience. Build the future with next Gen editor for Windows." />
<meta name="twitter:image" content="https://dmitryborodiy.github.io/PowerEditor/assets/LaptopScreenshot.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:site_name" content="Power Editor" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VL5975GW7Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VL5975GW7Y');
</script>
<!-- ReactJS -->
<script src="https://unpkg.com/react@18/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js" crossorigin></script>
<!-- jQuery -->
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.js"></script>
<title>Power Editor - modern & power text editor for Windows</title>
<!-- Local -->
<script src="index.js"></script>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/splashscreen.css" />
</head>
<body id="rootLayout">
<img id="app-logo" height="100px" width="100px" src="assets/app-logo.png" />
</body>
</html>