@skhemata/skhemata-blog
Version:
Skhemata Blog Web Component. This web component provides several sub components in addition to main component, allowing featured blogs, blog listing and blog post display.
28 lines (25 loc) • 539 B
HTML
<html lang="en-GB">
<head>
<meta charset="utf-8">
<style>
body {
background: #fafafa;
}
</style>
</head>
<body>
<div id="demo" style="width:960px;"></div>
<script type="module">
import { html, render } from 'lit-html';
import '../dist/skhemata-blog.js';
const title = 'Featured';
render(
html`
<skhemata-blog-featured blog-site-host="https://wp.skhemata.com"></skhemata-blog-featured>
`,
document.querySelector('#demo')
);
</script>
</body>
</html>