-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (38 loc) · 1.93 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
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Copy This!</title>
<script src="main.js" defer></script>
<link rel="stylesheet" href="main.css">
<title>Copy This</title>
<meta name="description" content="Copy Text or Code snippets with just a link.">
<meta property="og:url" content="https://copy-this.vercel.app/">
<meta property="og:type" content="website">
<meta property="og:title" content="Copy This">
<meta property="og:description" content="Copy Text or Code snippets with just a link.">
<meta property="og:image" content="/assets/og.png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="copy-this.vercel.app">
<meta property="twitter:url" content="https://copy-this.vercel.app/">
<meta name="twitter:title" content="Copy This">
<meta name="twitter:description" content="Copy Text or Code snippets with just a link.">
<meta name="twitter:image" content="/assets/og.png">
</head>
<body>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/go.min.js"></script>
<a target="_blank" href="https://github.com/grafaffel/copy-this/"><img class="github-logo"
src="/assets/github-logo.svg" alt="GitHub Logo"></a>
<dialog id="create-dialog">
<code><textarea spellcheck="false" name="code" id="code-input"></textarea></code>
</dialog>
<div class="toast">Copied!</div>
<p>Copy This!</p>
<div class="spacer"></div>
<code id="code-preview" title="Click to copy!
Right click to edit">Add ?text=your-text to copy some text!</code>
</body>
</html>