forked from cerc-io/laconic-console
* Rename dxos to laconic * Use react-ux * Change package scopes from dxos to cerc-io * Comment github CI publishing package * Rename dxos to laconic in config files * Rename Laconic.org to Laconic
21 lines
479 B
Plaintext
21 lines
479 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ title }}</title>
|
|
</head>
|
|
<body>
|
|
<div id="{{ container }}"></div>
|
|
|
|
<!-- Config loaded by client. -->
|
|
<script charset="utf-8" type="application/javascript">
|
|
window.__Lacnonic__ = { config: {{{ config }}} };
|
|
</script>
|
|
|
|
<!-- React bundles. -->
|
|
{{#scripts}}
|
|
<script charset="utf-8" type="application/javascript" src="{{src}}"></script>
|
|
{{/scripts}}
|
|
</body>
|
|
</html>
|