forked from magnusstubman/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
goals.html
145 lines (126 loc) · 4.52 KB
/
goals.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<title>Perspective</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Top Starts -->
<div class="top">
<!-- Header Starts -->
<header>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="logo">
<h1><a href="http://perspective.github.io/perspective">Perspective <span class="tblue label">ALPHA</span></a></h1>
</div>
</div>
<div class="navigation pull-right">
<a href="index.html">Home</a>
<a href="goals.html">Goals</a>
<a href="https://github.com/perspective/dev">Contribute</a>
</div>
</div>
</div>
</header>
<!-- Header Ends -->
</div>
<!-- Top Ends -->
<!-- Feature Starts -->
<div class="features">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="feature-title text-center">
<h3>Our vision</h3>
<p>By providing information tailored to the needs of each individual at any given time, our vision is that Perspective
is <strong>the</strong> single tool you or your team needs to work in the most productive way possible</p>
</div>
</div>
</div>
</div>
</div>
<!-- Feature Ends -->
<!-- About starts -->
<div class="about">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="query">
<h3>Relevant</h3>
<ul>
<li>Be a tool that's used by everyone on the team</li>
<li>Provide each member of a team with the information most relevant to them at any given time. Examples include:
<ul>
<li>Specialized task list for prioritizing in product planning meetings</li>
<li>Stand-up boards for the whole team</li>
<li>Progress views for leaders and customers</li>
<li>Deployment and build views for developers and dev-ops</li>
<li>Capture all relevant information on a feature as from idea until it matures into production</li>
</ul>
</li>
</ul>
<h3>Accessible</h3>
<ul>
<li>Free and open-source so that anyone can use it and contribute</li>
<li>Installable behind a company's firewall or on your own machine</li>
<li>Designed for use with a regular computer, phone, TV or projector</li>
</ul>
<h3>Flexible</h3>
<ul>
<li>Have a need that is not covered by Perspective? Need to integrate with existing tools?
<ul>
<li>Look for an existing plugin that extends Perspective with the features you want</li>
<li>Write your own plugin and conquer the world :)</li>
</ul>
</li>
<li>Can be tailored to fit most processes</li>
</ul>
<h3>Simple</h3>
<ul>
<li>A user interface that is easy to use</li>
<li>No complex workflows or permission schemes</li>
<li>Sensible defaults. Less configuration</li>
</ul>
<h3>Fun</h3>
<p>Perspective is also a place to play around with new technology, just don't break anything ;-)
</p>
</div>
</div>
</div>
</div>
</div>
<!-- About ends -->
<!-- Footer starts -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="copy text-center">
<a href="https://github.com/perspective">Perspective on Github</a>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer Ends -->
<!-- Javascript files -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.min.js"></script>
<!-- Respond JS for IE8 -->
<script src="js/respond.min.js"></script>
<!-- HTML5 Support for IE -->
<script src="js/html5shiv.js"></script>
<!-- Custom JS -->
<script src="js/custom.js"></script>
</body>
</html>