Skip to content

Commit

Permalink
Add a rough outline (wintercg#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Apr 26, 2022
1 parent fc280eb commit 4fa6ed7
Show file tree
Hide file tree
Showing 5 changed files with 121 additions and 0 deletions.
15 changes: 15 additions & 0 deletions data/faq.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## What is WinterCG?

TODO

## What is the WinterCG working on?

TODO

## Is participation free?

TODO

## Who controls the WinterCG?

TODO
6 changes: 6 additions & 0 deletions data/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This community group aims to provide a space for JS runtimes to collaborate on
API interoperability. We focus on documenting and improving interoperability of
web platform APIs across runtimes (especially non-Browser ones). This is done
through discussions between runtimes, proposals for new and existing web APIs in
existing specification venues (WHATWG, W3C), and documentation of existing
runtime behaviours.
12 changes: 12 additions & 0 deletions data/work.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"name": "Common Minimum API",
"description": "The minimal collection of Web Platform APIs that ought to be implemented by Web-interoperable runtimes",
"repo": "proposal-common-minimum-api"
},
{
"name": "Web Crypto Streams",
"description": "A proposal to define streaming support in Web Crypto APIs",
"repo": "proposal-webcrypto-streams"
}
]
42 changes: 42 additions & 0 deletions faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WinterCG</title>
</head>
<body>
<!-- Title section -->
<section>
<!-- lg: left logo (vertically centered), right text (left aligned) -->
<!-- sm: logo top (centered), text bottom (left aligned) -->
<span>WinterCG logo</span>
<div>
<h1>WinterCG - FAQ</h1>
</div>
</section>

<!-- Links -->
<section>
<!-- always 4x1 -->
<div>Our work</div>
<div>FAQ</div>
<div>GitHub</div>
<div>Charter</div>
</section>

<!-- The FAQs -->
<section>
<h2>Question 1</h2>
<p>Answer 1</p>

<h2>Question 2</h2>
<p>Answer 2</p>
</section>

<footer>
<p>Copyright © WinterCG</p>
</footer>
</body>
</html>
46 changes: 46 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WinterCG</title>
</head>
<body>
<!-- Title section -->
<section>
<!-- lg: left logo (vertically centered), right text (left aligned) -->
<!-- sm: logo top (centered), text bottom (left aligned) -->
<span>WinterCG logo</span>
<div>
<h1>WinterCG</h1>
<p>Web-interoperable Runtimes Community Group</p>
</div>
</section>

<!-- Links -->
<section>
<!-- always 4x1 -->
<div>Our work</div>
<div>FAQ</div>
<div>GitHub</div>
<div>Charter</div>
</section>

<!-- Introduction -->
<p>
Lorem ipsum. <a href="/faq">Learn more about us.</a>
</p>

<!-- Logos -->
<section>
<span>Logo Cloudflare</span>
<span>Logo Deno</span>
<span>Logo Node.js</span>
</section>

<footer>
<p>Copyright © WinterCG</p>
</footer>
</body>
</html>

0 comments on commit 4fa6ed7

Please sign in to comment.