Skip to content

Commit

Permalink
Initial version of couchapp halfway working
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepwinter committed Apr 26, 2012
1 parent dad00ce commit 3310043
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 17 deletions.
7 changes: 7 additions & 0 deletions couchapp/.couchappignore
@@ -0,0 +1,7 @@
[
// filenames matching these regexps will not be pushed to the database
// uncomment to activate; separate entries with ","
// ".*~$"
// ".*\\.swp$"
// ".*\\.bak$"
]
1 change: 1 addition & 0 deletions couchapp/.couchapprc
@@ -0,0 +1 @@
{}
5 changes: 5 additions & 0 deletions couchapp/couchapp.json
@@ -0,0 +1,5 @@
{
"name": "Rhus",
"description": "A Community Ecology Mapping Tool",
"index" : "_rewrite/page/index"
}
34 changes: 17 additions & 17 deletions site/index.htm
Expand Up @@ -6,13 +6,13 @@

<title>Wildflowers of Detroit</title>
<link rel="stylesheet" href="thirdparty/openlayers/theme/default/style.css" type="text/css">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="stylesheet" type="text/css" href="/css/wildStyle.css">
<link rel="stylesheet" type="text/css" href="/css/google.css">
<link rel="stylesheet" type="text/css" href="/css/default.css">
<link rel="stylesheet" type="text/css" href="/css/external.css">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/milkbox/milkbox.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/wildStyle.css">
<link rel="stylesheet" type="text/css" href="css/google.css">
<link rel="stylesheet" type="text/css" href="css/default.css">
<link rel="stylesheet" type="text/css" href="css/external.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/milkbox/milkbox.css">



Expand All @@ -37,21 +37,21 @@

<div class="menuNav">
<div class="navItem">
<a id="getInvolvedButton" href="#"><img src="../resources/getInvolved.png"/></a></div>
<a id="getInvolvedButton" href="#"><img src="resources/getInvolved.png"/></a></div>
<div class="navItem">
<a id="timelineButton" href="#"><img src="../resources/timeline.png"/></a></div>
<a id="timelineButton" href="#"><img src="resources/timeline.png"/></a></div>
<div class="navItem">
<a id="aboutButton" href="#"><img src="../resources/about.png"/></a></div>
<a id="aboutButton" href="#"><img src="resources/about.png"/></a></div>
</div>
</div>

<div class="logo">
<div class="socialMedia">
<a href="https://twitter.com/#!/WinterRoot"><img id="twitter"src="/resources/twitter.png"/></a>
<a href="https://twitter.com/#!/WinterRoot"><img id="twitter"src="resources/twitter.png"/></a>

<a href="http://www.facebook.com/pages/WinterRoot/195344040507883"><img id="facebook" src="/resources/facebook-wood.png"/></a>
<a href="http://www.facebook.com/pages/WinterRoot/195344040507883"><img id="facebook" src="resources/facebook-wood.png"/></a>
</div>
<img src="../resources/logo.png"/>
<img src="resources/logo.png"/>
</div>

<!-- <div class="socialMedia">
Expand All @@ -62,7 +62,7 @@
<div class="mapcontainer">
<div id="callout" class="callout">

<img id="calloutCloseButton" class="calloutCloseButton" src="/resources/close.png" alt="Close Callout"/>
<img id="calloutCloseButton" class="calloutCloseButton" src="resources/close.png" alt="Close Callout"/>

<a href="" class="calloutLightboxLink" data-milkbox="gall1"> <img class="calloutThumbnail" src=""/></a>

Expand All @@ -72,7 +72,7 @@
</div>


<div id="getInvolved" class="timeline" style="display:none" ><img id="blank" src="../resources/blank.png"/>
<div id="getInvolved" class="timeline" style="display:none" ><img id="blank" src="resources/blank.png"/>
<div class="text">
<p>
<p style="color:#65A354;">THREE WAYS TO GET INVOLVED:</p><br/>
Expand All @@ -95,8 +95,8 @@
<p>WinterRoot is looking for collaborators on both the Wildflowers of Detroit and Rh&uuml;s open-source software projects! Check out the projects on github (<a href="https://github.com/deepwinter/rhus-web">website</a>, <a href="https://github.com/deepwinter/rhus-android">Android</a>, <a href="https://github.com/deepwinter/Wildflowers-of-Detroit-IPhone-App">iPhone</a>), or contact <a href="mailto:admin@wildflowersofdetroit.org">WinterRoot</a> for more info.</p>
</div>
</div>
<div id="timeline" class="timeline" style="display:none" ><img src="../resources/timelinePlaceholder.png"/></div>
<div id="about" class="timeline" style="display:none" ><img id="blank" src="../resources/blank.png"/>
<div id="timeline" class="timeline" style="display:none" ><img src="resources/timelinePlaceholder.png"/></div>
<div id="about" class="timeline" style="display:none" ><img id="blank" src="resources/blank.png"/>
<div class="text">
<p>

Expand Down

0 comments on commit 3310043

Please sign in to comment.