File: file.rhtml

package info (click to toggle)
ruby-sdoc 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 848 kB
  • sloc: javascript: 4,418; ruby: 629; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,102 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
    <title><%= h file.name %></title>
    <meta charset="<%= @options.charset %>" />
    <%= include_template '_head.rhtml', {:rel_prefix => rel_prefix} %>
</head>

<body>
    <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 %>
        <h1>
            <%= h file.name %>
        </h1>
        <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>