--- a/base/src/sqwl/cms/layout/PrimaryView.scala Thu Dec 13 14:21:10 2018 +0100
+++ b/base/src/sqwl/cms/layout/PrimaryView.scala Thu Dec 13 15:15:13 2018 +0100
@@ -9,8 +9,9 @@
st match {
case ViewArticle(art) => Some(tags2.section(
h1(a(href:=s"/${http.prefix}/${art.pathSegment}", art.title)),
- div(cls:="row", art.tags.map(t =>
- a(href:=s"/${http.prefix}/$TAG/${t.pathSegment}", cls:="tag", s"(${t.name})"))),
+ div(cls:="row", div(cls:="col-md-12", art.tags.map(t =>
+ a(href:=s"/${http.prefix}/$TAG/${t.pathSegment}", cls:="tag",
+ t.name)))),
raw(art.htmlContent)
))
case _ => None