mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
975eed8564
Summary: A check for old browsers and a Grist favicon were not available in grist-core, leaving harmless but distracting errors in logs. This adds them. Test Plan: checked manually Reviewers: georgegevoian Reviewed By: georgegevoian Subscribers: jarek Differential Revision: https://phab.getgrist.com/D3207
16 lines
343 B
HTML
16 lines
343 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8">
|
|
<!-- INSERT BASE -->
|
|
<link rel="icon" type="image/x-icon" href="icons/favicon.png" />
|
|
<link rel="stylesheet" href="icons/icons.css">
|
|
<title>Grist</title>
|
|
</head>
|
|
<body>
|
|
<!-- INSERT ERROR -->
|
|
<!-- INSERT CONFIG -->
|
|
<script src="errorPages.bundle.js"></script>
|
|
</body>
|
|
</html>
|