diff options
author | friendica <info@friendica.com> | 2013-07-25 21:09:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-25 21:09:34 -0700 |
commit | c59fff945f6d7884622ce0ea919bc7843bafb1f0 (patch) | |
tree | 05a871c41a0eb6260f99fb21a3ab1054f712285d /view/tpl/channels.tpl | |
parent | e822ab65d7a3321b063725b52b32d392ad1c428b (diff) | |
download | volse-hubzilla-c59fff945f6d7884622ce0ea919bc7843bafb1f0.tar.gz volse-hubzilla-c59fff945f6d7884622ce0ea919bc7843bafb1f0.tar.bz2 volse-hubzilla-c59fff945f6d7884622ce0ea919bc7843bafb1f0.zip |
trying to center the selected channel on the manage page. Dreamhost really botched up my dev site so it's taking 5 minute per page load - and I don't have any more time to waste tweaking one line of CSS, grabbing a cup of coffee, and drinking it, before seeing the CSS changes. It still needs more tweaking but I might have to do that on the production site - which loads promptly.
Diffstat (limited to 'view/tpl/channels.tpl')
-rwxr-xr-x | view/tpl/channels.tpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/view/tpl/channels.tpl b/view/tpl/channels.tpl index a3acaac06..317384661 100755 --- a/view/tpl/channels.tpl +++ b/view/tpl/channels.tpl @@ -8,15 +8,19 @@ {{/if}} {{if $selected}} +<div id="selected-channel"> <div id="channels-selected">{{$msg_selected}}</div> {{include file="channel.tpl" channel=$selected}} <div class="channels-end selected"></div> +</div> {{/if}} <div id="channels-desc" class="descriptive-text">{{$desc}}</div> +<div id="all-channels"> {{foreach $all_channels as $chn}} {{include file="channel.tpl" channel=$chn}} {{/foreach}} +</div> <div class="channels-end all"></div> |