define [
  'jade!templates/index'
], (IndexTemplate) ->

  class IndexView extends Backbone.View

    el: "#{{ project }}"

    events: {}

    initialize: (@options) ->

    render: ->
      content = """{{ project }}"""
      @$el.html IndexTemplate(content: content)
      @
