-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (85 loc) · 4.37 KB
/
index.html
File metadata and controls
93 lines (85 loc) · 4.37 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
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="canonical" href="https://cyphernotepad.com/">
<meta name="theme-color" content="#68217A">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Cypher Notepad is a text editor for users wanting quick and convenient encryption. Download and protect your data.">
<!--open graph-->
<meta property="og:type" content="website">
<meta property="og:title" content="Plain-text editor with Hybrid Encryption">
<meta property="og:description" content="Cypher Notepad is a text editor for users wanting quick and convenient encryption. Download and protect your data.">
<meta property="og:image" content="resource/logo_opengraph.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="312">
<meta property="og:image:height" content="312">
<meta property="og:url" content="https://cyphernotepad.com">
<!--social -->
<meta name="twitter:title" content="Cypher Notepad">
<meta name="twitter:card" content="Plain-text editor with Hybrid Encryption">
<meta name="twitter:description" content="Cypher Notepad is a text editor for users wanting quick and convenient encryption. Download and protect your data.">
<meta name="twitter:image" content="resource/logo_opengraph.png">
<meta name="twitter:domain" content="https://cyphernotepad.com">
<title>Cypher Notepad | Plain-text editor with Hybrid Encryption</title>
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css" integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/ionicons@4.5.10-0/dist/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" href="resource/icon.ico">
</head>
<body class="scrollable">
<div id="navigation_bar" class="navbar">
<div class="nav_content">
<div class="nav_logo">
<a href="https://cypher-notepad.github.io/" style="height:100%;">
<img id="img_nav_logo" alt='Cyper Notepad logo' class="noselect" src="resource/logo_main.png">
</a>
</div>
<div class="nav_buttons">
<button class="nav_button noselect" onclick="getIntroTab()">Introduction</button>
<button class="nav_button noselect" onclick="getDownloadTab()">Download</button>
<button id="nav_btn_doc" class="nav_button noselect" onclick="location.href='https:\/\/cyphernotepad.com/wiki/#/?coverpage=false';">Documentation</button>
<button class="nav_button noselect" onclick="getContactTab()">Contact</button>
</div>
<div id="nav_user">
<div id="nav_sponsor">
<script type='text/javascript' src='https://ko-fi.com/widgets/widget_2.js'></script>
<script type='text/javascript'>
kofiwidget2.init('Support Me', '#9730b0', 'M4M32TTK8');
kofiwidget2.draw();
</script>
</div>
<a href="https://github.com/Cypher-Notepad" target="_blank">
<div class="icon ion-logo-github icon-bounce nav-user-icon"></div>
</a>
</div>
</div>
</div>
<div id="main_div" class="div_main">
<div id="user_div" class="loggedin-div"></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/template" data-template>
<div id="-div_id-" class='-div_class-'>
<div class="box_header noselect">
<div class="box_header_content box_title">-title-</div>
<div class="box_header_content box_btn_close" onclick="removeDiv(this.parentNode.parentNode.id)">X</div>
</div>
<div id="-div_content_id-" class="box_content scrollable">
-box_content-
</div>
</div>
</script>
<script src="index.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-170613657-1">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-170613657-1');
</script>
</body>
</html>