Skip to content

Commit

Permalink
initial files
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Murphey committed Mar 15, 2010
1 parent 938a2df commit d2b3ccb
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.wiki
@@ -0,0 +1,2 @@
= srchr =
srchr is a crowdsourced exercise in collecting JavaScript wisdom. For more information, visit http://blog.rebeccamurphey.com/2010/03/14/crowdsourcing-javascript-wisdom/.
Binary file added docs/mock.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
44 changes: 44 additions & 0 deletions src/index.html
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>srchr</title>
<link rel="stylesheet" href="css/styles.css" type="text/css" media="screen" charset="utf-8" />
</head>
<body>
<header>
<h1>srchr</h1>
<fieldset>
<input type="search" name="search" id="search" />
<input type="submit" id="search_submit" />
</fieldset>

<fieldset>
<ul>
<li>
<input type="checkbox" name="flickr" value="1" />
<label for="flickr">Flickr</label>
</li>
<li>
<input type="checkbox" name="yahoo" value="1" />
<label for="flickr">Yahoo! Search</label>
</li>
<li>
<input type="checkbox" name="upcoming" value="1" />
<label for="flickr">Upcoming</label>
</li>
</ul>
</fieldset>
</header>

<ul id="search_terms">
</ul>

<ul id="search_results">
</ul>

<!-- use google-hosted javascript library of your choice -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="js/srchr.js"></script>
</body>
</html>
Empty file added src/js/srchr.js
Empty file.

0 comments on commit d2b3ccb

Please sign in to comment.