19 lines
781 B
Text
19 lines
781 B
Text
<% # TODO: This file supports removed service worker functionality. We are keeping it around until mid-March to support previously downloaded service workers. %>
|
|
<% # After that, these contents can be moved right into application.html. %>
|
|
|
|
<!-- Start Bottom Shell -->
|
|
<% unless internal_navigation? %>
|
|
<% cache("footer-and-signup-modal-#{user_signed_in?}-#{ForemInstance.deployed_at}-#{SiteConfig.admin_action_taken_at&.rfc3339}", expires_in: 24.hours) do %>
|
|
<%= render "layouts/footer" %>
|
|
<%= render "layouts/signup_modal" unless user_signed_in? %>
|
|
<% end %>
|
|
<% if @shell %>
|
|
<script defer>
|
|
if (!document.title) {
|
|
document.title = document.getElementsByTagName("TITLE")[1].textContent
|
|
}
|
|
</script>
|
|
<% end %>
|
|
</body>
|
|
</html>
|
|
<% end %>
|