Repository URL to install this package:
|
Version:
1.0.1 ▾
|
@doodle/templating
/
head.ejs
|
|---|
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
<%= title %>
</title>
<link rel="canonical" href="https://<%= host %>/" />
<link rel="manifest" href="<%= assetsUrl %>/manifest.json">
<link rel="shortcut icon" type="image/x-icon" href="<%= assetsUrl %>/favicon.ico">
<% for(let style of styles) { %>
<link rel="stylesheet" href="<%= style %>">
<% } %>
<% for(let partial of head) { %>
<%- include(partial); %>
<% } %>
</head>