-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathabout.html
More file actions
106 lines (94 loc) · 3.53 KB
/
Copy pathabout.html
File metadata and controls
106 lines (94 loc) · 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="Description" content="Author: Hoodie contributors">
<meta charset="utf-8">
<meta name="theme-color" content="#317EFB"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tracker | About</title>
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="assets/app.css" />
<link rel="manifest" href="/manifest.json">
</head>
<body data-account-state="">
<header>
<h1><a href="/">Tracker</a></h1>
<nav>
<ul>
<li>
<a href="account.html">
<h3><span data-hide-if="signed-in">Login/Sign up</span>
<span data-hide-if="signed-out" aria-hidden="true">📁</span>
<span data-hide-if="signed-out" data-value="username"></span></h3>
</a>
</li>
<li><h3><a href="about.html" class="active">About</a></h3></li>
</ul>
</nav>
</header>
<main>
<a href="/">
<h3><span aria-hidden="true">← </span>Return to the tracker<h3>
</a>
<h2>What is Hoodie Tracker?</h2>
<p>
<img src="/assets/low-profile-dog.png" alt="Illustration of Hoodie’s 'Low-Profile Dog' waving" class="low-profile-dog">
Hoodie Tracker is a simple application to get started with Hoodie.
It implements all the features that Hoodie gives you for free:
</p>
<ul>
<li>Add, update, remove and find data</li>
<li>Create an account, Login, Sign out, destroy account</li>
<li>Reset password</li>
<li>Change Username and Password</li>
</ul>
<p>
We intentionally kept its functionality, design and code to a minimum,
so you can use it as a starting point for your own app! Here’s a blog
post on
<a href="https://github.com/hoodiehq/editorial/issues/71">
How to get started with the new Hoodie (coming soon)
</a>
</p>
<h3>
Hoodie Camp Release
</h3>
<p><img src="/assets/hoodie-camp.png" alt="Illustration of a campsite with a modest tent" class="hoodie-camp"></p>
<p>
Hoodie Tracker is using the latest Hoodie Version which we call
“Camp Release”. The idea is Hoodie, as a product, is not ready. It’s
like a tent, while providing shelter, it’s a tarp some sticks and lines,
not too comfortable, but it gets the job done for a couple of nights.
But the Hoodie Camp is less about the product (the tent),
and more about the experience.
</p>
<p>
And if you run into a problem, we would love to help you fix the tent
yourself :) We put endless efforts to make Hoodie as friendly as
possible towards to contributors like yourself. For example, we curate a
list of
<a href="http://go.hood.ie/hoodie-starter-issues">
great starter issues
</a>,
but you can
<a href="http://hood.ie/contribute/">
contribute much more than just code
</a>.
</p>
<h3>Questions? Ideas?</h3>
<p>
Talk to us :) We are
<a href="https://twitter.com/hoodiehq">
@hoodiehq
</a>
on Twitter, and we’ve setup a
<a href="http://hood.ie/chat/">
chat
</a>.
</p>
</main>
<script src="/hoodie/client.js"></script>
<script src="assets/js/common.js"></script>
<script src="assets/js/start-service-worker.js"></script>
</body>
</html>