diff --git a/_data/stage3.yml b/_data/stage3.yml index 66c5c8f2..0e56b594 100644 --- a/_data/stage3.yml +++ b/_data/stage3.yml @@ -46,6 +46,8 @@ }); }); } + resources: + - https://github.com/tc39/proposal-dynamic-import - title: Legacy RegExp features in JavaScript description: This is a specification draft for the legacy (deprecated) RegExp features in JavaScript, i.e., static properties of the constructor like RegExp.$1 as well as the RegExp.prototype.compile method. diff --git a/_includes/intro.html b/_includes/intro.html index 1f0cf2ca..c75a54b0 100644 --- a/_includes/intro.html +++ b/_includes/intro.html @@ -1,5 +1,5 @@ -
-
+
+

TC39

diff --git a/_includes/proposals.html b/_includes/proposals.html index 74852534..2c2bae46 100644 --- a/_includes/proposals.html +++ b/_includes/proposals.html @@ -9,70 +9,73 @@

Stage 3

{% for proposal in site.data.stage3 %}
-
-

{{ proposal.title }}

- {% if proposal.description %} -

{{ proposal.description }}

- {% endif %} -
- +
+
+ {% if proposal.authors | size %} + Author(s): + {{ proposal.authors | join: ", " }} + {% endif %} + {% if proposal.champions | size %} + | + Champion(s): + {{ proposal.champions | join: ", " }} + {% else %} + {% endif %} +
+ {% if proposal.description %} +
{{ proposal.description }}
+ {% endif %} + {% if proposal.example %} +
Show Example
+ {% endif %} +
+ {% if proposal.example %}
-
Example
-
{{ proposal.example }}
+
+
{{ proposal.example }}
+
- {% endif %} -
- {% if proposal.resources | size %} -
Developer Resources
-
    - {% for url in proposal.resources %} -
  • - {{ url }} -
  • - {% endfor %} -
{% endif %} +
+
{% endfor %} +
+ + See more proposals + +
diff --git a/_layouts/default.html b/_layouts/default.html index 4cc87eca..d17388da 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -23,12 +23,6 @@

Specifying JavaScript.

{% include intro.html %} {% include proposals.html %} -