-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (79 loc) · 3.54 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Daniel's Portfolio</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=BioRhyme">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/all.js" integrity="sha384-xymdQtn1n3lH2wcu0qhcdaOpQwyoarkgLVxC/wZ5q7h9gHtxICrpcaSUfygqZGOe" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body class="container">
<header>
</header>
<section class="highlight">
<picture class="header__logo">
<img alt="Picture of Daniel" src="img/profile-tiny.jpg"/>
</picture>
<div>
<h1 class="name">Daniel Coats</h1>
<h2 class="job_title">Web Developer</h2>
</div>
<p>I've been developing web applications from scratch for the past 5 years. I take pride in creating performant, clean, and maintainable code while always keeping a lookout for new and innovative ideas.</p>
</section>
<section id="skills">
<div class="skill" v-for="skill in skills">
<div class="skill__icon">
<i class="fa-5x" v-bind:class="skill.icon"></i>
<h3 class="skill__name">{{skill.name}}</h3>
</div>
<div class="skill__details">
<div class="skill__details-item">
<span class="skill__detail-name">Experience:</span>
<span class="skill__detail">{{skill.experience}}</span>
</div>
<div class="skill__details-item" v-if="skill.tools.length > 0">
<h4>Tools</h4>
<p>
<span v-for="(tool, t_index) in skill.tools">{{tool.name}}<span v-if="t_index < (skill.tools.length - 1)">, </span>
</span>
</p>
</div>
</div>
</div>
</section>
<h1 class="showcase__header">Featured Work</h1>
<section class="showcase">
<article class="showcase__project">
<picture>
<img alt="Movie Project in Python" src="svg/3d-glasses.svg" />
</picture>
<h2>Movie Trailers</h2>
<p>
<a href="https://github.com/d0coat01/MovieWebSite" target="_blank" title="Movie Website">https://github.com/d0coat01/MovieWebSite</a>
</p>
</article><article class="showcase__project">
<picture>
<img alt="Portfolio" src="svg/shopping-bag.svg" />
</picture>
<h2>Portfolio</h2>
<p>
<a href="https://github.com/d0coat01/portfolio" target="_blank" title="Portfolio">https://github.com/d0coat01/portfolio</a>
</p>
</article><article class="showcase__project">
<picture>
<img alt="IPCStat" src="svg/pharmacy.svg" />
</picture>
<h2>IPCStat</h2>
<p>
<a href="http://www.danielcoats.info/projects/idspc/" target="_blank" title="IDSPC">http://www.danielcoats.info/projects/idspc/</a>
</p>
</article>
</section>
<footer class="credits">Icons made by <a href="https://www.flaticon.com/authors/darius-dan" target="_blank" title="Darius Dan">Darius Dan</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></footer>
</body>
<script src="js/app.js"></script>
</html>