# File lib/mongrel_config/app.rb, line 75
  def show
    div do
      h2 { "Status" }
      if _running?
        p { "Currently running with PID #{_pid}." }
      else
        p { "Mongrel is not running." }
      end
    end
  end