forked from wesbos/JavaScript30
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
79 lines (77 loc) · 3.66 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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>A New Vue on #JavaScript30</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="card" style="width: 50rem; margin: 1rem;">
<img class="card-img-top" src="assets/a-new-vue-on-js30.jpg" alt="Card image cap">
<div class="card-body">
<p class="card-text">
<a href="https://davefollett.io/categories/a-new-vue-on-javascript30/">A New Vue On #JavaScript30</a> is a blog
series published at <a href="https://davefollett.io">davefollet.io</a> that explores re-implementing Wes Bos’s
(<a href="https://twitter.com/wesbos">@wesbos</a>) <a href="https://javascript30.com/">#JavaScript30</a> projects
using <a href="https://vuejs.org/">Vue.js</a>. The blog series is also cross-posted to
<a href="https://dev.to/davefollett">dev.to</a>.</p>
<table class="table table-hover">
<thead class="thead-light">
<tr>
<th scope="col">Project</th>
<th scope="col">A New Vue on #JavaScript30</th>
<th scope="col">#JavaScript30</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">00 - Getting Started</th>
<td><a href="00 - Getting Started/index-VUE.html">index-VUE.html</a></td>
<td>N/A</td>
</tr>
<tr>
<th scope="row">01 - Javascript Drum Kit</th>
<td>
<a href="01 - JavaScript Drum Kit/index-VUE-V1.html">index-VUE-V1.html</a>
<br>
<a href="01 - JavaScript Drum Kit/index-VUE-V2.html">index-VUE-V2.html</a>
</td>
<td><a href="01 - JavaScript Drum Kit/index-FINISHED.html">index-FINISHED.html</a></td>
</tr>
<tr>
<th scope="row">02 - JS and CSS Clock</th>
<td><a href="02 - JS and CSS Clock/index-VUE.html">index-VUE.html</a></td>
<td><a href="02 - JS and CSS Clock/index-FINISHED.html">index-FINISHED.html</a></td>
</tr>
<tr>
<th scope="row">03 - CSS Variables</th>
<td>
<a href="03 - CSS Variables/index-VUE-COMPUTED-STYLES.html">index-VUE-COMPUTED-STYLES.html</a>
<br>
<a href="03 - CSS Variables/index-VUE-CSS-VARIABLES.html">index-VUE-CSS-VARIABLES.html</a>
</td>
<td><a href="03 - CSS Variables/index-FINISHED.html">index-FINISHED.html</a></td>
</tr>
<tr>
<th scope="row">05 - Flex Panel Gallery</th>
<td><a href="05 - Flex Panel Gallery/index-VUE.html">index-VUE.html</a></td>
<td><a href="05 - Flex Panel Gallery/index-FINISHED.html">index-FINISHED.html</a></td>
</tr>
<tr>
<th scope="row">06 - Type Ahead</th>
<td><a href="06 - Type Ahead/index-VUE.html">index-VUE.html</a></td>
<td><a href="06 - Type Ahead/index-FINISHED.html">index-FINISHED.html</a></td>
</tr>
<tr>
<th scope="row">08 - Fun with HTML5 Canvas</th>
<td><a href="08 - Fun with HTML5 Canvas/index-VUE.html">index-VUE.html</a></td>
<td><a href="08 - Fun with HTML5 Canvas/index-FINISHED.html">index-FINISHED.html</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>