A standalone viewer for .grist
(and .csv
) files on your website
No special server is needed for grist-static
,
it works straight from a CDN or any standard web server.
Grist can also view .csv
files:
Learn more: github.com/gristlabs/grist-static
<!doctype html>
<html>
<head>
<meta charset="utf8">
<script src="https://grist-static.com/latest.js"></script>
<title>100% browser-based Grist</title>
</head>
<body>
<div id="were-div"></div>
<script>
bootstrapGrist({
initialFile: 'weresheet.grist', // optional path to .grist
name: 'Werewolf Fact Sheet', // optional name
elementId: 'were-div', // optional element name
singlePage: true // optional minimalist style
});
</script>
</body>
</html>