-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
293 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.