We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Including templates in to the HEAD section of the page pushes all later HEAD content down to the body:
<head> <% include 'favicon' %> <title>sustainer.io<%- @title %></title> <meta name="viewport" content="width=device-width, initial-scale=1"> </head>
Results in this in the DOM upon display:
<head></head> <link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png"> <title>sustainer.io<%- @title %></title> <meta name="viewport" content="width=device-width, initial-scale=1">
Is this normal behavior?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Including templates in to the HEAD section of the page pushes all later HEAD content down to the body:
Results in this in the DOM upon display:
Is this normal behavior?
The text was updated successfully, but these errors were encountered: