Files
remark42/web/last-comments.ejs
T
Igor AdamenkoandUmputun 6f1b9037d5 Dark theme (#228)
* add with-theme hoc

* add dark theme styles for components

* add toggle theme button to the dev demo page

* add info about widget themes to README
2018-12-15 17:10:41 -06:00

42 lines
821 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>remark42 last comments</title>
<style>
body {
padding: 0;
margin: 0;
}
.container {
max-width: 400px;
margin: 40px;
}
</style>
</head>
<body>
<div class="container">
<div class="remark42__last-comments" data-max="50"></div>
</div>
<script>
var remark_config = {
site_id: 'remark',
};
(function() {
var d = document, s = d.createElement('script');
s.src = '/web/last-comments.js';
s.type = 'text/javascript';
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>
Please enable JavaScript to view the comments powered by Remark.
</noscript>
</body>
</html>