29 lines
759 B
HTML
29 lines
759 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>OliveTin</title>
|
|
<link rel = "stylesheet" type = "text/css" href = "style.css" />
|
|
<link rel = "shortcut icon" type = "image/png" href = "OliveTinLogo.png" />
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<div class = "group" id = "rootGroup" />
|
|
</main>
|
|
<footer>
|
|
<p><img src = "OliveTinLogo.png" height = "1em" class = "logo" /> <a href = "http://github.com/jamesread/OliveTin" target = "_new">OliveTin</a></p>
|
|
</footer>
|
|
|
|
<template id = "tplActionButton">
|
|
<p><span class = "icon">💩</span></p>
|
|
<p role = "title" class = "title">Untitled Button</p>
|
|
</template>
|
|
|
|
<script type = "module" src = "main.js"></script>
|
|
</body>
|
|
</html>
|