Skip to content

Commit

Permalink
Better copy
Browse files Browse the repository at this point in the history
  • Loading branch information
6 committed Nov 11, 2012
1 parent c161a9a commit c6e337c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server.coffee
Expand Up @@ -14,7 +14,7 @@ app.get '/', (req, res) ->
res.render 'index', {title: 'About Dex'}

app.get '/new', (req, res) ->
res.render 'new', {title: 'Create a Custom API'}
res.render 'new', {title: 'Build a Custom API'}

app.get '/api.json', (req, res) =>
url = _.str.trim(req.query.url)
Expand Down
2 changes: 1 addition & 1 deletion views/index.jade
Expand Up @@ -8,7 +8,7 @@ block content
section.content.homebox
h2 What is Dex?
p(style='white-space:pre;')
p Dex lets you <a href="/new">create a custom JSON API</a> for any website. Easily extract the data you need from anywhere on the web.
p Dex lets you <a href="/new">build a custom JSON API</a> for any website. Easily extract data from anywhere on the web.

section.content.homebox
h2 Why use Dex?
Expand Down
2 changes: 1 addition & 1 deletion views/layout.jade
Expand Up @@ -18,7 +18,7 @@ body
header
.container
nav
- links = [{title:'About Dex', href:'/'}, {title:'Create a Custom API', href:'/new'}]
- links = [{title:'About Dex', href:'/'}, {title:'Build a Custom API', href:'/new'}]
- each link in links
a(href=link.href, class=(link.title == title ? 'active' : ''))= link.title
<iframe id='nko-button' src="http://nodeknockout.com/iframe/mahou-shoujo-billyh" frameborder=0 scrolling=no allowtransparency=true width=115 height=25></iframe>
Expand Down

0 comments on commit c6e337c

Please sign in to comment.