-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathfeatures_of_2025.html
More file actions
37 lines (34 loc) · 1.03 KB
/
features_of_2025.html
File metadata and controls
37 lines (34 loc) · 1.03 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
---
layout: page
title: Features of 2025
---
{% assign posts_of_the_year = "" | split: "" %}
{% for post in site.posts %}
{% assign year = post.date | date: "%Y" %}
{% if post.tags contains 'features' and year == '2025' %}
{% assign posts_of_the_year = posts_of_the_year | push: post %}
{% endif %}
{% endfor %}
{% assign posts_of_the_year = posts_of_the_year | reverse %}
<div class="carrousel-wrapper">
<div class="carrousel">
<ul class="bxslider">
{% for post in posts_of_the_year %}
<li><img class="slide" src="{{ site.baseurl }}{{ post.image }}" />
<h2 class="slideTitle">{{ post.title }}</h2>
</li>
{% endfor %}
</ul>
<div class="custom-pager">
{% for post in posts_of_the_year %}
<a data-slide-index="{{ forloop.index0 }}" href=""></a>
{% endfor %}
</div>
</div>
</div>
All features released in 2025:
<ul>
{% for post in posts_of_the_year %}
<li><a href="{{ post.url }}">{{ post.title }}</a> - {{ post.date | date: '%B %d, %Y' }}</li>
{% endfor %}
</ul>