-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
85 lines (71 loc) · 3.58 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
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GroceryWorks Demo Pages</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Scott Davis <[email protected]>">
<meta name="description" content="Different versions of GroceryWorks for demo">
<style>
caption{
font-style: italic;
font-weight: bold;
margin-top: 1em;
text-align: left;
}
table{
border-collapse: collapse;
border: 1px solid black;
text-align: left;
}
td{
padding: 1em;
vertical-align: top;
}
th{
background-color: #ccc;
padding: 1em;
}
tr{
border: 1px solid black;
}
</style>
</head>
<body>
<h1>GroceryWorks Demo Pages</h1>
<p>GroceryWorks is a fictional grocery store website for demo purposes. In addition to the <a href="../">reference implementation</a>, here are a number of alternate implementations that explore different aspects of web development.</p>
<table>
<caption>Alternate versions of GroceryWorks</caption>
<tr>
<th>Version</th>
<th>Description</th>
<th>Author</th>
</tr>
<tr>
<td><a href="../">Reference Implementation</a></td>
<td>This is the reference implementation of GroceryWorks. It is meant to be a "plain vanilla" version of the website, using modern HTML, CSS, and JS. It is notably framework-free, but not 100% dependency-free -- it includes a polyfill for the <dialog> element. </td>
<td>Scott Davis <a href="mailto: [email protected]">[email protected]</a></td>
</tr>
<tr>
<td><a href="unoptimized">Unoptimized</a></td>
<td>This version of GroceryWorks is purposely unoptimized. It is meant to be a "before" snapshot with massive images (close to 100 mb), no mobile optimization, no a11y, etc.</td>
<td>Scott Davis <a href="mailto: [email protected]">[email protected]</a></td>
</tr>
<tr>
<td>Web Components<br>(Coming Soon!)</td>
<td>In the vanilla <a href="../">reference implementation</a>, you can see that traditional CSS and JS are pathologically global. Using Web Components and JS Modules, you'll see that encapsulation dramatically cleans up the underlying implementation, leading to better scalability through highly cohesive, loosely coupled components. Fans of frameworks (React, Angular, Vue, et al) will find this codebase familiar. The upside? This codebase is 100% browser-native.
<p>For more information, see <a href="https://developers.google.com/web/fundamentals/web-components/">Building Components</a> from Google.</p>
</td>
<td>Scott Davis <a href="mailto: [email protected]">[email protected]</a></td>
</tr>
<tr>
<td>PWA<br>(Coming Soon!)</td>
<td>PWAs (Progressive Web Apps) are native-like mobile apps (iOS, Android) built using browser-native technology. It will provide an "installable experience" without an App Store, including a desktop icon, offline support, push notifications, and continuous updates via Service Workers.
<p>For more information, see <a href="https://developers.google.com/web/fundamentals/codelabs/your-first-pwapp/">
Your First Progressive Web App</a> from Google.</p>
</td>
<td>Scott Davis <a href="mailto: [email protected]">[email protected]</a></td>
</tr>
</table>
</body>
</html>