@(q: String, questions: List[lila.qa.Question], popular: List[lila.qa.Question])(implicit ctx: Context) @title = @{ trans.search.txt() + " \"" + q.trim + "\"" } @layout(title = title) {

@q

@questions.size match { case 0 => { No question found. } case 1 => { One question found. } case x => { @x questions found. } }
@questions.map { q => @questionPreview(q) }

If you can't find an answer, feel free to ask your question!

}