diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/layouts/default.html.php | 5 | ||||
-rw-r--r-- | views/pages/feed.html.php | 6 | ||||
-rw-r--r-- | views/pages/home.html.php | 4 | ||||
-rw-r--r-- | views/users/signup.html.php | 4 |
4 files changed, 16 insertions, 3 deletions
diff --git a/views/layouts/default.html.php b/views/layouts/default.html.php index 1eac7f1..af60100 100644 --- a/views/layouts/default.html.php +++ b/views/layouts/default.html.php @@ -7,8 +7,9 @@ use \lithium\security\Auth; <?= $this->html->charset() ?> <title>OtakuHub<?php $title = $this->title(); if ($title) echo " > $title" ?></title> <?= $this->html->style(array('style', 'base')) ?> - <?= $this->html->style(array('themes/light')) ?> - <?= $this->html->style(array('prettyPhoto')) ?> + <?= $this->html->style('themes/light') ?> + <?= $this->html->style('prettyPhoto') ?> + <?= $this->styles(); ?> <script type="text/javascript" > function clearDefault(el) { diff --git a/views/pages/feed.html.php b/views/pages/feed.html.php index 69cb163..b5c9bf6 100644 --- a/views/pages/feed.html.php +++ b/views/pages/feed.html.php @@ -1,3 +1,7 @@ +<?php +$this->styles($this->html->style("/css/feed.css")); +?> + <h2 class="ribbon full">edude03's feed</h2> <div class="triangle-ribbon"></div> <br class="cl" /> @@ -11,4 +15,4 @@ </ul> </div> <br class="cl"> - </div>
\ No newline at end of file + </div> diff --git a/views/pages/home.html.php b/views/pages/home.html.php index bdb46ca..96e9920 100644 --- a/views/pages/home.html.php +++ b/views/pages/home.html.php @@ -1,3 +1,7 @@ +<?php +$this->styles($this->html->style("/css/home.css")); +?> + <h1>The Otaku Social Network</h1> <a href="/users/signup">Sign up!</a> <svg height="0"> diff --git a/views/users/signup.html.php b/views/users/signup.html.php index 920827a..185fcae 100644 --- a/views/users/signup.html.php +++ b/views/users/signup.html.php @@ -1,3 +1,7 @@ +<?php +$this->styles($this->html->style("/css/signup.css")); +?> + <?php if (isset($key)): ?> Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a> <?php else: ?> |