|
@@ -1,33 +1,51 @@
|
1
|
1
|
<%inherit file="local:templates.master"/>
|
2
|
2
|
|
3
|
3
|
<%def name="title()">
|
4
|
|
- Welcome to TurboGears 2.3, standing on the shoulders of giants, since 2007
|
|
4
|
+ pod :: take notes, list tasks, write documents, manage projects
|
5
|
5
|
</%def>
|
6
|
6
|
|
7
|
7
|
<div class="row">
|
8
|
|
- <div class="span9 hidden-phone hidden-tablet">
|
9
|
|
- <div class="hero-unit">
|
10
|
|
- <h1>pod <small>your information compagnion</small></h1>
|
|
8
|
+ <div class="span9">
|
|
9
|
+ <div class="row">
|
|
10
|
+ <div class="well">
|
|
11
|
+ <h1>pod <small>your information compagnion</small></h1>
|
|
12
|
+ </div>
|
11
|
13
|
</div>
|
12
|
14
|
|
13
|
|
- <div class="row">
|
14
|
|
- <div class="span2 alert alert-success">
|
15
|
|
- <p><button><i class="icon-g-cardio"></i> <strong>Track</strong> projects</button></p>
|
16
|
|
- <p><button><i class="icon-g-edit"></i> <strong>Take</strong> notes</button></p>
|
17
|
|
- <p><button><i class="icon-g-attach"></i> <strong>Keep</strong> files</button></p>
|
18
|
|
- <span><button><i class="icon-g-ok"></i> <strong>Manage</strong> status</button></span>
|
|
15
|
+ <div class="row hidden-phone hidden-tablet">
|
|
16
|
+ <div class="span3 text-right">
|
|
17
|
+ <p>Take <strong>notes</strong> <i class="pod-blue fa-2x fa-fw fa fa-pencil" style="vertical-align: middle;"></i></p>
|
|
18
|
+ <p>List <strong>tasks</strong> <i class="pod-blue fa-2x fa-fw fa fa-list" style="vertical-align: middle;"></i></p>
|
|
19
|
+ <p>Write <strong>documents</strong> <i class="pod-blue fa-2x fa-fw fa fa-file-text-o" style="vertical-align: middle;"></i></p>
|
|
20
|
+ <p>Change <strong>Status</strong> <i class="pod-blue fa-2x fa-fw fa fa-check-square-o" style="vertical-align: middle;"></i> </p>
|
|
21
|
+ </div>
|
|
22
|
+ <div class="span1 text-center" title="${_('What for?')}">
|
|
23
|
+ <i class="fa fa-angle-double-right fa-5x"></i><br/>
|
19
|
24
|
</div>
|
20
|
|
- <div class="span6 well well-small">
|
21
|
|
- <h5>
|
22
|
|
- <i class="fa fa-users fa-2x"></i>
|
23
|
|
- Use cases
|
24
|
|
- </h5>
|
25
|
|
- <ul>
|
26
|
|
- <li>Search a job</li>
|
27
|
|
- <li>Manage clients</li>
|
28
|
|
- <li>Track tasks</li>
|
29
|
|
- <li>...</li>
|
30
|
|
- </ul>
|
|
25
|
+
|
|
26
|
+ <div class="span5">
|
|
27
|
+ <div class="well text-center">
|
|
28
|
+ <div class="row">
|
|
29
|
+ % for id, (icon, label) in enumerate((('fa-search', 'Search'), ('fa-dashboard', 'Track'), ('fa-sort-alpha-asc', 'Organize'), ('fa-users', 'Manage'))):
|
|
30
|
+ <div class="span1">
|
|
31
|
+ % for i in range(id):
|
|
32
|
+ <br/>
|
|
33
|
+ % endfor
|
|
34
|
+ <i class="pod-blue fa-3x fa-fw fa ${icon}"></i>
|
|
35
|
+ <br/>
|
|
36
|
+ <strong>${label}</strong>
|
|
37
|
+ </div>
|
|
38
|
+ % endfor
|
|
39
|
+ </div>
|
|
40
|
+ </div>
|
|
41
|
+ </div>
|
|
42
|
+ </div>
|
|
43
|
+
|
|
44
|
+ <div class="row hidden-phone hidden-tablet">
|
|
45
|
+ <div class="span5 offset4 text-center" style="vertical-align: top;">
|
|
46
|
+ <strong>
|
|
47
|
+ jobs, projects, prospects, clients, knowledge, ...
|
|
48
|
+ </strong>
|
31
|
49
|
</div>
|
32
|
50
|
</div>
|
33
|
51
|
</div>
|