blob: 7b2c527cf178f125d9ea68190e7f760ed1e5441c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<template>
<a :href="route" class="post">
<div>
<h4 class="post-title">{{title}}</h4>
<p class="post-description">{{shortenedDescription}}...</p>
</div>
</a>
</template>
<script>
export default {
name: 'ChroniclePost',
props: {
title: {
type: String,
required: true
},
description: {
type: String,
default: ''
},
route: {
type: String,
required: true
}
},
computed: {
shortenedDescription() {
const first30Words = this.description.split(' ').slice(0, 30)
return first30Words.join(' ')
}
}
}
</script>
<style scoped>
.post {
margin: 20px;
flex-basis: 410px;
text-decoration: none;
}
.post > div {
background: #ffffff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
padding: 20px;
text-align: left;
}
.post-title {
color: #181818;
font-size: 1.3em;
}
.post-description {
color: #484848;
font-size: 0.9em;
}
</style>
|