-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
110 lines (99 loc) · 2.7 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
<!doctype html>
<html>
<head>
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Use title if it's in the page YAML frontmatter -->
<title>Roshan's site</title>
<link href="/stylesheets/site.css" rel="stylesheet" />
<script src="/javascripts/site.js"></script>
</head>
<body class="index">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-12">
<ul class="nav navbar-nav file-list">
<li class="active"><a href="/">index.js</a></li>
<li class=""><a href="/app">app.js</a></li>
<li onclick="window.open('https://drive.google.com/file/d/0B_1p1_Oji3GAVVJ4S3F1TU1vY3M/view?usp=sharing')"><a> resume.pdf </a></li>
</ul>
<pre>
<code>
const roshan = {
firstName: 'Roshan',
lastName: 'Jossy',
avatar: 'https://avatars1.githubusercontent.com/u/8488446?v=3&s=400',
createdAt: 'Wed Aug 18 08:30:55 +0530 1993',
skills: {
technical: [
'JavaScript',
'TypeScript',
'Vuejs',
'Nuxt',
'Ruby',
'Reactjs',
'Ruby on Rails',
'Python',
],
developmentPractices: [
'Test Driven Development',
'Pair Programming',
'Object oriented programming',
'Continuous integration'
]
}
interests: [
'Films',
'Mathematical Logic',
'Abstract algebra',
'Philosophy',
'Politics'
]
};
</code>
</pre>
</div>
<div class="col-md-6 col-sm-12 card-container">
<div onclick="window.open('https://github.com/roshanjossey')" class="link-card github">
<img src="images/github-icon.png" alt="">
<span>
GitHub
</span>
</div>
<div onclick="window.open('https://medium.com/@roshanjossey')" class="link-card medium">
<img src="images/medium-icon.png" alt="">
<span>
Medium
</span>
</div>
<div onclick="window.open('http://stackoverflow.com/users/3951782/sudo-bangbang')" class="link-card stackoverflow">
<img src="images/stackoverflow-icon.png" alt="">
<span>
Stack Overflow
</span>
</div>
<div onclick="window.open('https://www.linkedin.com/in/roshan-jossey-b00989a3/')" class="link-card linkedin">
<img src="images/linkedin-icon.png" alt="">
<span>
LinkedIn
</span>
</div>
<div onclick="window.open('https://twitter.com/sudo__bangbang')" class="link-card twitter">
<img src="images/twitter-icon.png" alt="">
<span>
Twitter
</span>
</div>
<div onclick="window.open('https://dribbble.com/sudo_bangbang')" class="link-card dribbble">
<img src="images/dribbble-icon.png" alt="">
<span>
Dribbble
</span>
</div>
</div>
</div>
</div>
</body>
</html>