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