Sha256: 8ba0aa6a9dd9c89f3ad64bdfdc9a451ce38ce7a90e74e29145123a09a008c766

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 KB

Contents

<% content_for(:head) do %>
    <%= stylesheet_link_tag('pageflow/application_with_simulated_media_queries', media: 'all', 'data-turbolinks-track' => true) %>
    <%= entry_theme_stylesheet_link_tag(@entry) %>
    <%= entry_stylesheet_link_tag(@entry) %>
    <%= stylesheet_link_tag 'pageflow/editor', media: "all" %>
    <%= javascript_include_tag 'pageflow/editor' %>
<% end %>

<main class="ui-layout-center">
  <div id="entry_preview"></div>
  <div id="main_content"></div>
  <div id="editor_indicators"></div>
</main>

<sidebar class="ui-layout-east editor">
  <div class="scrolling">
    <div class="notifications_container"></div>
    <div class="container"></div>
  </div>
  <div class="help_button_container"></div>
</sidebar>

<div class="dialog_container">
</div>

<div class="editor" id="editor_menu_container">
</div>

<%= form_for editor_entry_files_path(@entry, collection_name: 'image_files'), :html => {:multipart => true, :id => 'upload'} do |f| %>
  <%= f.file_field :attachment, :multiple => true, :name => 'image_file[attachment]' %>
<% end %>

<script>
  I18n.defaultLocale = "<%= I18n.default_locale %>";
  I18n.locale = "<%= I18n.locale %>";

  pageflow.startEditor({entryId: <%= @entry.id %>})
</script>

<% I18n.with_locale(@entry.locale) do %>
  <%= page_type_templates %>
<% end %>

<%= render('pageflow/editor/entries/help_entries_seed', config: @entry_config) %>
<%= render('pageflow/editor/entries/indicators_seed', theme: @entry.theming.theme) %>

<%= render('pageflow/editor/entries/analytics', entry: @entry) %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pageflow-0.9.2 app/views/pageflow/entries/edit.html.erb
pageflow-0.9.1 app/views/pageflow/entries/edit.html.erb
pageflow-0.9.0 app/views/pageflow/entries/edit.html.erb