Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Mar 6, 2025. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtilecode.html
More file actions
Latest commit
123 lines (104 loc) · 3.79 KB
/
Copy pathtilecode.html
File metadata and controls
123 lines (104 loc) · 3.79 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
# this is an empty front matter
---
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="utf-8">
<title>Microsoft TileCode</title>
<metaname="description" content="{{ site.github.project_tagline }}" />
<metaname="author" content="{{ site.github.owner_name }}">
<metaname="twitter:card" content="summary" />
<metaname="twitter:site" content="/" />
<metaname="twitter:title" content="{{ site.github.project_tagline }}" />
<metaname="twitter:description" content="{{ site.github.project_tagline }}" />
<metaname="twitter:image" content="./icon.png" />
<metaname="mobile-web-app-capable" content="yes">
<metaname="apple-mobile-web-app-capable" content="yes">
<metaname="apple-mobile-web-app-title" content="Microsoft TileCode">
<metaname="apple-mobile-web-app-status-bar-style" content="translucent-black">
<metaname="format-detection" content="telephone=no">
<metaname="application-name" content="Microsoft TileCode">
<metaname="theme-color" content="#000">
<metaproperty="og:title" content="Microsoft TileCode" />
<metaproperty="og:site_name" content="Microsoft TileCode" />
<metaproperty="og:description" content="{{ site.github.project_tagline }}" />
<metaproperty="og:image" content="./icon.png" />
<linkrel="apple-touch-icon" href="./icon.png">
<linkrel="icon" type="image/png" href="./icon.png">
<linkrel="shortcut icon" href="./icon.png">
<scripttype="text/javascript" src="./assets/js/loader.js?v={{ site.github.build_revision }}"></script>
<style>
body {
cursor: default;
background: black;
color: white;
font-family: monospace;
overflow: hidden;
font-size:14pt;
}
#simframe {
position: absolute;
top:0;
left:0;
padding:0px;
margin:0px;
width:100%;
height:calc(100%-2em);
visibility: inherit;
}
.embed {
background: transparent;
}
.nofooteriframe {
height:100%;
}
footer {
color: grey;
position: absolute;
bottom:0;
width:100%;
left:0;
z-index:100;
text-align: center;
font-size:1em;
margin-bottom:0.25em;
}
footera {
color: grey;
}
.embedfooter,
.embedfootera {
color: black;
}
</style>
</head>
<bodyid="root">
<iframetitle="simulator" id="simframe" sandbox="allow-popups allow-forms allow-scripts allow-same-origin"></iframe>
<divid="bottom"></div>
<footerid="footer">
<atarget="_blank" href="https://makecode.com/privacy">Privacy</a>
<atarget="_blank" href="https://makecode.com/termsofuse">Terms Of Use</a>
<atarget="_blank" href="https://makecode.com/trademarks">Trademarks</a>
© 2020 Microsoft
</footer>
<scripttype="text/javascript">
makeCodeRun({js: "./assets/js/binary.js?v={{ site.github.build_revision }}"});
if(window.location&&window.location.search){
varnoFooter=/nofooter=1/i.test(window.location.search);
varembed=/embed=1/i.test(window.location.search);
varroot=document.querySelector("#root");
if(noFooter){
varfooter=document.querySelector("#footer");
if(root)
root.className+=" nofooter";
if(footer)
footer.remove();
}
if(embed&&root){
root.className+=" embed";
}
}
</script>
</body>
</html>