added support for deep route caching, settings cache, template optim

This commit is contained in:
Wyatt Johnson
2017-12-05 11:17:44 -07:00
parent 001beb7a5b
commit d7302e4b3c
19 changed files with 269 additions and 100 deletions
+6 -7
View File
@@ -6,16 +6,15 @@
<link rel="stylesheet" type="text/css" href="<%= STATIC_URL %>client/embed/stream/default.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<% if (locals.customCssUrl) { %>
<link href="<%= customCssUrl %>" rel="stylesheet" type="text/css">
<% } %>
<% if (data != null) { %>
<script id="data" type="application/json"><%- JSON.stringify(data) %></script>
<% } %>
<%_ if (locals.customCssUrl) { _%>
<link href="<%= customCssUrl %>" rel="stylesheet" type="text/css">
<%_ } _%>
<%_ if (data != null) { _%>
<script id="data" type="application/json"><%- JSON.stringify(data) %></script>
<%_ } _%>
<base href="<%= BASE_URL %>"/>
</head>
<body>
<div id="talk-embed-stream-container"></div>
<script src="<%= STATIC_URL %>client/embed/stream/bundle.js"></script>
</body>