add description to posts on cercles, and a readmore link ref #6
This commit is contained in:
parent
40ecc20f50
commit
0b11093e97
2 changed files with 22 additions and 1 deletions
|
@ -43,6 +43,22 @@
|
||||||
.posts.list .post-date {
|
.posts.list .post-date {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
.post-list li .description {
|
||||||
|
font-size: .9em;
|
||||||
|
}
|
||||||
|
.post-list li .description .readmore {
|
||||||
|
padding: 0 10px;
|
||||||
|
border: 1px solid #90a959;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin-left: 10px;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-size: .8em;
|
||||||
|
}
|
||||||
|
.post-list li .description .readmore:hover {
|
||||||
|
color: #000;
|
||||||
|
background-color: #90a959;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.custom-footer {
|
.custom-footer {
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
|
|
|
@ -16,7 +16,12 @@ category: base
|
||||||
<h2 id="{{ this_word }}">{{ this_word }}</h2>
|
<h2 id="{{ this_word }}">{{ this_word }}</h2>
|
||||||
<ul class="post-list">
|
<ul class="post-list">
|
||||||
{% for post in site.categories[this_word] %}{% if post.title != null %}
|
{% for post in site.categories[this_word] %}{% if post.title != null %}
|
||||||
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%b %d, %Y" }}</time></span></a></li>
|
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%b %d, %Y" }}</time></span></a>
|
||||||
|
<div class="description">
|
||||||
|
{{ post.description | markdownify | remove: '<p>' | remove: '</p>' }}
|
||||||
|
<a href="{{ site.url }}{{ post.url }}" class="readmore">lire la suite</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
{% endif %}{% endfor %}
|
{% endif %}{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endunless %}{% endfor %}
|
{% endunless %}{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue