freeCodeCamp/views/api/nyt.jade

36 lines
1010 B
Plaintext
Raw Normal View History

extends ../layout
2013-12-10 02:04:40 +00:00
block content
.page-header
h2
i.fa.fa-building-o
2013-12-10 02:04:40 +00:00
| New York Times API
2013-12-10 02:04:40 +00:00
.btn-group.btn-group-justified
a.btn.btn-primary(href='http://developer.nytimes.com/page', target='_blank')
2013-12-10 02:04:40 +00:00
i.fa.fa-check-square-o
2013-12-10 07:16:54 +00:00
| Overview
a.btn.btn-primary(href='http://prototype.nytimes.com/gst/apitool/index.html', target='_blank')
2013-12-10 02:04:40 +00:00
i.fa.fa-laptop
| API Console
a.btn.btn-primary(href='http://developer.nytimes.com/docs', target='_blank')
2013-12-10 07:16:54 +00:00
i.fa.fa-code-fork
| API Endspoints
2013-12-10 02:04:40 +00:00
h4 Young Adult Best Sellers
table.table.table-striped.table-bordered
thead
tr
th Rank
th Title
th.hidden-xs Description
th Author
th.hidden-xs ISBN-13
tbody
for book in books
tr
td= book.rank
td= book.book_details[0].title
td.hidden-xs= book.book_details[0].description
td= book.book_details[0].author
td.hidden-xs= book.book_details[0].primary_isbn13