-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (46 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
</head>
<body>
<h1>Jeff Patterson</h1>
<h4>Developer, Programmer, Engineer</h4>
<img src="https://avatars.githubusercontent.com/jp2images" alt="Jeff Patterson" height="200" />
<hr />
<h2>Personal Information</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a><br />
Phone: {{ $phone }}<br />
Address: {{ $address }}<br />
</p>
<hr />
<h2>Summary</h2>
<p>{{ $summary }}</p>
<hr />
<h2>Skills</h2>
<hr />
<p>{{ $skills }}</p>
<h2>Education</h2>
<p>University: {{ $university }}</p>
<p>Major: {{ $major }}</p>
<p>Graduation Year: {{ $graduation_year }}</p>
<hr />
<h2>Experience</h2>
<p>Company: {{ $company }}</p>
<p>Position: {{ $position }}</p>
<p>Start Date: {{ $start_date }}</p>
<p>End Date: {{ $end_date }}</p>
<p>Responsibilities: {{ $responsibilities }}</p>
<hr />
<hr />
<h2>Projects</h2>
<p>{{ $projects }}</p>
<h2>References</h2>
<p>{{ $references }}</p>
</body>
<footer>
<a href="./public/contact.html">Contact Me</a>
<a href="./public/about.html">About Me</a>
</html>