semo-plugin-read
Version:
A tool which convert web pages to markdown and many other formats, based on Semo
28 lines (27 loc) • 524 B
HTML
<html>
<head>
<title>{{title}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- https://github.com/sindresorhus/github-markdown-css -->
<link rel="stylesheet" href="github-markdown.css" />
<style>
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>
</head>
<body>
<article class="markdown-body">
{{body | safe}}
</article>
</body>
</html>