-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (34 loc) · 1.13 KB
/
index.html
File metadata and controls
46 lines (34 loc) · 1.13 KB
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
---
layout: default
title: BreizhBeans
description: Developer community from the westernmost corner of mainland France
---
<div id="posts">
<ul>
{% for post in site.posts limit:10 %}
<div class="post">
{% if post.author %}
{% assign author = site.authors[post.author] %}
<div class="author">
<div class="author-data">
<div class="author-name">by <a href="{{ author.web }}">{{ author.display_name }}</a></div>
<div class="author-social">
<a class="gplus" href="https://plus.google.com/{{ author.gplus }}?rel=author">Google+</a>
-
<a class="twitter" href="https://twitter.com/{{ author.twitter }}">Twitter</a>
</div>
</div>
<img src="http://www.gravatar.com/avatar/{{ author.gravatar }}?s=60">
</div>
{% endif %}
<a href="{{ post.url }}" class="link-to-post">
<h2>{{ post.title }}</h2>
</a>
<p class="meta">{{ post.date | date_to_string }}</p>
<div id="post">
{{ post.content }}
</div>
</div>
{% endfor %}
</ul>
</div>