# File lib/rdoc/generator/darkfish.rb, line 423
  def assemble_template body_file
    body = body_file.read
    return body if body =~ /<html/

    head_file = @template_dir + '_head.rhtml'
    footer_file = @template_dir + '_footer.rhtml'

    "<!DOCTYPE html>\n\n<html>\n<head>\n\#{head_file.read}\n\n\#{body}\n\n\#{footer_file.read}\n"
  end