blog.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. layout: blog
  3. title: Blog
  4. permalink: /blog/
  5. ---
  6. <div class="post-item">
  7. <h1><a href="https://medium.com/@jhchen/the-state-of-quill-and-2-0-fb38db7a59b9" title="The State of Quill and 2.0">The State of Quill and 2.0</a></h1>
  8. <div class="post-meta">
  9. <time datetime="2016-09-21">21 Sep 2016</time>
  10. <span> - <a href="https://twitter.com/jhchen" title="Jason Chen">Jason Chen</a></span>
  11. </div>
  12. <p>The 2.0 branch of Quill has officially been opened and development commenced. One design principle Quill embraces is to first make it possible, then make it easy. This allows the technical challenges to be proved out and provides clarity around use cases so that the right audience is designed for. Quill 1.0 pushed the boundaries on the former, and now 2.0 will focus on the latter.</p>
  13. <p>
  14. Let’s take a look at how we got here and where Quill is going!
  15. </p>
  16. <a class="more-link" title="Read more" href="https://medium.com/@jhchen/the-state-of-quill-and-2-0-fb38db7a59b9">Read more</a>
  17. <hr>
  18. </div>
  19. {% for post in site.posts %}
  20. {% unless post.draft %}
  21. <div class="post-item">
  22. <h1><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h1>
  23. <div class="post-meta">
  24. <time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date_to_string }}</time>
  25. <span> - <a href="https://twitter.com/jhchen" title="Jason Chen">Jason Chen</a></span>
  26. </div>
  27. {% if post.content contains '<!-- more -->' %}
  28. {{ post.content | split: '<!-- more -->' | first }}
  29. <a class="more-link" title="Read more" href="{{ post.url }}">Read more</a>
  30. {% else %}
  31. {{ post.content }}
  32. {% endif %}
  33. {% if forloop.last == false %}
  34. <hr>
  35. {% endif %}
  36. </div>
  37. {% endunless %}
  38. {% endfor %}