-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (118 loc) · 6.76 KB
/
index.html
File metadata and controls
123 lines (118 loc) · 6.76 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/css/materialize.min.css">
<style>
.mobile-only {
display: none;
}
@media screen and (max-width: 992px) {
.mobile-only {
display: inline;
}
}
</style>
</head>
<body>
<div class="container">
<h1>EricOP GitHub</h1>
<div class="row">
<div class="col s12 m9">
<div class="card orange lighten-2">
<div class="card-content">
<span class="card-title">
Linkable Viewable Goodies
<span class="mobile-only">(Scroll ⇢ on mobile)</span>
</span>
<div class="row">
<div class="col s12">
<table class="responsive-table striped">
<thead>
<tr>
<th>Project</th>
<th>Repo</th>
<th>Viewable Page</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bible Scout (Bible Reading Plan PWA) App</td>
<td>
<a href="https://github.com/ericop/bible-scout-app">GitHub Repo</a>
</td>
<td>
<a href="https://bible-scout-app.netlify.app">https://bible-scout-app.netlify.app</a>
</td>
</tr>
<tr>
<td>Bible Scout Backend (AWS Lambda proxy written in Golang)</td>
<td>
<a href="https://github.com/ericop/aws-bible-api-proxy">GitHub Repo</a>
</td>
<td>
<a href="https://us-east-2.console.aws.amazon.com/apigateway/home?region=us-east-2#/apis/dcu73qiiyi/stages/default/resources/~1bible-scout-proxy/methods/POST">AWS API Gateway page for internal testing</a>
</td>
</tr>
<tr>
<td>Frogs And Fireflies Mobile Game</td>
<td>
<a href="https://github.com/ericop/FrogsAndFireflies">GitHub Repo</a>
</td>
<td>
<a href="https://play.google.com/store/apps/details?id=com.OrangePantsStudios.FrogsAndFirefliesByEopAndEllie">Android App On Google Play Store</a>
</td>
</tr>
<tr>
<td>Blip Wars - My Unity 2D RTS Game</td>
<td>
<a href="https://github.com/ericop/BlipWars">GitHub Repo</a>
</td>
<td>
<img src="https://cloud.githubusercontent.com/assets/5218249/24610557/0051d80a-184d-11e7-813b-b8b596375e9c.png" alt="image"
style="max-width:100%;">
</td>
</tr>
<tr>
<td>Js Mvc Presentation</td>
<td>
<a href="https://github.com/ericop/js-mvc-presentation">GitHub Repo</a>
</td>
<td>
<a href="http://ericop.github.io/js-mvc-presentation">http://ericop.github.io/js-mvc-presentation</a>
</td>
</tr>
<tr>
<td>Identify Tree by Leaf</td>
<td>
<a href="https://github.com/ericop/identify-tree-by-leaf">GitHub Repo</a>
</td>
<td>
<a href="http://ericop.github.io/identify-tree-by-leaf/">http://ericop.github.io/identify-tree-by-leaf/</a>
</td>
</tr>
<tr>
<td>Clockpicker</td>
<td>
<a href="https://github.com/ericop/clockpicker">GitHub Repo</a>
</td>
<td>
<a href="http://ericop.github.io/clockpicker">http://ericop.github.io/clockpicker</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Import jQuery before materialize.js-->
<!-- <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> -->
<!-- <script src="https://cdn.jsdelivr.net/npm/lodash@4.17.11/lodash.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/js/materialize.min.js"></script>
</body>
</html>