site/views/about.moon

33 lines
1.3 KiB
Plaintext
Raw Normal View History

2015-02-01 05:37:51 +00:00
import Widget from require "lapis.html"
class About extends Widget
content: =>
link rel: "stylesheet", href: "/static/css/about/main.css"
2015-02-01 06:05:42 +00:00
div class: "row panel", ->
div class: "col-md-4 bg_blur", ->
2015-02-01 06:11:32 +00:00
a href: "/hire", class: "follow_btn hidden-xs", "Hire me"
2015-02-01 05:37:51 +00:00
2015-02-01 06:05:42 +00:00
div class: "col-md-8 col-xs-12", ->
img src: @user.avatar_url, class: "img-thumbnail picture hidden-xs"
img src: @user.avatar_url, class: "img-thumbnail picture visible-xs picture_mob"
div class: "header", ->
h1 "Christine Dodrill"
span "I am a GitHub power user. I am constantly learning new languages and tools. I strongly believe in knowing many languages and ways to do things so I can pick the right tool for the job."
div class: "row nav", ->
div class: "col-md-4"
div class: "col-md-8 col-xs-12", style: "margin: 0px;padding: 0px;", ->
div class: "col-md-4 col-xs-4 well", title: "Number of public repositories", ->
2015-02-01 06:08:22 +00:00
i class: "fa fa-weixin fa-lg"
p @user.public_repos
2015-02-01 06:07:06 +00:00
div class: "col-md-4 col-xs-4 well", title: "Number of followers", ->
2015-02-01 06:08:22 +00:00
i class: "fa fa-heart-o fa-lg"
p @user.followers
2015-02-01 06:07:06 +00:00
div class: "col-md-4 col-xs-4 well", title: "Number of users following", ->
2015-02-01 06:08:22 +00:00
i class: "fa fa-thumbs-o-up fa-lg"
p @user.following