basic styling

This commit is contained in:
Benedikt Rötsch
2017-09-26 17:07:58 +02:00
parent 200a8ae2f1
commit c650dd3f1c
23 changed files with 1380 additions and 188 deletions

View File

@@ -17,7 +17,7 @@ exports.getCourses = () => {
exports.getLandingPage = () => {
// our Home page is fully configureable via contentful
return client.getEntries({content_type: 'landingPage', 'fields.slug': 'contentful-university'})
return client.getEntries({content_type: 'landingPage', 'fields.slug': 'contentful-university', include: 10})
.then((response) => response.items[0])
}