-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (68 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<script type="text/javascript" src="./src/dom_node_handles.js"></script>
<script type="text/javascript" src="./src/index.js"></script>
<script type="text/javascript" src="./src/todo_setup.js"></script>
<script type="text/javascript" src="./src/github_grabber.js"></script>
<link rel="stylesheet" href="./public/stylesheets/todos.css" />
<link rel="stylesheet" href="./public/stylesheets/github.css" />
<link rel="stylesheet" href="./public/stylesheets/widgets.css" />
<link rel="stylesheet" href="./public/stylesheets/project.css" />
</head>
<body>
<div class="widgets">
<section class="top-bar">
<h2>Mashu Duek</h2>
<div class="links">
<a href="https://github.com/mashuDuek">
<img class="gh-logo" src="./public/images/gh-logo3.jpg"/>
</a>
<a href="https://www.linkedin.com/in/matthew-duek/">
<img class="linked-in-logo" src="./public/images/linkedin-logo.png"/>
</a>
<a href="https://www.facebook.com/mashuduek">
<img class="fb-logo" src="./public/images/fb-logo3.png"/>
</a>
</div>
</section>
<div class="todo-and-github">
<section class="github-wrapper">
<img src="./public/images/loading.gif" class="loading-wheel hidden" />
<div class="github">
<h2>Github Repo Grabber</h2>
<form class="github-form">
<input class="github-input" type="text" placeholder="eg. mashuDuek. capitalization matters">
</input>
<button>Grab It!</button>
</form>
<div class="repos-and-commits">
<ul class="repo-list"></ul>
<ul class="commits-list"></ul>
</div>
</div>
</section>
<section class="todos">
<div class="form-and-list">
<h2>Todo List</h2>
<form class="form">
<input type="text" class="user-input" placeholder="add a to-do">
<button type="submit" class="create-todo">+</button>
</form>
<ul class="todo-list"></ul>
</div>
</section>
</div>
<section class="footer">
<a href="http://disneybook.herokuapp.com">disneyBook</a>
<a href="http://mashu-components.xyz">MashuComponents App</a>
<a href="http://mashuduek.xyz">Portfolio</a>
</section>
<script type="text/javascript">
new GithubGrabber()
new Todos()
</script>
</div>
</body>
</html>