Move font-family, background, color, margin, and transition from duplicated inline <style> blocks in each dev target into the CSS generator (base-css). Dev pages now only set page-specific padding. Also fixes hiccup target rendering the wrong font due to hiccup2 HTML-escaping quotes inside <style> tags, and adds missing <!DOCTYPE>.
16 lines
327 B
HTML
16 lines
327 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="/theme.css" />
|
|
<style>
|
|
body { padding: 2rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="/js/main.js"></script>
|
|
</body>
|
|
</html>
|