Skip to content

Commit

Permalink
add SSN use cases template
Browse files Browse the repository at this point in the history
  • Loading branch information
lvdbrink committed Dec 2, 2022
1 parent ff03067 commit afa57a9
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 0 deletions.
55 changes: 55 additions & 0 deletions ssn-usecases/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
var respecConfig = {
// configuration options
shortName: "ssn-usecases",
specStatus: "ED",
noRecTrack: true,
group: "wg/sdw",
github: "w3c/sdw",
editors: [
{
name: "name1",
company: "company1",
companyURL: "https://www.example.com/",
w3cid: 39125,
}
],
authors: [
{
name: "name1",
company: "company1",
companyURL: "https://www.example.com/",
w3cid: 39125,
},
{
name: "name2",
company: "company2",
companyURL: "https://www.example.com/",
w3cid: 39125,
},
],
format: "markdown",
logos: [
{
src: "https://www.w3.org/StyleSheets/TR/2016/logos/W3C",
alt: "W3C",
height: "48",
width: "72",
url: "https://www.w3.org/"
},
{
src: "https://www.w3.org/2017/01/ogc_logo.png",
alt: "OGC",
height: "68",
width: "147",
url: "http://www.opengeospatial.org/"
}
],
localBiblio: {
WEREWOLF: {
title: "Tremble Puny Villagers",
href: "https://w3.org/werewolf",
status: "RSCND",
publisher: "W3C",
},
},
}
60 changes: 60 additions & 0 deletions ssn-usecases/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>SSN Use Cases</title></titleS></title>
<script
src="https://www.w3.org/Tools/respec/respec-w3c"
class="remove"
defer
></script>
<script
src="config.js"
class="remove"
></script>
</head>
<body>
<section id="abstract">
<p>This is required.</p>
</section>
<section id="sotd">
<p>This is required.</p>
</section>
<section class="informative">
<h2>Introduction</h2>
<p>Some informative introductory text.</p>
<aside class="note" title="A useful note">
<p>I'm a note!</p>
</aside>
</section>
<section>
<h2>A section</h2>
<aside class="example">
<p>This is an example.</p>
<pre class="js">
// Automatic syntax highlighting
function someJavaScript(){}
</pre>
</aside>
<section>
<h3>I'm a sub-section</h3>
<p class="issue" data-number="121">
<!-- Issue can automatically be populated from GitHub -->
</p>
</section>
</section>
<section data-dfn-for="Foo">
<h2>Use cases</h2>

<section id="usecase1">
<h3>[Use case name]</h3>
<p class="contributor">[contributor name], based on [...] </p>
<p>[Use case description]</p>
</section>

## [Use case name]
Use case description... This one is in markdown...

</section>
</body>
</html>

0 comments on commit afa57a9

Please sign in to comment.