diff options
author | Joey Hess <joey@kitenet.net> | 2012-07-31 12:17:31 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-07-31 12:17:31 -0400 |
commit | 04794eafc0f0fd09e645247136fe557fd80bfb55 (patch) | |
tree | 92ca3260821cdc99c0d47907765ee862c6d23782 /templates/configurators/intro.hamlet | |
parent | b9b009787662cda4948b3c9706b8897587d05d8a (diff) |
webapp now starts up when run not in a git repo
Diffstat (limited to 'templates/configurators/intro.hamlet')
-rw-r--r-- | templates/configurators/intro.hamlet | 51 |
1 files changed, 26 insertions, 25 deletions
diff --git a/templates/configurators/intro.hamlet b/templates/configurators/intro.hamlet index ecb15f39c..5062346a8 100644 --- a/templates/configurators/intro.hamlet +++ b/templates/configurators/intro.hamlet @@ -1,27 +1,28 @@ <div .span9 ##{ident} .hero-unit> - <h2> - git-annex is watching over your files in <small><tt>#{reldir}</tt></small> - <p> - It will automatically notice changes, and keep files in sync between # - $if notenough - repositories on your devices ... - <h2> - But no other repositories are set up yet. - <a .btn .btn-primary .btn-large href="@{AddRepositoryR}">Add another repository</a> - $else - $if barelyenough - <span .badge .badge-warning>#{numrepos}</span> + $maybe reldir <- relDir webapp + <h2> + git-annex is watching over your files in <small><tt>#{reldir}</tt></small> + <p> + It will automatically notice changes, and keep files in sync between # + $if notenough + repositories on your devices ... + <h2> + But no other repositories are set up yet. + <a .btn .btn-primary .btn-large href="@{AddRepositoryR}">Add another repository</a> $else - <span .badge .badge-success>#{numrepos}</span> - \ repositories and devices: - <table .table .table-striped .table-condensed> - <tbody> - $forall (num, name) <- remotelist - <tr> - <td> - #{num} - <td> - #{name} - <a .btn .btn-primary .btn-large href="@{AddRepositoryR}">Add another repository</a> - <p> - Or just sit back, watch the magic, and get on with using your files. + $if barelyenough + <span .badge .badge-warning>#{numrepos}</span> + $else + <span .badge .badge-success>#{numrepos}</span> + \ repositories and devices: + <table .table .table-striped .table-condensed> + <tbody> + $forall (num, name) <- remotelist + <tr> + <td> + #{num} + <td> + #{name} + <a .btn .btn-primary .btn-large href="@{AddRepositoryR}">Add another repository</a> + <p> + Or just sit back, watch the magic, and get on with using your files. |