diff options
author | Thomas Willingham <founder@kakste.com> | 2013-06-07 03:46:43 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-06-07 03:46:43 +0100 |
commit | 466a6d5227fbaf0a36cd76b5603cb42bb1b7462b (patch) | |
tree | 395936a63e27fa105e0dc69d13c1b951dc9e9439 /view/tpl | |
parent | dc6472e046ee6ac0afc934e8ad1edc1e281a3cb0 (diff) | |
parent | c21f8c68e39e22a0348e5717109f0005d4d35809 (diff) | |
download | volse-hubzilla-466a6d5227fbaf0a36cd76b5603cb42bb1b7462b.tar.gz volse-hubzilla-466a6d5227fbaf0a36cd76b5603cb42bb1b7462b.tar.bz2 volse-hubzilla-466a6d5227fbaf0a36cd76b5603cb42bb1b7462b.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/alt_pager.tpl | 4 | ||||
-rwxr-xr-x | view/tpl/mail_list.tpl | 2 | ||||
-rwxr-xr-x | view/tpl/nav.tpl | 2 | ||||
-rwxr-xr-x | view/tpl/opensearch.tpl | 15 | ||||
-rwxr-xr-x | view/tpl/photo_albums.tpl | 2 |
5 files changed, 12 insertions, 13 deletions
diff --git a/view/tpl/alt_pager.tpl b/view/tpl/alt_pager.tpl new file mode 100644 index 000000000..b46dc7662 --- /dev/null +++ b/view/tpl/alt_pager.tpl @@ -0,0 +1,4 @@ +<div class="pager"> +{{if $has_less}}<a href="{{$url}}&page={{$prevpage}}" class="pager-prev">{{$less}}</a>{{/if}} +{{if $has_more}}{{if $has_less}} | {{/if}}<a href="{{$url}}&page={{$nextpage}}" class="pager-next">{{$more}}</a>{{/if}} +</div> diff --git a/view/tpl/mail_list.tpl b/view/tpl/mail_list.tpl index 717df51d5..10f453632 100755 --- a/view/tpl/mail_list.tpl +++ b/view/tpl/mail_list.tpl @@ -4,9 +4,9 @@ * *}} <div class="mail-list-wrapper"> + <span class="mail-delete"><a href="message/dropconv/{{$id}}" onclick="return confirmDelete();" title="{{$delete}}" class="icon drophide mail-list-delete delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></span> <a href="{{$from_url}}" class="mail-list-sender-url" ><img class="mail-list-sender-photo" src="{{$from_photo}}" alt="{{$from_name}}" /></a> <span class="mail-from">{{$from_name}}</span> <span class="mail-subject {{if $seen}}seen{{else}}unseen{{/if}}"><a href="message/{{$id}}" class="mail-link">{{$subject}}</a></span> <span class="mail-date" title="{{$date}}">{{$date}}</span> - <span class="mail-delete"><a href="message/dropconv/{{$id}}" onclick="return confirmDelete();" title="{{$delete}}" class="icon drophide mail-list-delete delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></span> </div> diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index beddc9109..1470d0725 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -11,7 +11,7 @@ <ul> {{if $userinfo}} - <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="{{$userinfo.name}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"></a> + <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="{{$userinfo.name}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"><span class="nav-dropdown-indicator">∇</span></a> {{if $localuser}} <ul id="nav-user-menu" class="menu-popup"> {{foreach $nav.usermenu as $usermenu}} diff --git a/view/tpl/opensearch.tpl b/view/tpl/opensearch.tpl index 63d2a1752..26fb5a799 100755 --- a/view/tpl/opensearch.tpl +++ b/view/tpl/opensearch.tpl @@ -1,15 +1,10 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} <?xml version="1.0" encoding="UTF-8"?> <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"> - <ShortName>Friendika@{{$nodename}}</ShortName> - <Description>Search in Friendika@{{$nodename}}</Description> - <Contact>http://bugs.friendika.com/</Contact> - <Image height="16" width="16" type="image/png">{{$baseurl}}/images/friendika-16.png</Image> - <Image height="64" width="64" type="image/png">{{$baseurl}}/images/friendika-64.png</Image> + <ShortName>Red Matrix@{{$nodename}}</ShortName> + <Description>Search in The Red Matrix@{{$nodename}}</Description> + <Contact>http://github.com/friendica/red/</Contact> + <Image height="16" width="16" type="image/png">{{$baseurl}}/images/rhash-16.png</Image> + <Image height="64" width="64" type="image/png">{{$baseurl}}/images/rhash-64.png</Image> <Url type="text/html" template="{{$baseurl}}/search?search={searchTerms}"/> <Url type="application/opensearchdescription+xml" diff --git a/view/tpl/photo_albums.tpl b/view/tpl/photo_albums.tpl index b74c73fd3..935b2df0d 100755 --- a/view/tpl/photo_albums.tpl +++ b/view/tpl/photo_albums.tpl @@ -8,7 +8,7 @@ {{if $albums}} <ul> {{foreach $albums as $al}} -<li><a href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}">{{$al.album}}</a></li> +<li><a href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}">{{$al.text}}</a></li> {{/foreach}} </ul> {{/if}} |