mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
Merge pull request #60 from sgvictorino/empty-description-fixes
fix: handle empty songs descriptions on lyrics and album pages
This commit is contained in:
commit
8241deac12
2 changed files with 9 additions and 7 deletions
|
@ -23,6 +23,7 @@ templ AlbumPage(a data.Album) {
|
|||
</a>
|
||||
}
|
||||
</div>
|
||||
if a.About[0] != "" {
|
||||
<div id="info">
|
||||
<div id="about">
|
||||
<h1 id="title">About</h1>
|
||||
|
@ -30,6 +31,7 @@ templ AlbumPage(a data.Album) {
|
|||
<p id="summary">{ a.About[1] }</p>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ templ LyricsPage(s data.Song) {
|
|||
@templ.Raw(s.Lyrics)
|
||||
</div>
|
||||
<div id="info">
|
||||
if s.About[0] != "" {
|
||||
if s.About[0] != "?" {
|
||||
<div id="about">
|
||||
<h1 id="title">About</h1>
|
||||
<p class="hidden" id="full_about">{ s.About[0] }</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue