| changeset 18 | 8cfd67425811 |
| parent 17 | 0ebcd5464503 |
| child 19 | 83fb90bdd15b |
--- a/base/src/sqwl/cms/FsArticle.scala Tue Dec 11 21:37:53 2018 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,12 +0,0 @@ -package sqwl.cms - -import java.nio.file.Path - -trait FsArticle extends iArticle { - - protected def contentPath: Path - protected def encoding: String = "UTF-8" - - override def htmlContent: String = - readFile(contentPath, encoding) getOrElse "" -}