forked from anthonybudd/VIPFS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bio.vue
37 lines (35 loc) · 1023 Bytes
/
bio.vue
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
<template>
<div class="card card-profile text-center">
<img
src="storage/images/florence.jpg"
class="card-img-top"
alt="Header Image"
>
<div class="card-block">
<img
src="storage/images/machiavelli.png"
class="card-profile-img"
alt="Profile Image"
>
<h4 class="card-title">
Niccolò Machiavelli
<small>Italian Diplomat</small>
</h4>
<a
href="storage/documents/the-prince.pdf"
class="card-bio-link"
>
the-prince.pdf
</a>
<p class="card-bio">
Diplomat, Politician, Historian, Philosopher, Writer, Playwright and Poet. The father of modern political philosophy and the first modern man.
</p>
</div>
</div>
</template>
<script>
export default {
data: () => ({}),
mounted () {}
}
</script>