Sha256: 54bccca507949b17d3ac216a1e600791421110b155e51df6534bfa098dd912e3

Contents?: true

Size: 1.89 KB

Versions: 8

Compression:

Stored size: 1.89 KB

Contents

!!!
%html
  %head
    = render 'layouts/tramway/landing/meta'
    %title
      = yield :title
    = stylesheet_link_tag    'tramway/landing/application', media: 'all'
    = javascript_include_tag 'tramway/landing/application'
    = javascript_include_tag 'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js', integrity: 'sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl', crossorigin: 'anonymous'
    = javascript_include_tag 'https://code.jquery.com/jquery-3.2.1.slim.min.js', integrity: 'sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN', crossorigin: 'anonymous'
    = javascript_include_tag 'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js', integrity: 'sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q', crossorigin: 'anonymous'
    = csrf_meta_tags
    = yield :head_content
  %body
    = stylesheet_link_tag 'https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.4.5/css/mdb.min.css'
    = javascript_include_tag 'https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.4.5/js/mdb.js'
    = javascript_include_tag 'https://cdn.rawgit.com/CezarLuiz0/anchor.js/master/dist/anchor.min.js'
    = yield :body_content
    - if @blocks&.any?
      - headers = @blocks.select { |block| block.model.block_type.header? }
      - footers = @blocks.select { |block| block.model.block_type.footer? }
      - other_blocks = @blocks - headers - footers
      -# FIXME
      = render "tramway/landing/blocks/block_types/header", block: headers.first
      %main.mt-5
        .container
          - other_blocks.each_with_index do |block, index|
            = render "tramway/landing/blocks/block_types/#{block.model.block_type}", block: block
            - if index < other_blocks.count - 1 
              %hr
        .container-fluid
          = yield
      = render "tramway/landing/blocks/block_types/footer", block: footers.first

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
tramway-landing-1.5 app/views/layouts/tramway/landing/application.html.haml
tramway-landing-1.4.7.4 app/views/layouts/tramway/landing/application.html.haml
tramway-landing-1.4.7.3 app/views/layouts/tramway/landing/application.html.haml
tramway-landing-1.4.7.2 app/views/layouts/tramway/landing/application.html.haml
tramway-landing-1.4.7.1 app/views/layouts/tramway/landing/application.html.haml
tramway-landing-1.4.7 app/views/layouts/tramway/landing/application.html.haml
tramway-landing-1.4.6 app/views/layouts/tramway/landing/application.html.haml
tramway-landing-1.4.5 app/views/layouts/tramway/landing/application.html.haml