mirror of
https://github.com/davidmarkclements/0x.git
synced 2026-01-18 14:38:23 +00:00
9 lines
264 B
JavaScript
9 lines
264 B
JavaScript
'use strict'
|
|
|
|
module.exports = (render) => ({ title }) => render`
|
|
<h1 id=title class='sans-serif black-70 bg-white b lh-title measure-narrow measure-l f4 ml2 mt0 dib'>
|
|
<style>@media (max-width: 584px) {#title {display: none}}</style>
|
|
${title}
|
|
</h1>
|
|
`
|