-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding json-ld for organization and angular/git master class. Fixes #19
- Loading branch information
1 parent
0e88f97
commit c24c1cd
Showing
4 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |