- Update all deps - Apply midwest changes - Convert all templates to JSX - Preact instead of Marko - Babel & Eslint
26 lines
794 B
JavaScript
26 lines
794 B
JavaScript
import Layout from './components/Layout.jsx';
|
|
|
|
export default ({ css, js }) => (
|
|
'<!doctype html>' + (
|
|
<html lang="en">
|
|
<head>
|
|
<title>Pomodoro</title>
|
|
<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" />
|
|
|
|
<link type="text/css" rel="stylesheet" href={`/css/public${css ? css.suffix : ''}.css`} />
|
|
</head>
|
|
|
|
<body>
|
|
<Layout />
|
|
|
|
<script src={`/js/app${js ? js.suffix : ''}.js`} />
|
|
</body>
|
|
</html>
|
|
)
|
|
);
|