-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (50 loc) · 2.42 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
47
48
49
50
51
52
53
54
55
56
57
---
layout: default
image: "home-bg.jpg"
image_hash: "519d7460af34e87e71835178cf862552"
---
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/blog.css">
<div class="container">
<div class="intro">
<h2 class="text-center">Son Gönderilerim</h2>
</div>
<!-- Blog Section -->
<div id="blog" class="container mt-5">
<div class="row">
<div class="col-md-9 col-12">
{% assign months = "Ocak|Şubat|Mart|Nisan|Mayıs|Haziran|Temmuz|Ağustos|Eylül|Ekim|Kasım|Aralık" | split: "|" %}
{% for post in site.posts limit : 5 %}
{% assign m = post.date | date: "%-m" | minus: 1 %}
{% assign day = post.date | date: "%d" %}
{% assign month = months[m] %}
{% assign year = post.date | date: "%Y" %}
<div class="blog-post">
<a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}"><img src="{{site.baseurl}}/assets/img/pages/{{post.image}}?h={{post.image_hash}}" onerror="this.style.backgroundColor='#ccc'; this.style.objectFit='contain'; this.src='';"></a>
<div class="details">
<h5><a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">{{ post.title }}</a></h5>
<p class="meta"> {% if post.author %}
{{ post.author }}
{% else %}
{{ site.author }}
{% endif %} | {{ month }} {{ day }}, {{ year }} | {% include read_time.html content=post.content %}</p>
{% if post.subtitle %}
<p class="post-subtitle">{{ post.subtitle }}</p>
{% else %}
<p>{{ post.excerpt | strip_html | truncatewords: 40 }}</p>
{% endif %}
</div>
</div>
{% endfor %}
<div class="mx-auto">
<a class="btn btn-primary float-right" href="{{"/posts" | relative_url }}">Tüm Gönderiler →</a>
</div>
</div>
<div class="col-md-3 col-12">
<div class="info-pane">
<img src="https://avatars.githubusercontent.com/u/22801690?v=4" alt="Profile Photo">
<p>Merhabalar, ben Süleyman Poyraz, Nickimden anlayacağınız üzere biraz ters bir bilgisayar programcısıyım.</p>
<p>Gündem bloglarım, kullandığım yazılım dilleri, programlar ve işletim sistemleri ile ilgili notlarımı sitemde bulabilirsiniz.</p>
</div>
</div>
</div>
</div>