389e3f5a8c
This allows manually changing the filename so that fiel header changes can be reflected on the CDN. E.g. if you turn on crossOrigin serving (CORS) the asset hash doesn't change, but the CDN cache needs to be broken in order to pickup the new header.
18 lines
269 B
Plaintext
18 lines
269 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<%= javascript_include_tag "application" %>
|
|
<%= yield_content :head %>
|
|
</head>
|
|
|
|
<body class="<%= page_classes %>">
|
|
|
|
<div id="main" role="main">
|
|
<%= yield %>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|