-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (61 loc) · 1.98 KB
/
Copy pathindex.html
File metadata and controls
62 lines (61 loc) · 1.98 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: default
---
<main aria-label="content" class="main">
<div class="container">
{% include pinned.html %}
<div id="post-list" class="flex-container">
<div class="flex-card">
<h1>🐧 Linux</h1>
<div class="post-preview description">
<ul class="item">
{% for post in site.categories.linux limit:5 %} {% if post.url %}
<li><a class="" href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %} {% endfor %}
</ul>
</div>
</div>
<div class="flex-card">
<h1>📚 Kütüphane</h1>
<div class="description">
<ul class="item">
{% for post in site.categories.programlama limit:5 %} {% if post.url
%}
<li><a class="" href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %} {% endfor %}
</ul>
</div>
</div>
<div class="flex-card">
<h1>❤️ Program</h1>
<div class="description">
<ul class="item">
{% for post in site.categories.program limit:5 %} {% if post.url %}
<li><a class="" href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %} {% endfor %}
</ul>
</div>
</div>
<div class="flex-card">
<h1>🤖 Facebook</h1>
<div class="description">
<ul class="item">
{% for post in site.categories.facebook limit:5 %} {% if post.url %}
<li><a class="" href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %} {% endfor %}
</ul>
</div>
</div>
<div class="flex-card">
<h1>🎁 Tanıtım</h1>
<div class="description">
<ul class="item">
{% for post in site.categories.tavsiye limit:5 %} {% if post.url %}
<li><a class="" href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %} {% endfor %}
</ul>
</div>
</div>
</div>
</div>
</main>