-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlinux.html
More file actions
32 lines (29 loc) · 1.12 KB
/
linux.html
File metadata and controls
32 lines (29 loc) · 1.12 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
---
layout: page
title: MINLOG
description: I will soon become the " best developer "
background: '/img/bg-index.jpg'
---
<body>
<div style="margin-bottom: 20px;">
<span style="font-weight: bold; font-size: 1.5rem;">Posts</span>
</div>
<div style="display: flex; flex-wrap: wrap;" id="targetElement">
{% for post in site.posts %}
{% if post.category == 'linux' %}
<div class="card-custom">
<a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">
<img class="img-custom" src="{{ post.background}}"/>
</a>
<a style="font-weight: 600;" class="card-body-custom overflow-ellipsis" href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">{{ post.title }}</a>
<div style="display: flex; justify-content: space-evenly; border-top: 1px solid #e3e3e3;">
<span class="card-body-custom2">{{ post.date | date: '%Y.%m.%d' }}</span>
<span class="card-body-custom3">{{ post.subtitle }}</span>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<br>
<br>
<br>