-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathindex.html
227 lines (222 loc) · 8.93 KB
/
index.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!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">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<meta property="og:title" content="OSSPH Freefolio - Hacker Template"/>
<meta property="og:description" content="100% FREE Professional Portfolio Templates - Hacker Template"/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://i.postimg.cc/fT3yn5rC/hacker.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image:alt" content="OSSPH Freefolio">
<meta name="twitter:title" content="OSSPH Freefolio - Hacker Template" />
<meta name="twitter:description" content="100% FREE Professional Portfolio Templates - Hacker Template" />
<title>Hacker | Free Professional Portfolio Website Templates by Joff Tiquez</title>
<link rel="apple-touch-icon" sizes="180x180" href="./favicon_package_v0.16/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon_package_v0.16/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon_package_v0.16/favicon-16x16.png">
<link rel="manifest" href="./favicon_package_v0.16/site.webmanifest">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro&display=swap" 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">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<style>
#app {
background-color: black;
background-image: url("./cursor.gif");
background-repeat: no-repeat;
background-size: 50;
background-attachment: fixed;
background-position-x: -92px;
}
.v-application,
.v-application .body-1,
.v-application .body-2,
.v-application .caption,
.v-application .display-1,
.v-application .display-2,
.v-application .display-3,
.v-application .display-4,
.v-application .headline,
.v-application .overline,
.v-application .subtitle-1,
.v-application .subtitle-2,
.v-application .title {
font-family: 'Source Code Pro', monospace !important;
}
:-webkit-any(article, aside, nav, section) h1 {
font-size: 2em;
margin-block-start: 0.67em;
margin-block-end: 0.67em;
margin-top: 0;
margin-bottom: 0;
}
</style>
</head>
<body>
<div id="app">
<v-app>
<header class="container" v-bind="sectionHeight">
<v-row align="center">
<v-col cols="12" md="6" data-aos="fade-up">
<h1 class="display-4 primary--text">{{name}}</h1>
<h2 class="primary--text">{{jobTitle}}</h2>
<p>{{jobDescription}}</p>
<nav>
<v-btn href="#skills" text="text" class="primary--text">/Skills</v-btn href="skills">
<v-btn href="#works" text="text" class="primary--text">/Recent Works</v-btn>
<v-btn href="#hobbies" text="text" class="primary--text">/Hobbies</v-btn>
<v-btn href="#contact" text="text" class="primary--text" outlined="outlined">/Contacts</v-btn>
</nav>
</v-col>
</v-row>
</header>
<main class="container">
<section class="row mb-5" id="skills">
<v-col cols="12" md="6">
<h1 class="primary--text" data-aos="fade-up">/Skills</h1>
</v-col>
<v-col v-for="(skill, index) in skills" cols="12" :key="index">
<v-card hover="hover" height="100%" data-aos="fade-up">
<v-card-text>
<h2 class="primary--text">>
{{skill.name}}</h2>
<br>
<p>:{{skill.description}}</p>
</v-card-text>
<v-footer>
<v-spacer></v-spacer>
<small class="primary--text">~/.skills</small>
</v-footer>
</v-card>
</v-col>
</section>
<section class="row mb-5" id="works">
<v-col cols="12" md="6">
<h1 class="primary--text" data-aos="fade-up">/Recent Works</h1>
</v-col>
<v-col v-for="(work, index) in works" cols="12" :key="index">
<v-card hover="hover" height="100%" data-aos="fade-up" rel="noreferrer" :href="work.link" >
<v-card-text>
<h2 class="primary--text">>
{{work.name}}</h2>
<br>
<p>:{{work.description}}</p>
</v-card-text>
<v-footer>
<v-spacer></v-spacer>
<small class="primary--text">~/.works</small>
</v-footer>
</v-card>
</v-col>
</section>
<section class="row mb-5" id="hobbies">
<v-col cols="12" md="6">
<h1 class="primary--text" data-aos="fade-up">/My Hobbies</h1>
</v-col>
<v-col v-for="(hobby, index) in hobbies" cols="12" :key="index">
<v-card hover="hover" height="100%" data-aos="fade-up">
<v-card-text>
<h2 class="primary--text">>
{{hobby.name}}</h2>
<br>
<p>:{{hobby.description}}</p>
</v-card-text>
<v-footer>
<v-spacer></v-spacer>
<small class="primary--text">~/.hobbies</small>
</v-footer>
</v-card>
</v-col>
</section>
<section class="row justify-center" id="contact">
<v-col cols="12" md="10" class="text-center">
<h1 class="primary--text" data-aos="fade-up">/Let's Talk!</h1>
</v-col>
<v-col cols="12" sm="6" md="4" class="text-center">
<v-row>
<v-col class="text-center" cols="12" data-aos="fade-up">
<h3 v-if="contacts && contacts.email">{{contacts.email}}</h3>
<h3 v-if="contacts && contacts.mobileNo">{{contacts.mobileNo}}</h3>
<h3 v-if="contacts && contacts.phoneNo">{{contacts.phoneNo}}</h3>
</v-col>
<v-col class="text-center" cols="12" data-aos="fade-up">
<v-btn class="ma-1" v-for="(link, index) in contactLinks" outlined="outlined" rounded="rounded" target="_blank" :href="link.link" :key="index" color="primary">
{{link.name}}
</v-btn>
</v-col>
</v-row>
</v-col>
</section>
</main>
<footer class="v-footer v-sheet theme--dark" data-booted="true">
<v-spacer></v-spacer>
<small>Template made with
<v-icon class="red--text">mdi-heart</v-icon>
by
<a href="https://twitter.com/jrtiquez" target="_blank">Jofferson R Tiquez</a>
</small>
</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 src="config.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
var vm = new Vue({
el: '#app',
vuetify: new Vuetify({
theme: {
dark: true,
themes: {
dark: {
primary: '#19c113',
secondary: '#424242',
accent: '#82B1FF',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
warning: '#FFC107'
}
}
}
}),
data() {
return {
menu: false,
...window.PorfolioConfig
};
},
computed: {
$isMobile() {
return this.$vuetify.breakpoint.smAndDown;
},
sectionHeight() {
return {style: 'min-height: 100vh', class: 'fill-height'}
},
contactLinks() {
if (this.contacts && this.contacts.links && this.contacts.links.length) {
return this.contacts.links;
}
return [];
}
}
});
AOS.init({
once: true,
delay: 0
});
</script>
</body>
</html>