added news as partial, addded dealine extension news item

This commit is contained in:
Benjamin Jones 2020-07-29 15:04:47 +02:00
parent 18723a9942
commit e9559b35f2
4 changed files with 52 additions and 21 deletions

View File

@ -0,0 +1,21 @@
<h2>{{ site.data.translations.latest[page.lang]}}</h2>
<ul class="post-list">
{% for post in site.posts %}
{% if post.lang == page.lang %}
<li class="post-item">
<header class="post-header">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<h3 class="titlecase">
{% include utils/translated-date.html date=post.date lang=page.lang %}
</h3>
<!-- <h3>{{ post.date | date_to_string }}</h3> -->
</header>
<div class="post-content">
<span class="post-excerpt">{{ post.excerpt }}</span>
<a href="{{ post.url }}">{{ site.data.translations.readMore[page.lang]}} -></a>
</div>
</li>
{% endif %}
{% endfor %}
</ul>

View File

@ -0,0 +1,14 @@
---
layout: post
author: ReclaimFutures
title: Deadline Extended
ref: deadline-extension
date: 2020-06-07 10:00:00 +0200
lang: en
---
We've decided to extend the deadline of our call for proposals by 1 week, to give potential participants a little extra time to finish off their proposal in this especially tumultuous moment.
That makes the new deadline: **21st June 2020 00:00 ([AoE time](https://www.worldtimeserver.com/time-zones/aoe/))**
We also invite anyone that was hoping to submit a proposal that might not find time due to commitments to Black Lives Matter or other current social justice movements to <a href="mailto:info@reclaimfutures.org">get in touch</a> and we will try to facilitate a late submission.

View File

@ -0,0 +1,16 @@
---
layout: post
author: ReclaimFutures
title: Report de la date de proposition
ref: deadline-extension
date: 2020-06-07 10:00:00 +0200
lang: fr
categories: fr
---
Nous avons décidé de prolonger d'une semaine la date limite de notre appel à propositions afin de donner aux participants potentiels un peu plus de temps pour terminer leur proposition durant cette période particulièrement tumultueuse.
La nouvelle date limite est donc fixée au **21 juin 2020 00:00 ([heure AoE](https://time.is/fr/Anywhere%20on%20Earth))**
Nous invitons également toute personne qui voulait soumettre une proposition et qui pourrait ne pas trouver le temps en raison d'engagements envers Black Lives Matter ou d'autres mouvements de justice sociale à <a href="mailto:info@reclaimfutures.org">nous contacter</a> pour que nous puissions nous organiser pour traiter les propositions tardives.

View File

@ -13,26 +13,6 @@ ref: index
<div> <div>
<span class="intro">{{ intro | markdownify }}</span> <span class="intro">{{ intro | markdownify }}</span>
<h2>{{ site.data.translations.latest[page.lang]}}</h2> {% include common/news.html %}
<ul class="post-list">
{% for post in site.posts %}
{% if post.lang == page.lang %}
<li class="post-item">
<header class="post-header">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<h3 class="titlecase">
{% include utils/translated-date.html date=post.date lang=page.lang %}
</h3>
<!-- <h3>{{ post.date | date_to_string }}</h3> -->
</header>
<div class="post-content">
<span class="post-excerpt">{{ post.excerpt }}</span>
<a href="{{ post.url }}">{{ site.data.translations.readMore[page.lang]}} -></a>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
</div> </div>