forked from gelendir/gelendir.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts.html
47 lines (40 loc) · 1.15 KB
/
posts.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
---
title: Posts
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="{{ site.baseurl }}css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="{{ site.baseurl }}css/custom.css" type="text/css" />
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<p class="brand">Notes gelendir</p>
<ul class="nav">
<li>
<a href="{{ site.baseurl }}">Accueil</a>
</li>
<li>
<a href="{{ site.baseurl | append: 'posts.html' }}">Articles</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<header>
<h1>Articles</h1>
</header>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">({{ post.date || date_to_string }}) {{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</body>