diff options
author | friendica <info@friendica.com> | 2012-09-02 20:30:47 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-09-02 20:30:47 -0700 |
commit | aff33531acfdee5b21a96bb1723ae656be13ce91 (patch) | |
tree | 5e04d727df019787d2a201eb8cd0973f3e06f42e /view/tpl | |
parent | 58ddd2d565e320f62e0524b2a0eaaef4b940f60c (diff) | |
download | volse-hubzilla-aff33531acfdee5b21a96bb1723ae656be13ce91.tar.gz volse-hubzilla-aff33531acfdee5b21a96bb1723ae656be13ce91.tar.bz2 volse-hubzilla-aff33531acfdee5b21a96bb1723ae656be13ce91.zip |
channel/identity selection manage page
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/channel.tpl | 7 | ||||
-rw-r--r-- | view/tpl/channels.tpl | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/view/tpl/channel.tpl b/view/tpl/channel.tpl index a18c4c1bb..eb9635ce8 100644 --- a/view/tpl/channel.tpl +++ b/view/tpl/channel.tpl @@ -1,2 +1,5 @@ -<img class="channel-photo" src="$channel.photo" alt="$channel.name" /> -<div class="channel-name">$channel.name</div> +<div class="channel-selection"> +<a href="$channel.link" class="channel-selection-photo-link" title="$channel.entity_name"><img class="channel-photo" src="$channel.thumb" alt="$channel.entity_name" /></a> +<a href="$channel.link" class="channel-selection-name-link" title="$channel.entity_name"><div class="channel-name">$channel.entity_name</div></a> +</div> +<div class="channel-selection-end"></div> diff --git a/view/tpl/channels.tpl b/view/tpl/channels.tpl index bfff3964f..50366efa6 100644 --- a/view/tpl/channels.tpl +++ b/view/tpl/channels.tpl @@ -1,6 +1,5 @@ <h3>$header</h3> -<div id="channels-desc" class="descriptive-text">$desc</div> {{ if $links }} {{ for $links as $l }} @@ -8,12 +7,10 @@ {{ endfor }} {{ endif }} -<div align="center">{{ inc channel.tpl with $chn = $active }}</div> -<div align="center">$act_desc</div> - +<div id="channels-desc" class="descriptive-text">$desc</div> {{ for $all_channels as $chn }} -{{ inc channel.tpl with $channel = $chn }} +{{ inc channel.tpl with $channel=$chn }}{{ endinc }} {{ endfor }} <div class="channels-end"></div> |