-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathabout.html
50 lines (48 loc) · 2.4 KB
/
about.html
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
<!--
* Copyright Laura Taylor
* (https://github.com/techstreams/TSDataTable)
-->
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<style>[v-cloak] {display: none} p.ts-small {font-size: 9px;}</style>
</head>
<body>
<div id="app">
<v-app v-cloak>
<v-card outlined raised class="mx-auto mb-4">
<v-img
class="white--text"
height="220px"
src="https://techstreams.github.io/ui-examples/img/colored-pencils-3682424_640.jpg">
<v-card-title class="align-end fill-height yellow--text">TSDataTable</v-card-title>
</v-img>
<v-card-text>
<p class="text-center ts-small">Photo by <a href="https://pixabay.com/users/Bru-nO-1161770/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=3682424" target="_blank">Bruno Glätsch</a> on <a href="https://pixabay.com/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=3682424" target="_blank">Pixabay</a></p>
<p class="text-center subtitle-2">Simple, elegant data tables for Google Sheets & Sites.</p>
</v-card-text>
<v-divider></v-divider>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn text color="primary" href="https://github.com/techstreams/TSDataTable" target="_blank">Documentation</v-btn>
<v-btn text color="primary" href="https://www.tech-streams.com" target="_blank">Developer</v-btn>
<v-spacer></v-spacer>
</v-card-actions>
</v-card>
<v-footer app></v-footer>
</v-app>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.js"></script>
<script>
new Vue({
el: '#app',
vuetify: new Vuetify()
});
</script>
</body>
</html>