-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (29 loc) · 1.1 KB
/
index.html
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
---
layout: default
---
<div class="home">
<h1 class="page-heading">RFCs</h1>
<div class="alert-rc">
<p>
<strong>Atenção</strong>: ainda que as traduções estejam sendo feito com cuidado,
as URLs, a aparêcia entre outro poderão mudar nos próximos meses. Acompanhe o
a situação do desenvolvimento no <a href="https://github.com/webiwg/rfc-pt">repositório
do projeto ↗</a>.
</p>
</div>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{% include date-portugues.html date=post.date %}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a>
</h2>
<p>
{% if post.isDraft %}<strong>(Rascunho de tradução)</strong>{% endif %}
{% if post.isReleaseCandidate %}<strong>(Tradução pré-lançamento)</strong>{% endif %}
{{ post.description }}</p>
</li>
{% endfor %}
</ul>
<!--<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>-->
</div>