Skip to content

Commit

Permalink
Change copy.
Browse files Browse the repository at this point in the history
  • Loading branch information
soveran committed Mar 29, 2012
1 parent a2cea48 commit 91b1135
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 38 deletions.
91 changes: 56 additions & 35 deletions views/home.mote
@@ -1,35 +1,56 @@
<h1>Hello, world!</h1>

<p>
This is a <a href="http://cuba.is">Cuba</a> app skeleton,
using <a href="http://github.com/soveran/mote">mote</a> for the views.
This skeleton lives at
<a href="http://github.com/citrusbyte/cuba-app"
title="cuba-app">github.com/citrusbyte/cuba-app</a>.
</p>

<p>
The page you are looking at was generated by <code>app.rb</code>,
and the template is located at <code>views/home.mote</code>.
</p>

<h2>Testing</h2>

<p>
There's a user story written for you at <code>test/site.rb</code>.
Start adding whatever you want to test and then run <code>rake test</code>.

For convenience, you can also run <code>rake</code>, which just invokes
<code>rake test</code>.
</p>

<h2>Dependencies</h2>

<p>
All of the dependencies ideally should be pushed to the <code>.gems</code> file,
and should be required in <code>shotgun.rb</code>.

It's not required, but it would ease your life a lot if you use <code>dep</code>
to manage the dependencies. More info
<a href="http://github.com/twpil/dep">here</a>.
</p>
<div class="hero-unit">
<h1>Viva Cuba!</h1>

<p>
A small application developed using
<a href="http://cuba.is">Cuba</a> and <a
href="http://twitter.github.com/bootstrap/">Bootstrap</a>.
</p>
</div>

<h1 class="page-header">
Get started now!
<small>Clone <a href="https://github.com/citrusbyte/cuba-app">this app</a>
and get your project started.</small>
</h1>

<div class="row">
<div class="span4">
<h3>What's included</h3>

<p>
This is a <a href="http://cuba.is">Cuba</a> app skeleton,
using <a href="http://github.com/soveran/mote">Mote</a> for
the views and <a href="http://ohm.keyvalue.org">Ohm</a>
for the models. The page you are looking at was generated
by <code>app.rb</code>, and the content is located at
<code>views/home.mote</code>.
</p>
</div>

<div class="span4">
<h3>Testing</h3>

<p>
There's a user story written for you at
<code>test/site.rb</code>. Start adding whatever you want to
test and then run <code>rake test</code>. For convenience, you
can also run <code>rake</code>, which just invokes <code>rake
test</code>.
</p>
</div>

<div class="span4">
<h3>Dependencies</h3>

<p>
All of the dependencies ideally should be pushed to
the <code>.gems</code> file, and should be required in
<code>shotgun.rb</code>.

It's not required, but it would ease your life a lot if you
use <code>dep</code> to manage the dependencies. More info <a
href="http://github.com/twpil/dep">here</a>.
</p>
</div>
</div>
21 changes: 18 additions & 3 deletions views/layout.mote
Expand Up @@ -13,6 +13,11 @@
padding-top: 60px; /* 60px to make the container go all the
way to the bottom of the topbar */
}

footer {
margin-top: 40px;
border-top: 1px solid #EEE;
}
</style>
<script src="/js/less.js"></script>

Expand All @@ -29,7 +34,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">Site name</a>
<a class="brand" href="/">Site name</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="/">Home</a></li>
Expand All @@ -41,7 +46,7 @@
<li><a href="/signup">Signup</a></li>
% end
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
</div>
Expand All @@ -50,6 +55,16 @@
{{ partial "notices", session: session }}

{{ content }}
</div> <!-- /container -->

<footer class="footer">
<p>
<small>
This template is brought to you by <a href="http://citrusbyte.com">Citrusbyte</a>.
Clone <a href="https://github.com/citrusbyte/cuba-app">this app</a>
and get your project started.
</small>
</p>
</footer>
</div>
</body>
</html>

0 comments on commit 91b1135

Please sign in to comment.