freeCodeCamp/views/api/instagram.jade

71 lines
1.7 KiB
Plaintext
Raw Normal View History

2014-04-22 18:51:35 +00:00
extends ../layout
block content
.page-header
h2
2014-06-05 15:58:01 +00:00
i.fa.fa-instagram(style='color: #517fa4')
2014-04-22 18:51:35 +00:00
| Instagram API
.btn-group.btn-group-justified
a.btn.btn-primary(href='http://instagram.com/developer/', target='_blank')
i.fa.fa-check-square-o
| Overview
a.btn.btn-primary(href='https://github.com/teleportd/instagram-node', target='_blank')
i.fa.fa-laptop
2014-04-22 18:53:00 +00:00
| Node-Instagram Docs
2014-04-22 18:51:35 +00:00
a.btn.btn-primary(href='http://instagram.com/developer/endpoints/', target='_blank')
i.fa.fa-code-fork
| API Endpoints
br
p.lead Username Search for
2014-06-05 15:58:01 +00:00
strong richellemead
2014-04-22 18:51:35 +00:00
table.table.table-hover.table-bordered
thead
tr
th Picture
th Username
th Full Name
th Bio
tbody
for user in usernames
tr
td
img(src='#{user.profile_picture}', width='75', height='75')
td= user.username
td= user.full_name
td= user.bio
hr
p.lead User Search for ID
strong 175948269
2014-06-05 15:58:01 +00:00
.media
a.pull-left(href='http://instagram.com/#{userById.username}')
img.thumbnail(src='#{userById.profile_picture}', width='110', height='110')
.media-body
h4= userById.full_name
p= userById.bio
2014-04-22 18:51:35 +00:00
hr
2014-04-22 18:53:00 +00:00
p.lead
strong Popular Images
| on Instagram
2014-04-22 18:51:35 +00:00
.row
for image in popularImages
.col-xs-3
a.thumbnail(href='#{image.link}')
img(src='#{image.images.standard_resolution.url}', height='320px')
2014-06-05 15:58:01 +00:00
2014-04-22 18:51:35 +00:00
hr
p.lead
| My Recent
strong Media
.row
for image in myRecentMedia
.col-xs-3
a.thumbnail(href='#{image.link}')
img(src='#{image.images.standard_resolution.url}', height='320px')