Initial website

This commit is contained in:
Deon George
2018-09-03 17:41:16 +10:00
commit fd1bd20c85
238 changed files with 20819 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<% if (config.pwa) { %>
<%
var icon = config.pwa.manifest.body.icons.find(icon => icon.sizes === '152x152');
%>
<% if (icon) { %>
<link rel="icon" href="/<%= icon.src %>" />
<link rel="apple-touch-icon" href="/<%= icon.src %>" />
<meta name="msapplication-TileImage" content="/<%= icon.src %>" />
<% } %>
<meta name="msapplication-TileColor" content="<%= theme.customize.theme_color %>" />
<meta name="theme-color" content="<%= theme.customize.theme_color %>" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="<%= config.pwa.manifest.body.name %>" />
<% } %>