diff options
author | raylu <raylu@mixpanel.com> | 2011-07-02 17:02:07 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-02 17:02:07 -0700 |
commit | 05a2b26d9038752a40348a3f226e44710833c49b (patch) | |
tree | 9bc3e49ac2e84b33ca5ff6e44eb7e5f2c02d13bf /views/elements | |
parent | 83483a1826d1d05e2f9733746f35fef1939b8c0a (diff) | |
download | otakuhub-05a2b26d9038752a40348a3f226e44710833c49b.tar.xz |
pull in dev branch changes
not pulled: swiftmailer, gzip
Diffstat (limited to 'views/elements')
-rw-r--r-- | views/elements/animesearch.html.php | 4 | ||||
-rw-r--r-- | views/elements/authnav.html.php | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/views/elements/animesearch.html.php b/views/elements/animesearch.html.php new file mode 100644 index 0000000..370ff1a --- /dev/null +++ b/views/elements/animesearch.html.php @@ -0,0 +1,4 @@ +<tr><th>img</th><th>Name</th><th>Episodes</th><th>Type</th><th>Score</th></tr> + <?php foreach($content as $item): ?> + <tr><td>"image"</td><td><a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a></td> <td><?= $item->episode_count ?></td><td><?= $item->view_type ?></td><td><?= $item->mal_score ?></td></tr> +<?php endforeach; ?>
\ No newline at end of file diff --git a/views/elements/authnav.html.php b/views/elements/authnav.html.php index b961c39..e2f3d99 100644 --- a/views/elements/authnav.html.php +++ b/views/elements/authnav.html.php @@ -1,7 +1,7 @@ <nav> <ul id="nav"> <li class="current"><a href="/users/feed">Home</a></li> - <li><a href="about.html">Anime</a></li> + <li><a href="about.html">Anime</a> <ul> <li><a href="about.html">Top Anime</a> <li><a href="#">Recomendations</a></li> |