Skip to content

Commit 4f4de6e

Browse files
committed
Full design review.
1 parent 84aa096 commit 4f4de6e

File tree

7 files changed

+882
-381
lines changed

7 files changed

+882
-381
lines changed

_includes/tags.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
Tags:
1+
<span>Tags :</span>
22
<ul>
33
{% for tag in post.tags %}
4-
{% unless forloop.last %}
5-
<a href="tags.html#{{ tag }}" title="Voir les posts ayant le tag {{ tag }} ">{{ tag }}</a> ,
6-
{% else %}
7-
<a href="tags.html#{{ tag }}" title="Voir les posts ayant le tag {{ tag }} ">{{ tag }}</a>.
8-
{% endunless %}
4+
<li>
5+
<a href="tags.html#{{ tag }}" title="Voir les posts ayant le tag {{ tag }} ">{{ tag }}</a>
6+
</li>
97
{% endfor %}
108
</ul>

_layouts/default.html

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@
2424

2525
<div id="container">
2626
<header>
27-
<h1><a href="/"><img src="/public/img/pullrequest-logo.png" alt="PullRequest"/></a></h1>
27+
<h1><a href="/" title="Page d'accueil"><img src="/public/img/pullrequest-logo.png" alt="PullRequest"/></a></h1>
2828
</header>
2929

3030
<div id="main" role="main">
31-
{{ content }}
31+
<section id="content">
32+
{{ content }}
33+
</section>
3234

3335
<aside>
3436
<section id="about">
@@ -38,8 +40,13 @@ <h1>A propos</h1>
3840
<section id="follow">
3941
<h1>Suivez nous!</h1>
4042
<ul>
41-
<li><a href="http://twitter.com/pullrequest">Sur Twitter</a></li>
42-
<li><a rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/pullrequest/blog-posts">Via RSS</a></li>
43+
<li>
44+
<a href="http://twitter.com/pullrequest" class="twitter-follow-button" data-show-count="false" data-lang="fr">Follow @pullrequest</a>
45+
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
46+
</li>
47+
<li class="feed">
48+
<a rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/pullrequest/blog-posts">abonnement RSS</a>
49+
</li>
4350
</ul>
4451
</section>
4552
<section id="contribute">
@@ -61,18 +68,20 @@ <h1>Licence</h1>
6168
<section id="opensource">
6269
<h1>OpenSource</h1>
6370
<p>Les auteurs de PullRequest sont à l'origine, ou contributeurs, entre autre, de ces projets:</p>
64-
<a href="http://openscales.org">OpenScales</a>
65-
<a href="http://resthub.org">RestHub</a>
66-
<a href="https://github.com/loicfrering/LosoBundle">LosoBundle</a>
67-
<a href="https://github.com/loicfrering/losolib">LoSoLib</a>
68-
<a href="https://bitbucket.org/feugy/myth">Myth</a>
71+
<ul>
72+
<li><a href="http://openscales.org">OpenScales</a></li>
73+
<li><a href="http://resthub.org">RestHub</a></li>
74+
<li><a href="https://github.com/loicfrering/LosoBundle">LosoBundle</a></li>
75+
<li><a href="https://github.com/loicfrering/losolib">LoSoLib</a></li>
76+
<li><a href="https://bitbucket.org/feugy/myth">Myth</a></li>
77+
</ul>
6978
</section>
7079
</aside>
7180

7281
</div>
7382

7483
<footer>
75-
<small id="legal">© 2011 pullrequest.org</small>
84+
<small id="legal">© 2011 pullrequest.org</small>
7685
<small id="poweredby">Propulsé par <a href="https://github.com/mojombo/jekyll">Jekyll</a></small>
7786
</footer>
7887
</div>

_layouts/post.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
88
<p>
99
<time datetime="{{ post.date | date:'%Y-%m-%d' }}" pubdate="pubdate">{{ post.date | date_to_string }}</time>
1010
<span class="author"><a href="#">{{ post.author }}</a></span>
11+
<span class="comments"><a href="#comments" title="Voir les commentaires">Commentaires</a></span>
1112
</p>
1213
</header>
1314
{{ content }}

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
99
<p>
1010
<time datetime="{{ post.date | date:'%Y-%m-%d' }}" pubdate="pubdate">{{ post.date | date_to_string }}</time>
1111
<span class="author"><a href="#">{{ post.author }}</a></span>
12+
<span class="comments"><a href="{{ post.url }}#comments" title="Voir les commentaires">Commentaires</a></span>
1213
</p>
1314
</header>
1415
{{ post.content | truncatewords:60 }}
16+
<p><a href="{{ post.url }}" class="read-more" title="Lire l'article complet">Lire la suite</a></p>
1517
<footer>
16-
<p><a href="{{ post.url }}" class="read-more" title="Lire l'article complet">Lire la suite</a></p>j
1718
<section class="tags">
1819
{% include tags.html %}
1920
</section>

0 commit comments

Comments
 (0)