Sha256: 12f4a674eba5e899ce80c6a8bf4c1176611035604505d5b3bed1702a64cace79

Contents?: true

Size: 950 Bytes

Versions: 1

Compression:

Stored size: 950 Bytes

Contents

<?xml version="1.0" encoding="UTF-8"?><%
@headers["Content-Type"] = "text/html"
unless @request.env['HTTP_ACCEPT'].nil?
  if @request.env['HTTP_ACCEPT'].include? "application/xhtml+xml"
    @headers["Content-Type"] = "application/xhtml+xml"
  end
end
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
  <head>
    <title>FeedReader</title>
    <script type="text/javascript"><!-- FOUC eliminator --></script>
  </head>
  <body>
    <div class="urlBox">
      <form action="<%= url_for :controller => 'feed',
                                :action => 'view' %>" method="get">
        Feed Url: <input type="text" name="feed_url" value="<%=
            @params['feed_url'] %>"/>
      </form>
      <strong><%= FeedTools.tidy_enabled? ? "Tidy Enabled" : "Tidy Disabled" %></strong>
    </div>
<%= @content_for_layout %>
  </body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
feedreader-0.2.3 app/views/layouts/common.rhtml