2013-11-26 23:32:33 -05:00
|
|
|
extends ../layout
|
|
|
|
|
|
|
|
block content
|
|
|
|
.page-header
|
2013-12-12 02:21:39 -05:00
|
|
|
h2
|
|
|
|
i.fa.fa-facebook-square(style='color: #335397')
|
2013-12-07 22:15:11 -05:00
|
|
|
| Facebook API
|
2013-12-12 02:21:39 -05:00
|
|
|
|
2013-12-07 22:15:11 -05:00
|
|
|
.btn-group.btn-group-justified
|
2014-01-17 16:24:33 -05:00
|
|
|
a.btn.btn-success(href='https://developers.facebook.com/docs/graph-api/quickstart/', target='_blank')
|
2013-12-07 22:15:11 -05:00
|
|
|
i.fa.fa-check-square-o
|
|
|
|
| Quickstart
|
2014-01-17 16:24:33 -05:00
|
|
|
a.btn.btn-success(href='https://developers.facebook.com/tools/explorer', target='_blank')
|
2013-12-07 22:15:11 -05:00
|
|
|
i.fa.fa-facebook
|
|
|
|
| Graph API Explorer
|
2014-01-17 16:24:33 -05:00
|
|
|
a.btn.btn-success(href='https://developers.facebook.com/docs/graph-api/reference/', target='_blank')
|
2013-12-07 22:15:11 -05:00
|
|
|
i.fa.fa-code-fork
|
|
|
|
| API Reference
|
2014-01-17 16:24:33 -05:00
|
|
|
|
|
|
|
h2 My Info
|
2013-12-07 22:33:49 -05:00
|
|
|
h4= me.name
|
|
|
|
h6 Username: #{me.username}
|
|
|
|
h6 Email: #{me.email}
|
|
|
|
|
2014-01-17 16:24:33 -05:00
|
|
|
h2 List of my friends
|
2013-12-12 02:21:39 -05:00
|
|
|
ul.list-unstyled
|
2013-12-07 22:50:27 -05:00
|
|
|
for friend in friends
|
|
|
|
li
|
2013-12-12 02:21:39 -05:00
|
|
|
img(src='https://graph.facebook.com/#{friend.id}/picture?type=normal', width=30, height=30)
|
2013-12-07 22:50:27 -05:00
|
|
|
a(href='http://facebook.com/#{friend.id}') #{friend.name}
|