Class: ContentfulBootstrap::ThanksView

Inherits:
BaseTemplate
  • Object
show all
Defined in:
lib/contentful_bootstrap/server.rb

Instance Method Summary collapse

Instance Method Details

#_bodyObject



27
28
29
30
31
32
33
34
35
# File 'lib/contentful_bootstrap/server.rb', line 27

def _body
  div(class: "container") {
    div(class: "jumbotron") {[
      h1 { "Contentful Bootstrap" },
      h4 { "Thanks! The OAuth Token has been generated" },
      p { "The Space you specified will now start to create. You can close this window freely" }
    ]}
  }
end

#_headObject



23
24
25
# File 'lib/contentful_bootstrap/server.rb', line 23

def _head
  link(rel: "stylesheet", href: "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css")
end