client/app/home/home.html
author rougeronj
Mon, 23 Mar 2015 12:22:44 +0100
changeset 24 21ecbde9e080
parent 14 4d27fbc3f9df
child 27 2b508b65571a
permissions -rw-r--r--
add books controller to handle list of books
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<h1>Ammico Application</h1>
14
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
     2
<p>Liste des books&nbsp;:</p>
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
     3
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
     4
<ul class="row ">
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
     5
  <li class="" ng-repeat="i in books">
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
     6
    <div class="visites-list">
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
     7
       <a class="visite" href="">{{ i.title }}</a>
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
     8
    </div>
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
     9
  </li>
4d27fbc3f9df Succed to get the books from our api server and print them dynamically
rougeronj
parents: 0
diff changeset
    10
</ul>