42 lines
731 B
Text
42 lines
731 B
Text
|
%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
|
||
|
|
||
|
.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"))
|