UNPKG

@skhemata/skhemata-faq

Version:

Skhemata FAQ Web Component. This web component provides website FAQ functionality with question and answer style of FAQ.

34 lines (31 loc) 690 B
<!doctype html> <html lang="en-GB"> <head> <meta charset="utf-8"> <style> body { background: #fafafa; } </style> </head> <body> <div id="demo"></div> <script type="module"> import { html, render } from 'lit-html'; import '../dist/skhemata-faq.js'; const title = 'Skhemata Faq'; render( html` <skhemata-faq faq-title="DevRadius Faq" api-wordpress="${JSON.stringify({url: 'https://wp.thrinacia.com/wp-json/wp/v2'})}" faq-page-path="demo" faq-post-path="post" posts-per-page="20" ></skhemata-faq> `, document.querySelector('#demo') ); </script> </body> </html>