-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (97 loc) · 2.22 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
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
98
<html lang="en">
<head>
<link
rel="stylesheet"
href="style.css"
type="text/css"
/>
</head>
<body>
<header>
<select id="examples"></select>
<a
class="github-button"
href="https://github.com/agentcooper/swift-kotlin-typescript-rust"
data-icon="octicon-star"
aria-label="Star agentcooper/swift-kotlin-typescript-rust on GitHub"
>Star</a
>
</header>
<main>
<section id="swift">
<h2>
<img
class="icon"
src="https://swift.org/apple-touch-icon-114x114.png"
/>Swift
</h2>
<div>
<a
class="playground-link"
href="#"
target="_blank"
>Open in Playground</a
>
</div>
<div class="code"></div>
</section>
<section id="kotlin">
<h2>
<img
class="icon"
src="https://kotlinlang.org/assets/images/apple-touch-icon-114x114.png"
/>Kotlin
</h2>
<div>
<a
class="playground-link"
href="#"
target="_blank"
>Open in Playground</a
>
</div>
<div class="code"></div>
</section>
<section id="typescript">
<h2>
<img
class="icon"
src="https://www.typescriptlang.org/icons/icon-96x96.png"
/>TypeScript
</h2>
<div>
<a
class="playground-link"
href="#"
target="_blank"
>Open in Playground</a
>
</div>
<div class="code"></div>
</section>
<section id="rust">
<h2>
<img
class="icon"
src="https://www.rust-lang.org/static/images/favicon.ico"
/>Rust
</h2>
<div>
<a
class="playground-link"
href="#"
target="_blank"
>Open in Playground</a
>
</div>
<div class="code"></div>
</section>
</main>
<script src="src/index.ts"></script>
<script
async
defer
src="https://buttons.github.io/buttons.js"
></script>
</body>
</html>