Sha256: 976fcb47a95ab581bf6581a271b4ea1de615e10a58969118a814d8d3dbafcb22

Contents?: true

Size: 869 Bytes

Versions: 3

Compression:

Stored size: 869 Bytes

Contents

<% page_title "Page Not Found" %>

<%# 
  Note that we have to clear out the existing contents of
  the functions and html_head content because you can have
  an error occur in the view after stuff has been already
  set in those variables
%>

<% @content_for_functions = "" %>
<%= content_for :functions, "<h1>#{ page_title }</h1>".html_safe %>

<% @content_for_html_head = "" %>
<%= content_for :html_head do %>
  <style type="text/css">
    .cms_error {
      overflow: auto;
      padding: 10px;
    }
    .cms_error h2 {
      font-size: 18px;
      font-weight: bold;
      line-height: 18px;
      margin-bottom: 5px;
    }
    .cms_error pre {
      font-family: "Monaco", monospace;
      font-size: 12px;
      line-height: 12px;
      margin-bottom: 20px;
    }
  </style>
<% end %>

<div class="cms_error">
  <h2>There is no page at <%= @path %></h2>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
browsercms-3.5.7 app/views/cms/content/no_page.html.erb
browsercms-3.5.6 app/views/cms/content/no_page.html.erb
browsercms-3.5.5 app/views/cms/content/no_page.html.erb