Skip to content

Commit fcfeae8

Browse files
committed
Fix human errors under _includes
Signed-off-by: Sora Morimoto <[email protected]>
1 parent f8ab633 commit fcfeae8

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

_includes/proposals.html

+8-12
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,24 @@ <h3>{{ proposals["title"] }}</h3>
1818
<ul class="featurelist__legend__tags">
1919
<li>
2020
{{ proposals["how-to-read"]["tags"]["last-presented"] }}:
21-
<div class="featurelist__item__presented featurelist-item-tag">
22-
<a
23-
href="{{ presentation.url }}"
24-
title='{{ proposals["last-presented-alt"] }}'
21+
<div class="featurelist__item__presented featurelist__item__tag">
22+
<a title='{{ proposals["last-presented-alt"] }}'
2523
>{{ proposals["how-to-read"]["tags"]["last-presented-fake-date"]
2624
}}</a
2725
>
2826
</div>
2927
</li>
3028
<li>
3129
{{ proposals["how-to-read"]["tags"]["tests"] }}:
32-
<div class="featurelist__item__tests featurelist-item-tag">
30+
<div class="featurelist__item__tests featurelist__item__tag">
3331
<a title='{{ proposals["tests-alt"] }}'>
3432
{{ proposals["tests"] }}
3533
</a>
3634
</div>
3735
</li>
3836
<li>
3937
{{ proposals["how-to-read"]["tags"]["spec"] }}:
40-
<div class="featurelist__item__spec featurelist-item-tag">
38+
<div class="featurelist__item__spec featurelist__item__tag">
4139
<a title='{{ proposals["specification-alt"] }}'>
4240
{{ proposals["specification"] }}
4341
</a>
@@ -53,15 +51,13 @@ <h3>{{ proposals["title"] }}</h3>
5351
<div class="featurelist__item__intro">
5452
<header class="g-row">
5553
<h4 class="featurelist__item__title flex-grow">
56-
<a href="https://github.com/tc39/{{ proposal.url }}"
57-
>{{ proposal.name }}</a
58-
>
54+
<a href="{{ proposal.url }}">{{ proposal.name }}</a>
5955
</h4>
6056
<div class="featurelist__item__tags">
6157
<ul class="featurelist__item__status featurelist__item__tags">
6258
<!-- {% if proposal[1].presented | size %} {% for
6359
presentation in proposal[1].presented %}
64-
<li class="featurelist__item__presented featurelist-item-tag">
60+
<li class="featurelist__item__presented featurelist__item__tag">
6561
{%- if presentation.url -%}
6662
<a
6763
href="{{ presentation.url }}"
@@ -78,13 +74,13 @@ <h4 class="featurelist__item__title flex-grow">
7874
</li>
7975
{% endfor %} {% endif %} -->
8076
{% if proposal.tests | size %} {% for url in proposal.tests %}
81-
<li class="featurelist__item__tests featurelist-item-tag">
77+
<li class="featurelist__item__tests featurelist__item__tag">
8278
<a href="{{ url }}" title='{{ proposals["test-alt"] }}'>
8379
{{ proposals["tests"] }}
8480
</a>
8581
</li>
8682
{% endfor %} {% endif %} {% if proposal['has-specification'] %}
87-
<li class="featurelist__item__spec featurelist-item-tag">
83+
<li class="featurelist__item__spec featurelist__item__tag">
8884
<a
8985
href="https://tc39.es/{{ proposal.id }}"
9086
title='{{ proposals["specification-alt"] }}'

0 commit comments

Comments
 (0)