Created
November 17, 2019 21:29
-
-
Save zackproser/fedf4c4123122a1e0853bf551f2d1dbb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<template> | |
<div class="col-lg-4"> | |
<div class="card card-list--hover shadow border-0"> | |
<div class="card-body py-5"> | |
<img | |
:src="`/${post.attributes.image}`" | |
class="img-fluid shadow mb-5" | |
/> | |
<nuxt-link :to="`/software/${post.slug}`"> | |
<h6 :class="`text-${ct} display-4 text-uppercase`"> | |
{{ post.attributes.title }} | |
</h6> | |
</nuxt-link> | |
<p class="description mt-3"> | |
{{ post.attributes.description }} | |
</p> | |
<div> | |
<span v-for="tag in tags" v-if="tags.length > 0" | |
:class="`badge badge-pill badge-${ct}`" | |
> | |
{{ tag }} | |
</span> | |
</div> | |
<nuxt-link :to="`/${prefix}/${post.slug}`"> | |
<div :class="`btn btn-${ct} mt-4`"> | |
Read | |
</div> | |
</nuxt-link> | |
</div> | |
</div> | |
</div> | |
</template> | |
<script> | |
export default { | |
layout: 'zack-proser', | |
name: 'post-card', | |
props: { | |
post: Object, | |
prefix: String, | |
ct: String | |
}, | |
computed: { | |
tags () { | |
return this.post.attributes.tags ? this.post.attributes.tags.split(',') : [] | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment