# File lib/PageTemplate/commands.rb, line 337
    def elsif(value)
      raise Argumentrror, "'elsif' cannot be passed after 'else' or in an 'unless'" if @switched || @in_else
      @trueCommands << [value,BlockCommand.new]
    end