diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-04-20 00:02:18 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-04-20 00:02:18 -0400 |
commit | 83683b516ec058d0e5fdd0d4a1defbd22a60c322 (patch) | |
tree | ec970c671a945a6f64543b62ebdd37647abc89d6 /view/theme/diabook/diabook-aerith/nets.tpl | |
parent | ccdac0cd99edafdae4348709fcd23f446d1aee18 (diff) | |
parent | c88dd1485f31a129f6e00bf92afee241708e7da9 (diff) | |
download | volse-hubzilla-83683b516ec058d0e5fdd0d4a1defbd22a60c322.tar.gz volse-hubzilla-83683b516ec058d0e5fdd0d4a1defbd22a60c322.tar.bz2 volse-hubzilla-83683b516ec058d0e5fdd0d4a1defbd22a60c322.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
diabook-themes: theme-settings: add "colour scheme"-option, add diabook-pink and some bug/css-fixes
* master:
Diffstat (limited to 'view/theme/diabook/diabook-aerith/nets.tpl')
-rw-r--r-- | view/theme/diabook/diabook-aerith/nets.tpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/view/theme/diabook/diabook-aerith/nets.tpl b/view/theme/diabook/diabook-aerith/nets.tpl new file mode 100644 index 000000000..be25ddee1 --- /dev/null +++ b/view/theme/diabook/diabook-aerith/nets.tpl @@ -0,0 +1,15 @@ +<div id="profile_side"> + <h3 style="margin-left: 2px;">$title</h3> + <div id="nets-desc">$desc</div> + + <ul class="menu-profile-side"> + <li class="menu-profile-list"> + <span class="menu-profile-icon {{ if $sel_all }}group_selected{{else}}group_unselected{{ endif }}"></span> + <a style="text-decoration: none;" href="$base" class="menu-profile-list-item">$all</a></li> + {{ for $nets as $net }} + <li class="menu-profile-list"> + <span class="menu-profile-icon {{ if $net.selected }}group_selected{{else}}group_unselected{{ endif }}"></span> + <a href="$base?nets=$net.ref" class="menu-profile-list-item">$net.name</a></li> + {{ endfor }} + </ul> +</div> |