-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (39 loc) · 1.39 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
---
layout: default
---
<section id="intro">
<div class="flex-row-between">
<h1>{{ site.greetings }}</h1>
<button title="Change theme" id="theme-toggle" onclick="modeSwitcher()">
<div></div>
</button>
</div>
<div class="bio">
{{ site.author.bio }} </br>
<a href="https://www.buymeacoffee.com/yucellmustafax" target="_blank">> Bana Kahve Ismarla ☕</a>
</div>
</section>
<div class="search-article">
<label for="search-input" aria-hidden="true">
<!-- Magnifier -->
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="rgba(128,128,128,0.8)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-search">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</label>
<input type="search" id="search-input" placeholder="Makale bul" aria-label="Search">
<ul id="search-results"></ul>
</div>
<section class="posts" id="Blog">
<h2>BLOG</h2>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%d.%m.%Y" }}</time>
</li>
{% endfor %}
</ul>
</section>