-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
41 lines (38 loc) · 1.45 KB
/
news.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
---
layout: tailwind
title: blog | pengmaradi
key: TYPO3, CMS, wenentwickln
description: test of blog
---
{% for post in site.posts %}
{% capture post_count %} {{ post_count | plus: 1 }} {% endcapture %}
{% endfor %}
<section clsss="duration-1000 transition-all transform" x-intersect="$el.classList.add('fadeInUp')">
<div class="col-md-12">
<h1 class="page-header">TYPO3 Blog</h1>
<h3 class="post-subtitle">total: {{ post_count }}</h3>
<p class="post-meta"> </p>
</div>
</section>
<section clsss="duration-1000 transition-all transform" x-intersect="$el.classList.add('fadeInUp')">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
{% for post in site.posts %}
<div class="post-item rounded-lg shadow-lg p-4 marker:duration-1000 transition-all transform"
x-intersect="$el.classList.add('fadeInUp')">
<div class="panel {{post.class}} relative">
<div class="panel-heading">
{{post.title}}
</div>
<div class="panel-body">
<p>{{post.date}}</p>
<p>{{post.description}}</p>
</div>
<div class="panel-footer">
{{post.categories}}
</div>
<a class="absolute inset-0 text-transparent " href="{{post.url}}">More</a>
</div>
</div>
{% endfor %}
</div>
</section>