freeCodeCamp/views/api/nyt.jade

35 lines
1.0 KiB
Plaintext
Raw Normal View History

extends ../layout
2013-12-10 02:04:40 +00:00
block content
.page-header
h1
i.fa.fa-building-o
2013-12-10 02:04:40 +00:00
| New York Times API
.btn-group.btn-group-justified
a.btn.btn-lg.btn-primary(href='http://developer.github.com/guides/getting-started/', target='_blank')
i.fa.fa-check-square-o
| Getting Started
a.btn.btn-lg.btn-primary(href='https://apigee.com/console/github', target='_blank')
i.fa.fa-laptop
| API Console
a.btn.btn-lg.btn-primary(href='http://developer.github.com/v3/', target='_blank')
i.fa.fa-file-text-o
| Documentation
h3 Young Adult Best Sellers
table.dataTable.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