-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
51 lines (40 loc) · 1.38 KB
/
index.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: default
title: Home
excerpt: "Accessible and informed coverage of the latest AI news and trends"
image:
feature: assets/img/logo.webp
small: true
---
{% if page.url == "/" %}
{% include home-jumbo.html %}
{% endif %}
<div class="row">
<div class="col-md-8" id="allposts">
<h6 class="font1 fancy-title text-uppercase">
<span>Latest</span>
</h6>
<div class="row mt-3 cardrecent">
{% if page.url == "/" %}
{% for post in site.categories.digests limit: 1 %}
<div class="col-md-6 mb-30">
{% include themecard.html %}
</div>
{% endfor %}
{% endif %}
{% for post in paginator.posts %}
{% unless post.highlight == true %}
{% unless post.categories contains "digests" %}
<div class="col-md-6 {% if value == 0 %} evencol {% endif %} mb-30">
{% include themecard.html %}
</div>
{% endunless %}
{% endunless %}
{% endfor %}
</div>
{% include pagination.html %}
</div>
<div class="col-md-4">
{% include sidebar.html %}
</div>
</div>