freeCodeCamp/views/api/facebook.jade

28 lines
951 B
Plaintext
Raw Normal View History

2013-11-27 04:32:33 +00:00
extends ../layout
block content
.page-header
h1
i.fa.fa-facebook-square
| Facebook API
.btn-group.btn-group-justified
a.btn.btn-lg.btn-primary(href='https://developers.facebook.com/docs/graph-api/quickstart/', target='_blank')
i.fa.fa-check-square-o
| Quickstart
a.btn.btn-lg.btn-primary(href='https://developers.facebook.com/tools/explorer', target='_blank')
i.fa.fa-facebook
| Graph API Explorer
a.btn.btn-lg.btn-primary(href='https://developers.facebook.com/docs/graph-api/reference/', target='_blank')
i.fa.fa-code-fork
| API Reference
h3.text-primary /me
h4= me.name
h6 Username: #{me.username}
h6 Email: #{me.email}
h3.text-primary /me/friends
ul.list
for friend in friends
li
img.img-circle(src='https://graph.facebook.com/#{friend.id}/picture?type=normal', width=30, height=30)
a(href='http://facebook.com/#{friend.id}') #{friend.name}