mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
6b372fa6cd
Summary: Adds two new env vars GRIST_HIDE_UI_ELEMENTS and GRIST_PAGE_TITLE_SUFFIX which translate to values in GristLoadConfig that the server sends the client when loading. For checkin task https://gristlabs.getgrist.com/doc/check-ins/p/5#a1.s9.r1882.c19 Test Plan: Tested manually Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3449
16 lines
371 B
HTML
16 lines
371 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">
|
|
<!-- INSERT CUSTOM -->
|
|
<title>Account<!-- INSERT TITLE SUFFIX --></title>
|
|
</head>
|
|
<body>
|
|
<!-- INSERT CONFIG -->
|
|
<script src="account.bundle.js"></script>
|
|
</body>
|
|
</html>
|