File: search_index.rhtml

package info (click to toggle)
ruby-sdoc 2.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 968 kB
  • sloc: javascript: 4,455; ruby: 629; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
<head>
    <title>File Index</title>
    <meta name="viewport" content="width=device-width,initial-scale=1">
</head>
    <body>
    <% @files.each do |file| %>
      <a href="../<%= file.path %>"><%= file.relative_name %></a>
    <% end %>
    </body>
</html>