pomodoro/client/master.marko
2016-09-15 11:33:57 +02:00

32 lines
784 B
Plaintext

<!doctype html>
<html xml:lang="sv" lang="sv">
<head>
<title>Pomodoro</title>
<!-- Meta Tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="robots" content="index, follow" />
<meta name="description" content="Beta Pomodoro timer that stores your pomodors." />
<meta name="keywords" content="pomodoro,gtd,productivity" />
<meta name="author" content="Linus Miller" />
<!-- CSS -->
<link rel="stylesheet" href="/css/main${data.css && data.css.suffix}.css">
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/default-IE.css" />
<![endif]-->
</head>
<body>
<main>
<h1>Pomodoro Time!</h1>
<Timer />
</main>
<script src="/js/app${data.js && data.js.suffix}.js"></script>
</body>
</html>