afacanc38.github.io/_layouts/home.html

29 lines
678 B
HTML
Raw Normal View History

2021-10-29 19:08:49 +03:00
---
layout: page
---
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }} | Alperen'in web sitesi</title>
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
{{ content }}
<h1>Son yazılar</h1>
<ul class="posts">
{% for post in site.posts %}
<a href="{{ post.url }}">
<li>
<h2>{{ post.title }}</h2>
{{ post.excerpt }}
</li>
</a>
{% endfor %}
</ul>
<p class="yok">Başka içerik yok.</p>
</body>
</html>