modified: view/theme/smoothly/search_item.tpl
modified: view/theme/smoothly/theme.php modified: view/theme/smoothly/wall_item.tpl modified: view/theme/smoothly/wall_thread.tpl modified: view/theme/smoothly/wallwall_item.tpl modified: view/theme/smoothly/wallwall_thread.tpl
This commit is contained in:
parent
c44d068adf
commit
05223cc325
|
@ -1,3 +1,4 @@
|
|||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
|
@ -34,7 +35,7 @@
|
|||
</div>
|
||||
<div class="wall-item-author">
|
||||
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" title="$item.localtime">$item.ago</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
@ -3,15 +3,19 @@
|
|||
/*
|
||||
* Name: Smoothly
|
||||
* Description: Like coffee with milk. Theme works fine with iPad[2].
|
||||
* Version: Version 0.9.20-3
|
||||
* Version: Version 0.9.24-1
|
||||
* Author: Alex <https://friendica.pixelbits.de/profile/alex>
|
||||
* Maintainer: Alex <https://friendica.pixelbits.de/profile/alex>
|
||||
* Screenshot: <a href="screenshot.png">Screenshot</a>
|
||||
*/
|
||||
|
||||
$a = get_app();
|
||||
$a->theme_info = array();
|
||||
|
||||
function smoothly_init(&$a) {
|
||||
$cssFile = null;
|
||||
$ssl_state = null;
|
||||
$baseurl = $a->get_baseurl($ssl_state);
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
|
||||
<script>
|
||||
|
@ -95,7 +99,7 @@ $('.savedsearchterm').hover(
|
|||
</script>
|
||||
EOT;
|
||||
|
||||
// custom css
|
||||
/** custom css **/
|
||||
if (!is_null($cssFile)) {
|
||||
$a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
||||
}
|
||||
|
@ -109,6 +113,7 @@ if(! function_exists('_js_in_foot')) {
|
|||
/** @purpose insert stuff in bottom of page
|
||||
*/
|
||||
$a = get_app();
|
||||
$ssl_state = null;
|
||||
$baseurl = $a->get_baseurl($ssl_state);
|
||||
$bottom['$baseurl'] = $baseurl;
|
||||
$tpl = file_get_contents(dirname(__file__) . '/bottom.tpl');
|
||||
|
|
|
@ -39,6 +39,20 @@
|
|||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
|
||||
{{ if $item.has_cats }}
|
||||
<div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name
|
||||
<a href="$cat.removeurl" title="$remove">[$remove]</a>
|
||||
{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.has_folders }}
|
||||
<div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name
|
||||
<a href="$cat.removeurl" title="$remove">[$remove]</a>
|
||||
{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-social" id="wall-item-social-$item.id">
|
||||
|
@ -83,8 +97,10 @@
|
|||
</div>
|
||||
|
||||
<div class="wall-item-author">
|
||||
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
|
||||
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link">
|
||||
<span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span>
|
||||
</a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" title="$item.localtime">$item.ago</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -46,7 +46,8 @@
|
|||
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link">
|
||||
<span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span>
|
||||
</a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">• $item.ago</div>
|
||||
<div class="wall-item-ago">•</div>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" title="$item.localtime">$item.ago</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
@ -61,6 +62,20 @@
|
|||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
|
||||
{{ if $item.has_cats }}
|
||||
<div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name
|
||||
<a href="$cat.removeurl" title="$remove">[$remove]</a>
|
||||
{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.has_folders }}
|
||||
<div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name
|
||||
<a href="$cat.removeurl" title="$remove">[$remove]</a>
|
||||
{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
</div>
|
||||
</div>
|
||||
<!--
|
||||
|
|
|
@ -47,6 +47,20 @@
|
|||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
|
||||
{{ if $item.has_cats }}
|
||||
<div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name
|
||||
<a href="$cat.removeurl" title="$remove">[$remove]</a>
|
||||
{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.has_folders }}
|
||||
<div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name
|
||||
<a href="$cat.removeurl" title="$remove">[$remove]</a>
|
||||
{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -95,7 +109,7 @@
|
|||
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link">
|
||||
<span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span>
|
||||
</a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" title="$item.localtime">$item.ago</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-wrapper-end"></div>
|
||||
|
|
|
@ -45,7 +45,8 @@
|
|||
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link">
|
||||
<span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span>
|
||||
</a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">• $item.ago</div>
|
||||
<div class="wall-item-ago">•</div>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" title="$item.localtime">$item.ago</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
@ -59,6 +60,20 @@
|
|||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
|
||||
{{ if $item.has_cats }}
|
||||
<div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name
|
||||
<a href="$cat.removeurl" title="$remove">[$remove]</a>
|
||||
{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.has_folders }}
|
||||
<div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name
|
||||
<a href="$cat.removeurl" title="$remove">[$remove]</a>
|
||||
{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-social" id="wall-item-social-$item.id">
|
||||
|
|
Loading…
Reference in a new issue