2015-02-01 08:17:40 +00:00
|
|
|
import Widget from require "lapis.html"
|
|
|
|
|
|
|
|
class Projects extends Widget
|
|
|
|
content: =>
|
|
|
|
h1 "My Projects"
|
|
|
|
|
2015-02-01 08:18:48 +00:00
|
|
|
element "table", class: "table table-striped", ->
|
2015-02-01 08:17:40 +00:00
|
|
|
tr ->
|
|
|
|
td "Name"
|
|
|
|
td "Description"
|
|
|
|
td "Language"
|
|
|
|
td "Star Count"
|
|
|
|
|
|
|
|
for _, repo in pairs @repos
|
|
|
|
tr ->
|
|
|
|
td ->
|
|
|
|
a href: repo.html_url, repo.name
|
|
|
|
td repo.description or ""
|
|
|
|
td repo.language
|
|
|
|
td repo.stargazers_count
|