17 lines
563 B
Plaintext
17 lines
563 B
Plaintext
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<%- partial('partial/styles') -%>
|
|
<title><%= config.title %> - <%= config.subtitle %></title>
|
|
<%_ if (config.keyword) { -%>
|
|
<meta name="keywords" content="<% config.keyword %>">
|
|
<%_ } -%>
|
|
<%_ if (config.description) { -%>
|
|
<meta name="description" content="<%= config.description %>">
|
|
<%_ } -%>
|
|
<%_ if (config.author) { -%>
|
|
<meta name="author" content="<%= config.author %>">
|
|
<%_ } -%>
|
|
</head>
|
|
|