Sha256: 36b4f45b8d58018a75c34059ae0341e463b6484d7fda7a8968c5f2b5b1f78ff5

Contents?: true

Size: 1.61 KB

Versions: 7

Compression:

Stored size: 1.61 KB

Contents

<% @editor_scope = true %>

<% 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(@entry) %>
  <%= render('pageflow/editor/entries/indicators_seed', theme: @entry.theming.theme) %>
<% end %>

<%= render('pageflow/editor/entries/help_entries_seed', config: @entry_config) %>

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pageflow-0.11.4 app/views/pageflow/entries/edit.html.erb
pageflow-12.0.0.rc2 app/views/pageflow/entries/edit.html.erb
pageflow-12.0.0.rc1 app/views/pageflow/entries/edit.html.erb
pageflow-0.11.3 app/views/pageflow/entries/edit.html.erb
pageflow-0.11.2 app/views/pageflow/entries/edit.html.erb
pageflow-0.11.1 app/views/pageflow/entries/edit.html.erb
pageflow-0.11.0 app/views/pageflow/entries/edit.html.erb