-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (130 loc) · 4.09 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
---
title: Home
layout: page
custom_css:
- pace.css
- index.css
custom_js:
- vertical-timeline.js
email_href: mailto:[email protected]?subject=Awesome%20Job%20Offer%20From%20%5Benter%20your%20company%20name%20here%5D
---
<!-- Header -->
<header class='page-banner'>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img src="img/logo.png" alt="Mark Monteiro">
<div class="intro-text">
<h1 class="name">Mark Monteiro</h1>
<hr class="hidden-xs hr-light">
<span class="skills">Software/Web Developer</span>
<ul class="social">
<li>
<a href="{{page.email_href}}">
<span class="fa fa-envelope-o"></span>
<span class='sr-only'>Email</span>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/mrkmonteiro">
<span class="fa fa-linkedin"></span>
<span class='sr-only'>LinkedIn</span>
</a>
</li>
<li>
<a href="https://github.com/mark-monteiro">
<span class="fa fa-github"></span>
<span class='sr-only'>Github</span>
</a>
</li>
<li>
<a href="https://stackoverflow.com/users/1988326/markuss232">
<span class="fa fa-stack-overflow"></span>
<span class='sr-only'>Stack Overflow</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>About Me</h2>
<hr class="hr-primary">
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<p>
Welcome to my homepage! Here you can see a summary of my education, experiences, and projects I have worked
on. If you like what you see, or just want some more information about myself, please
<a href="{{page.email_href}}">drop me a line</a>!
</p>
</div>
</div>
<div class="row info-container">
<div class="col-lg-6 col-lg-offset-3 info">
<div class="row">
<div class="col-xs-12 col-lg-4 col-lg-offset-0">
<img class="portrait img-responsive" src="img/profile.png" alt="Mark Monteiro">
</div>
<div class="col-xs-12 col-lg-8">
<dl class="dl-horizontal" >
<dt>Email</dt>
<dd><a href="{{page.email_href}}">[email protected]</a></dd>
<dt>Phone</dt>
<dd>226-349-3224</dd>
<dt>Birthdate</dt>
<dd>May 18, 1991</dd>
<dt>Website</dt>
<dd><a href="index.html">www.markmonteiro.info</a></dd>
</dl>
</div>
</div>
<div class="text-center">
<a class="btn btn-primary" href="/mark-monteiro-resume.pdf" download>
<span class="fa fa-download"></span>
Download Resume
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Resume Section -->
<section id="resume" class="success">
<div class="cd-container">
<div class="cd-timeline-label">
<h2 class="label label-primary">Experience</h2>
</div>
{% include experience-timeline.html %}
</div>
</section> <!-- cd-timeline -->
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Projects</h2>
<hr class="hr-primary">
</div>
</div>
<div class="row">
{% include portfolio-items.html %}
</div>
</div>
</section>
<!-- Portfolio Modals -->
{% include portfolio-modals.html %}
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top visible-xs visible-sm">
<a class="btn btn-primary page-scroll" href="/">
<span class="fa fa-chevron-up"></span>
<span class='sr-only'>Scroll To Top Of Page</span>
</a>
</div>