summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorraylu <raylu@mixpanel.com>2011-07-04 02:44:57 -0700
committerraylu <raylu@mixpanel.com>2011-07-04 02:44:57 -0700
commit47581aa5b4f85522a1ec171eae76da6105b3b954 (patch)
tree3306245d3b296b27435cc5b3766567625c9f0794 /views
parentd8c9eac73efb7ed766763e972a4db6d46d0735e8 (diff)
downloadotakuhub-47581aa5b4f85522a1ec171eae76da6105b3b954.tar.xz
reorganize CSS... with fire
Diffstat (limited to 'views')
-rw-r--r--views/layouts/default.html.php5
-rw-r--r--views/pages/feed.html.php6
-rw-r--r--views/pages/home.html.php4
-rw-r--r--views/users/signup.html.php4
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: ?>