Skip to content

Commit

Permalink
Add JSON-LD island output to templates
Browse files Browse the repository at this point in the history
Add Org info to index.md
  • Loading branch information
BigBlueHat committed Jun 20, 2018
1 parent 48c41d6 commit 8194de6
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _layouts/bare.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<meta name="screen-orientation" content="portrait" />
<meta name="full-screen" content="yes" />
<meta name="description" content="The mission of the JSON-LD Working Group is to update the JSON-LD 1.0 specifications to address specific usability or technical issues based on the community's experiences, implementer feedback, and requests for new features." />
{% if page.json-ld %}
<script type="application/ld+json">{{ page.json-ld }}</script>
{% endif %}

<link rel="stylesheet" href="https://www.w3.org/2018/json-ld-wg/assets/css/style.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
Expand Down
4 changes: 4 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<meta name="screen-orientation" content="portrait" />
<meta name="full-screen" content="yes" />
<meta name="description" content="The mission of the JSON-LD Working Group is to update the JSON-LD 1.0 specifications to address specific usability or technical issues based on the community's experiences, implementer feedback, and requests for new features." />
{% if page.json-ld %}
<script type="application/ld+json">{{ page.json-ld }}</script>
{% endif %}

<link rel="stylesheet" href="https://www.w3.org/2018/json-ld-wg/assets/css/style.css">
<link rel="stylesheet" href="https://www.w3.org/2018/json-ld-wg/css/style-extras.css">
<!--[if lt IE 9]>
Expand Down
4 changes: 4 additions & 0 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<meta name="screen-orientation" content="portrait" />
<meta name="full-screen" content="yes" />
<meta name="description" content="The mission of the JSON-LD Working Group is to update the JSON-LD 1.0 specifications to address specific usability or technical issues based on the community's experiences, implementer feedback, and requests for new features." />
{% if page.json-ld %}
<script type="application/ld+json">{{ page.json-ld }}</script>
{% endif %}

<link rel="stylesheet" href="https://www.w3.org/2018/json-ld-wg/assets/css/style.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
Expand Down
4 changes: 4 additions & 0 deletions _layouts/minutes.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<meta name="screen-orientation" content="portrait" />
<meta name="full-screen" content="yes" />
<meta name="description" content="The mission of the JSON-LD Working Group is to update the JSON-LD 1.0 specifications to address specific usability or technical issues based on the community's experiences, implementer feedback, and requests for new features." />
{% if page.json-ld %}
<script type="application/ld+json">{{ page.json-ld }}</script>
{% endif %}

<link rel="stylesheet" href="https://www.w3.org/2018/json-ld-wg/assets/css/style.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
Expand Down
23 changes: 23 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
---
layout: home
json-ld: |
{"@context": "http://schema.org/",
"@type": "Organization",
"name": "JSON-LD Working Group",
"member": {
"@type": "OrganizationRole",
"roleName": "Co-Chair",
"member": [
{"@type": "Person",
"name": "Rob Sanderson",
"email": "azaroth42@gmail.com"},
{"@type": "Person",
"name": "Benjamin Young",
"email": "byoung@bigbluehat.com"}
]
},
"contactPoint": {
"@type": "ContactPoint",
"name": "Ivan Herman",
"email": "ivan@w3.org",
"contactType": "W3C Staff Contact"
}
}
---

The mission of the JSON-LD Working Group is to update the [JSON-LD 1.0](https://www.w3.org/TR/2014/REC-json-ld-20140116/) specifications to address specific usability or technical issues based on the community's experiences, implementer feedback, and requests for new features.
Expand Down

0 comments on commit 8194de6

Please sign in to comment.