Skip to content

Commit

Permalink
Adding json-ld for organization and angular/git master class. Fixes #19
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelokon committed Jul 19, 2017
1 parent 0e88f97 commit c24c1cd
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<meta property="twitter:site" content="thoughtram.io">

<link rel="stylesheet" href="assets/css/main.css">
<script type="application/ld+json" src="structured-data/organization.json"></script>
</head>
<body id="debug" class="thtrm-page" itemscope itemtype="http://schema.org/WebPage">
<header class="thtrm-banner" role="banner">
Expand Down
41 changes: 41 additions & 0 deletions structured-data/amc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"@type": "Course",
"name": "Angular Master Class",
"description": "Just like AngularJS was pushing the boundaries of web development at it's time of creation, Angular is pushing hard again. We believe in its success and think investing time to learn it now, will be time very well spent.",
"courseCode": "#AMC",
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": [
"onsite"
]
},
"coursePrerequisites": {
"@type": "ItemList",
"itemListElement": [
"A laptop with Node/npm and Git installed",
"A GitHub account",
"HTML, JavaScript or TypeScript experience",
"Good mood!"
],
"itemListOrder": "http://schema.org/ItemListOrderDescending",
"name": "Prerequisites"
},
"url": "https://thoughtram.io/angular-master-class.html",
"disambiguateDescription": {
"@type": "ItemList",
"itemListElement": [
"Introduction",
"Material and Flex Layout",
"Angular CLI",
"Dependency Injection",
"Routing",
"HTTP",
"Observables",
"Component Architecture",
"Forms"
],
"itemListOrder": "http://schema.org/ItemListOrderDescending",
"name": "Angular Master Class Contents"
},
"provider": "https://thoughtram.io/foaf#organization"
}
37 changes: 37 additions & 0 deletions structured-data/gmc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"@type": "Course",
"name": "Git Master Class",
"description": "We use Git on our daily basis to be as productive as possible, especially when working in larger projects with even larger teams. The Git Master Class experience teaches you the ins and outs of the version control system.",
"courseCode": "#GMC",
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": [
"onsite"
]
},
"coursePrerequisites": {
"@type": "ItemList",
"itemListElement": [
"A laptop with Git installed",
"A GitHub account",
"Good mood!"
],
"itemListOrder": "http://schema.org/ItemListOrderDescending",
"name": "Prerequisites"
},
"url": "https://thoughtram.io/angular-master-class.html",
"disambiguateDescription": {
"@type": "ItemList",
"itemListElement": [
"Introduction",
"Anatomy of a commit",
"Branches and Merges",
"Rebasing and Cherry Picking",
"Workflows",
"Working with remotes"
],
"itemListOrder": "http://schema.org/ItemListOrderDescending",
"name": "Angular Master Class Contents"
},
"provider": "https://thoughtram.io/foaf#organization"
}
34 changes: 34 additions & 0 deletions structured-data/organization.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"@context": "http://schema.org",
"@type": "Organization",
"@id": "https://thoughtram.io/foaf#organization",
"name": "thoughtram GmbH",
"description": "We are thoughtram. We enjoy learning new stuff every day and we love teaching it to others even more.",
"brand": "thoughtram",
"address": {
"@type": "PostalAddress",
"streetAddress": "Hohenzollernstr. 47",
"postalCode": "30161",
"addressLocality": "Hannover",
"addressRegion": "NDS",
"addressCountry": "DE"
},
"email": "[email protected]",
"url": "https://thoughtram.io",
"logo": "https://thoughtram.io/assets/images/thoughtram-logo-desktop_white.png",
"sameAs": [
"https://github.com/thoughtram",
"https://twitter.com/thoughtram",
"https://www.facebook.com/thoughtram",
"https://www.youtube.com/channel/UCBn1x1RwoQkLmC8UPCNty0Q"
],
"contactPoint": [
{
"@type": "ContactPoint",
"email": "[email protected]",
"contactType": "Customer service",
"url": "http://thoughtram.io"
}
],
"vatID": "DE296749725"
}

0 comments on commit c24c1cd

Please sign in to comment.