-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (118 loc) · 4.33 KB
/
index.html
File metadata and controls
124 lines (118 loc) · 4.33 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Colloque Tsui</title>
<link href="/favicon.ico" rel="shortcut icon">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@colloquet">
<meta name="twitter:title" content="Colloque Tsui">
<meta name="twitter:creator" content="@colloquet">
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="title" content="Colloque Tsui" />
<meta name="author" content="Colloque Tsui" />
<meta name="description" content="Familiar with WordPress, HTML, CSS, Javascript, AngularJS, Ionic and Swift. Been trying out Vue.js and React lately." />
<meta name="msvalidate.01" content="00109AC3B0C479B5E31744AE0C80AAA7" />
<link rel="canonical" href="https://colloque.io/" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link href="//fonts.googleapis.com/css?family=Lato:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="app" v-cloak>
<div class="grid">
<div class="info">
<div class="info-inner">
<h1 class="name">Colloque Tsui</h1>
<p class="position">Web Developer</p>
</div>
</div>
<div class="grid-item" v-for="project in projects" :class="{featured: project.featured}">
<a :href="project.url" target="_blank" class="project">
<div class="project-thumbnail">
<img :src="'assets/screenshots/' + project.thumb" :alt="project.name">
</div>
<div class="project-body">
<img src="assets/icons/link.svg" alt="Open in new tab" class="link-icon">
<p class="project-title">{{ project.name }}</p>
</div>
</a>
</div>
</div>
<ul class="contact-list">
<li>
<img src="assets/icons/linkedin.svg" alt="LinkedIn" class="icons">
<a href="http://hk.linkedin.com/pub/colloque-tsui/39/855/832/" target="_blank">Colloque Tsui</a>
</li>
<li>
<img src="assets/icons/twitter.svg" alt="Twitter" class="icons">
<a href="https://twitter.com/colloquet" target="_blank">@colloquet</a>
</li>
<li>
<img src="assets/icons/github.svg" alt="GitHub" class="icons">
<a href="https://github.com/colloquet" target="_blank">colloquet</a>
</li>
<li>
<img src="assets/icons/email.svg" alt="Email" class="icons">
<a href="mailto:colloquet@icloud.com?subject=Hello">colloquet@icloud.com</a>
</li>
</ul>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/vue/2.2.3/vue.min.js"></script>
<script>
var vm = new Vue({
el: '#app',
data: {
projects: [
{
name: 'LIHKG (Vue)',
thumb: 'lihkg-vue.png',
url: 'https://lihkg.colloque.io',
featured: true,
},
{
name: 'iReserve Monitor',
thumb: 'ireserve-monitor.png',
url: 'https://ireserve.me/',
},
{
name: 'Sterling Apparel',
thumb: 'sterling-apparel.png',
url: 'http://www.sterlingapparel.com.hk/',
},
{
name: 'Eqibeat',
thumb: 'eqibeat.png',
url: 'http://eqibeat.com/',
},
{
name: 'BasicLaw.hk',
thumb: 'basiclaw.png',
url: 'https://basiclaw.hk/',
},
{
name: 'onActivity',
thumb: 'onactivity.png',
url: 'http://onactivity.com/',
},
{
name: 'Cooltech Global',
thumb: 'cooltech-global.png',
url: 'http://www.cooltechglobal.com/',
},
],
},
});
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-51297067-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>