index.jade 440 B

123456789101112131415
  1. header
  2. h1 Welcome to Harp
  3. h3 Your local Development Server is Running!
  4. if projects == ""
  5. p You have no apps yet, but you are ready to create one!
  6. p Inside your apps directory, run <code>harp init myproject</code> and then <code>harp server myproject</code>.
  7. else
  8. h2 Your apps:
  9. ul.projects
  10. for project in projects
  11. li
  12. a(href="#{ project.localUrl }")
  13. h2.project-name= project.name
  14. code.project-path= project.localPath