diff --git a/app/routes/index.js b/app/routes/index.js new file mode 100644 index 0000000..4112f3f --- /dev/null +++ b/app/routes/index.js @@ -0,0 +1,7 @@ +import Ember from 'ember'; + +export default Ember.Route.extend({ + model: function() { + return this.get('store').findAll("group"); + } +}); diff --git a/app/styles/pages/index.scss b/app/styles/pages/index.scss index 7068e20..c3f8fe5 100644 --- a/app/styles/pages/index.scss +++ b/app/styles/pages/index.scss @@ -40,6 +40,12 @@ .group { text-align: center; margin-top: $padding-l; + margin-bottom: $padding-xl; + + .profile-picture { + width: 200px; + height: 200px; + } .description { margin-top: $padding-m; diff --git a/app/templates/index.hbs b/app/templates/index.hbs index 382d9e2..8954298 100644 --- a/app/templates/index.hbs +++ b/app/templates/index.hbs @@ -24,31 +24,32 @@