mirror of
				https://github.com/gristlabs/grist-core.git
				synced 2025-06-13 20:53:59 +00:00 
			
		
		
		
	Summary: Adds a new environment variable that allows for custom CSS to be included in all core static pages. Test Plan: Tested manually in grist-core. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3419
		
			
				
	
	
		
			16 lines
		
	
	
		
			341 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			341 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>Grist</title>
 | |
| </head>
 | |
| <body>
 | |
|   <!-- INSERT CONFIG -->
 | |
|   <script src="account.bundle.js"></script>
 | |
| </body>
 | |
| </html>
 |