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 "" }