forked from cory/tildefriends
Cory McWilliams
f676cd937f
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3712 ed5197a5-7fde-0310-b194-c3ffbd925b24
24 lines
515 B
JavaScript
24 lines
515 B
JavaScript
async function main() {
|
|
var apps = await core.apps();
|
|
var doc = `<!DOCTYPE html>
|
|
<html>
|
|
<body style="background: #888">
|
|
<h1>Apps</h1>
|
|
<ul id="apps"></ul>
|
|
</body>
|
|
<script>
|
|
var apps = ${JSON.stringify(apps)};
|
|
for (let app of Object.keys(apps)) {
|
|
var li = document.getElementById('apps').appendChild(document.createElement('li'));
|
|
var a = document.createElement('a');
|
|
a.innerText = app;
|
|
a.href = '../' + app;
|
|
a.target = '_top';
|
|
li.appendChild(a);
|
|
}
|
|
</script>
|
|
</html>`
|
|
app.setDocument(doc);
|
|
}
|
|
|
|
main(); |