Skip to content

Commit

Permalink
files added
Browse files Browse the repository at this point in the history
  • Loading branch information
enchained committed May 23, 2014
1 parent 120bba3 commit 2b1be85
Show file tree
Hide file tree
Showing 5 changed files with 293 additions and 0 deletions.
7 changes: 7 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#search-box {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
54 changes: 54 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" ng-app="myApp" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" ng-app="flickr-search" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Flickr Search</title>
<meta name="description" content="Picture search that uses Flickr API">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>

</head>
<body>
<div class="container">
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
Serch on Flickr: <input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>

<div ng-controller="SearchController as search">
<!-- <div class="thumbnail">
<img data-src="{{search.product.img}}" alt="{{search.product.title}}">
<div class="caption">
<h3>{{search.product.title}}</h3>
<p>{{search.product.title}}</p>
</div>
</div> -->

</div>
<a href="#" class="thumbnail">
<img data-src="http://totallyfrickinawesome.com/wp-content/uploads/2014/03/a94f9ddbaa4ec8ea829dc4a6ddac7b73-150x150.jpg" alt="...">
</a>
</div>








<script src="js/angular.min.js"></script>
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="js/filters.js"></script>
<script src="js/directives.js"></script>
</body>
</html>
Loading

0 comments on commit 2b1be85

Please sign in to comment.