This is now fix
I want to have custom date, in my language. For example, instead of
08 Feb 2015
, I could have08 Février 2015
. How can I change this, in my Jekyll website?My problem is that I am hosted by Github Pages, so no plugins is allowed.
PS: I check this questions, but it's wasn't ansewerd.
Also, my similar content is always redirected to the domain 0.0.7.222
, how can I fix this?
This is the code of related content;
<div class="related">
<h2>Contenu relié</h2>
<ul class="related-posts">
{% for post in site.related_posts limit:3 %}
<li>
<h3>
<a href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
<small>{% include custom_date_full_fr.html date = post.date %}</small>
</a>
</h3>
</li>
{% endfor %}
</ul>
</div>
From Lanyon theme.
Tanks