{{ page.title }}
11 | {% if page.date %} 12 | 13 | {% endif %} 14 | 43 | {% endblock %} 44 | -------------------------------------------------------------------------------- /website/theme/templates/archives.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block title %}Archives{% endblock %} 3 | {% block headerimg %}{{ DEFAUT_HEADER_BG }}{% endblock %} 4 | 5 | {% block content %} 6 |Archives and tags
9 | 10 | 15 | 16 |-
17 | {% for article in articles %}
18 |
-
19 |
20 |
{{ article.title }}
21 | {{ article.date.strftime('%d.%m.%Y') }} 22 | 23 |
24 | {% endfor %}
25 |
{{ article.title }}
19 | 20 |
9 |
10 | This is an excerpt from the Python Data Science Handbook by Jake VanderPlas; Jupyter notebooks are available on GitHub.
11 |
13 | The text is released under the CC-BY-NC-ND license, and code is released under the MIT license. If you find this content useful, please consider supporting the work by buying the book! 14 |
15 |