@(story: Story)(implicit request: RequestHeader)
  1. Analysis
  2. Background
    @story.contentByAnalysis.zipWithRowInfo.map{ case(c, info) => @{ c match { case a: Article => { fragments.storyArticle(a) } } } @if(story.hasQuotes) { @story.contentWithQuotes.drop(info.rowNum-1).headOption.map{ quote =>
  • @fragments.quote(story, info.rowNum-1)
  • } } }

Back to top

@fragments.explainer(story) @fragments.agents(story)