diff --git a/pinry-spa/src/App.vue b/pinry-spa/src/App.vue index 92bce38..77e135f 100644 --- a/pinry-spa/src/App.vue +++ b/pinry-spa/src/App.vue @@ -24,4 +24,7 @@ export default { #app { background-color: #F5F5EB; } + .body { + font-family: 'Open Sans', sans-serif; + } diff --git a/pinry-spa/src/components/Pins.vue b/pinry-spa/src/components/Pins.vue index 4a1f24b..457c07f 100644 --- a/pinry-spa/src/components/Pins.vue +++ b/pinry-spa/src/components/Pins.vue @@ -13,8 +13,27 @@
-
+
item.description +
@@ -33,6 +52,9 @@ function createImageItem(pin) { image.url = pinHandler.escapeUrl(pin.image.thumbnail.image); image.id = pin.id; image.description = pin.description; + image.tags = pin.tags; + image.author = pin.submitter.username; + image.avatar = `//gravatar.com/avatar/${pin.submitter.gravatar}`; return image; } @@ -67,7 +89,8 @@ export default { }; -