mirror of
https://github.com/Afacanc38/afacanc38.github.io.git
synced 2024-11-14 07:45:06 +03:00
29 lines
No EOL
678 B
HTML
29 lines
No EOL
678 B
HTML
---
|
||
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> |