api.html.haml
933 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
%h3 API
.back_link
  = link_to help_path do
    ← to index
%hr
%ol
  %li
    %a{href: "#README"} README
  %li
    %a{href: "#projects"} Projects
  %li
    %a{href: "#users"} Users
  %li
    %a{href: "#issues"} Issues
.file_holder#README
  .file_title
    %i.icon-file
    README
  .file_content.wiki
    = preserve do
      = markdown File.read(Rails.root.join("doc", "api", "README.md"))
%br
.file_holder#projects
  .file_title
    %i.icon-file
    Projects
  .file_content.wiki
    = preserve do
      = markdown File.read(Rails.root.join("doc", "api", "projects.md"))
%br
.file_holder#users
  .file_title
    %i.icon-file
    Users
  .file_content.wiki
    = preserve do
      = markdown File.read(Rails.root.join("doc", "api", "users.md"))
%br
.file_holder#issues
  .file_title
    %i.icon-file
    Issues
  .file_content.wiki
    = preserve do
      = markdown File.read(Rails.root.join("doc", "api", "issues.md"))