@arcblock/result-html-pages

This package provide a function that generates html code for common error pages such as 404, 500, etc.

Usage no npm install needed!

<script type="module">
  import arcblockResultHtmlPages from 'https://cdn.skypack.dev/@arcblock/result-html-pages';
</script>

README

result-html-pages

This package provide a function that generates html code for common error pages such as 404, 500, etc.

Usage

const { render } = require('@arcblock/result-html-pages');
// or import { render } from '@arcblock/result-html-pages'

render({ status: '404' }) // => 404 page
render({ status: '403' }) // => 403 page
render({ status: '500' }) // => 500 page
render({ status: 'error' }) // => error page
render({ status: 'maintenance' }) // => maintenance page
render({ status: 'coming-soon' }) // => coming-soon page
render({ status: 'info', title: 'Here is a info message' }) // => info page
render({ title: '...', description: '...', icon: '...' }) // => custom result page