diff options
Removed remnants of layout iteration and cleaned CSS
* both the CSS and master template markup contained cruft from the previous blog version and its slightly different layout
* removed unnecessary distinction between footer and its _taglist_ as the old footer element is now only a _taglist_
** promoted previous `last_line` to `footer` as it is the actual footer
* unified the different list styles as much as possible
** e.g. introduced new `topline` attribute instead of declaring the title-separator line for each style separately
** removed `taglist` class by declaring its rules directly in the `tags` id
** removed now unnecessary `archivtag` class
** introduced `sparselist` class which enables list such as the one contained the latest microblog entries to have extra padding
* merged `list_tags` helper template into primary master template
** this separation was not only unnecessary but decreased the readability as it provided no real encapsulation
Diffstat (limited to 'source/99_result/tag')
-rw-r--r-- | source/99_result/tag/tag.xsl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/99_result/tag/tag.xsl b/source/99_result/tag/tag.xsl index 5d41e0f..7043c1b 100644 --- a/source/99_result/tag/tag.xsl +++ b/source/99_result/tag/tag.xsl @@ -22,7 +22,8 @@ <xsl:text>All articles tagged as »</xsl:text> <xsl:value-of select="@handle"/> <xsl:text>«</xsl:text> - <ol> + + <ol class="topline"> <xsl:apply-templates /> </ol> </div> |