Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.16 KB

books.md

File metadata and controls

48 lines (37 loc) · 1.16 KB
title description image layout
Book of the Week
Book of the week at DataTalks.Club. Let's talk about books!
images/cover.jpg
page

Book of the Week

Each week we have a book author coming to DataTalks.Club to answer your questions about their book and, in general, about the topic of their book.

  • Register on DataTalks.Club{:target="_blank"}
  • Join the #book-of-the-week channel in our Slack
  • Ask as many questions as you'd like
  • The book authors answer questions from Monday till Thursday
  • On Friday, the authors decide who wins free copies of their book

Upcoming books

{% assign upcoming = site.books | where_exp: "book", "book.end > site.time" | sort: 'end' %}

{% for book in upcoming %} {% include book.html book=book %} {% endfor %}

Archive

{% assign past = site.books | where_exp: "book", "book.end < site.time" | sort: 'end' | reverse %}

    {% for book in past %}
  • {{ book.title }} by {% include authors.html authors=book.authors %} (from {{ book.start | date_to_string }} to {{ book.end | date_to_string }})
  • {% endfor %}