-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.17 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.17 KB
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
34
35
36
37
---
header:
overlay_image: "/images/theme.jpg"
paginate: 20
layout: archive
author_profile: true
feature_row:
- alt: "data bytes"
title: "🍪 Data Bytes"
excerpt: "Check out my collection of small blog posts about Data Science and Machine Learning!"
url: "/data-bytes/"
btn_class: "btn--primary"
btn_label: "Learn more"
---
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
{% include feature_row %}
<h3 class="archive__subtitle">Posts</h3>
{% assign items_grouped = paginator.posts | group_by: 'ref' %}
{% for group in items_grouped %}
{% if group.items.size > 1 %}
{% assign post = group.items | where: "lang",site.lang | first %}
{% else %}
{% assign post = group.items[0] %}
{% endif %}
{% include archive-single.html %}
{% endfor %}
{% include paginator.html %}