-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
36 lines (32 loc) · 951 Bytes
/
todo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
layout: default
---
<section class="section is-small">
<div class="container">
<div class="content is-large">
<h2>Process long reading times more than 25 mins</h2>
<table class="table">
<tbody>
{% for post in site.posts %}
{% assign words = post.content | number_of_words %}
{% if words >= 9000 %}
<!-- Book review highlights that takes more than 15 minutes to read -->
<!-- 9000 = 360*25 -->
<tr>
<td>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<p class="is-hidden-tablet">
{% include info.html %}
</p>
</td>
<td class="has-text-right is-hidden-mobile">
{% include info.html %}
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
</div>
</div>
</section>