mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionicApp">
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
|
|
|
<title>Ionic Flickr</title>
|
|
|
|
<link href="http://code.ionicframework.com/nightly/css/ionic.min.css" rel="stylesheet">
|
|
<link href="style.css" rel="stylesheet">
|
|
|
|
<script src="http://code.ionicframework.com/nightly/js/ionic.bundle.min.js"></script>
|
|
<script src="http://code.angularjs.org/1.2.12/angular-resource.js"></script>
|
|
<script src="script.js"></script>
|
|
|
|
</head>
|
|
|
|
<body ng-controller="FlickrCtrl">
|
|
|
|
<ion-header-bar class="bar-dark">
|
|
<h1 class="title">Flickr Search</h1>
|
|
</ion-header-bar>
|
|
|
|
<div id="search-bar">
|
|
<div class="item item-input-inset">
|
|
<label class="item-input-wrapper" id="search-input">
|
|
<i class="icon ion-search placeholder-icon"></i>
|
|
<input type="text" placeholder="Search" ng-model="query" ng-change="search()">
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<ion-content id="content" push-search>
|
|
<div id="photos" class="clearfix">
|
|
<div class="photo" ng-repeat="photo in photos.items">
|
|
<img ng-src="{{ photo.media.m }}">
|
|
</div>
|
|
</div>
|
|
</ion-content>
|
|
|
|
</body>
|
|
|
|
</html>
|