Fix; site_css in sidebar
This commit is contained in:
parent
735dcd7e76
commit
d95bbdbd57
|
@ -4,6 +4,10 @@ GSL changes from releases. You can send an issue :
|
|||
- repo: https://git.a-lec.org/echolib/gsl/-/issues
|
||||
- Contact xmpp: im@echolib.re
|
||||
|
||||
## [0.1.4]
|
||||
- fix: $(site_css) in sidebar
|
||||
|
||||
|
||||
## [0.1.3]
|
||||
### Fix:
|
||||
- invalid argument
|
||||
|
|
2
control
2
control
|
@ -1,5 +1,5 @@
|
|||
Package: egsl
|
||||
Version: 0.1.3
|
||||
Version: 0.1.4
|
||||
Section: custom
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
|
|
|
@ -4,6 +4,10 @@ GSL changes from releases. You can send an issue :
|
|||
- repo: https://git.a-lec.org/echolib/gsl/-/issues
|
||||
- Contact xmpp: im@echolib.re
|
||||
|
||||
## [0.1.4]
|
||||
- fix: $(site_css) in sidebar
|
||||
|
||||
|
||||
## [0.1.3]
|
||||
### Fix:
|
||||
- invalid argument
|
||||
|
|
|
@ -209,16 +209,16 @@ create__HTML_sidebar_item() {
|
|||
cat <<EOSIDEBARITEM > "$1"
|
||||
<li class="${site_css}_list-post-item">
|
||||
<a href="/$gsl_slug_file"
|
||||
class="$(site_css)_list-post-link"
|
||||
class="${site_css}_list-post-link"
|
||||
title="$gsl_read $article_Author: $article_Title">
|
||||
|
||||
<span class="$(site_css)_list-post-title">$article_Title</span>
|
||||
<span class="${site_css}_list-post-title">$article_Title</span>
|
||||
|
||||
<div class="$(site_css)_list-post-metas">
|
||||
<div class="${site_css}_list-post-metas">
|
||||
$gsl_the $article_Date $gsl_by $article_Author
|
||||
</div>
|
||||
|
||||
<div class="$(site_css)_list-post-info">
|
||||
<div class="${site_css}_list-post-info">
|
||||
$article_Info
|
||||
</div>
|
||||
</a>
|
||||
|
|
|
@ -48,7 +48,7 @@ case "$1" in
|
|||
;;
|
||||
|
||||
latest|-l|oldest|-o)
|
||||
db__if_file;position="1 to $site_max_list"
|
||||
position="1 to $site_max_list"
|
||||
;;
|
||||
|
||||
*)
|
||||
|
|
Loading…
Reference in New Issue