From 600a7ec66eed8d33bcedd38c4fcff33025b2810e Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Wed, 22 Aug 2018 13:23:44 +0200 Subject: [PATCH] Add "dynamic" room data --- client/src/App.vue | 4 +-- client/src/components/RoomEntry.vue | 12 ++++--- client/src/pages/room.vue | 50 ++++++++++++++++++++++++++--- 3 files changed, 55 insertions(+), 11 deletions(-) diff --git a/client/src/App.vue b/client/src/App.vue index a7d5c7b3..6fef2769 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -53,10 +53,10 @@ margin: 0 auto; width: 100%; display: grid; - grid-template-rows: auto 1fr 50px; + grid-template-rows: auto 1fr; grid-row-gap: 32px; min-height: 100vh; - grid-template-areas: "h" "c" "f"; + grid-template-areas: "h" "c"; &--red { // todo: define a better name when usage is clear background-color: $red; diff --git a/client/src/components/RoomEntry.vue b/client/src/components/RoomEntry.vue index e32b7a63..00e42f18 100644 --- a/client/src/components/RoomEntry.vue +++ b/client/src/components/RoomEntry.vue @@ -1,12 +1,12 @@ @@ -36,7 +33,50 @@ data() { return { - entries: [] + entries: [ + { + id: 1, + title: 'Ein neues Festival auf dem Gurten – und ich bin dabei!', + teaser: 'Endlich war es soweit. Zum ersten Mal fand am 2. und 3. Juli 1977 das 1. Internationale …', + image: 'https://picsum.photos/600/300', + author: {} + }, + { + id: 2, + title: 'Mein Tagesblog', + teaser: 'https://blogger.com/cruel-festivals-around-the-world/', + image: '', + author: {} + }, + { + id: 3, + title: 'Woodstock', + teaser: 'In Woodstock hat sich dem Mythos nach vor genau vierzig Jahren das Lebensgefühl …', + image: '', + author: {} + }, + { + id: 4, + title: 'Ein neues Festival auf dem Gurten – und ich bin dabei!', + teaser: 'Endlich war es soweit. Zum ersten Mal fand am 2. und 3. Juli 1977 das 1. Internationale …', + image: '', + author: {} + }, + { + id: 5, + title: 'Das Festival', + teaser: 'www.meinblog.ch', + image: 'https://picsum.photos/600/300/?random', + author: {} + }, + { + id: 6, + title: 'Danke, Gurten! Meine Highlights 2017', + teaser: 'Ich war am Gurten-Festival. Das war ein bisschen verrückt. Aber auch sehr schön. Und weil\'s so schön war, lasse ich die drei Tage nochmal Revue passieren. Et voilà ...', + image: 'https://picsum.photos/600/300/?random', + author: {} + } + ] } } }