Sha256: 8c47f78b5671d6a461303f76d4f640a892c767e89edf8400598e37f97ed9a328

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

<!DOCTYPE html>
<html lang="en">
<head>
    <title><%= h file.name %></title>
    <meta charset="<%= @options.charset %>" />
    <%= include_template '_head.rhtml', {:rel_prefix => rel_prefix, :tree_keys => [] } %>
</head>

<body>

    <%= include_template '_panel.rhtml' %>

    <div class="banner">
        <% if ENV['HORO_PROJECT_NAME'] %>
            <span><%= ERB::Util.html_escape(ENV['HORO_PROJECT_NAME']) %> <%= ERB::Util.html_escape(ENV['HORO_PROJECT_VERSION']) %></span><br />
        <% end %>
        <h2>
            <%= h file.name %>
        </h2>
        <ul class="files">
            <%
                github = github_url(file.relative_name) if options.github
            %>
            <li>
                <%= h file.relative_name %>
                <% if github %>
                    <a href="<%= github %>" target="_blank" class="github_url">on GitHub</a>
                <% end %>
            </li>
            <li>Last modified: <%= file.file_stat.mtime %></li>
        </ul>
    </div>

    <div id="bodyContent">
        <%= include_template '_context.rhtml', {:context => file, :rel_prefix => rel_prefix} %>
    </div>
  </body>
</html>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sdoc-2.0.4 lib/rdoc/generator/template/rails/file.rhtml
sdoc-2.0.3 lib/rdoc/generator/template/rails/file.rhtml
sdoc-2.0.2 lib/rdoc/generator/template/rails/file.rhtml