1192f70f44
In the Stylesheet Tweaks, the owner of a Web can specify an @import rule to pull in CSS styles form an external file. This worked in the "show" view, but was broken in the "published" view. Fixed. Also, update a functional test to match Revision 313.
26 lines
703 B
Plaintext
26 lines
703 B
Plaintext
<%-
|
|
@title = @page.plain_name
|
|
@hide_navigation = false
|
|
@style_additions = ".newWikiWord { background-color: white; font-style: italic; }"
|
|
@inline_style = false
|
|
@show_footer = true
|
|
-%>
|
|
|
|
<%= @renderer.display_published %>
|
|
|
|
<div class="byline">
|
|
<%= @page.revisions? ? "Revised" : "Created" %> on <%= format_date(@page.revised_at) %>
|
|
by
|
|
<%= author_link(@page, { :mode => (@link_mode || :show) }) %>
|
|
</div>
|
|
|
|
<div class="navigation navfoot">
|
|
<span class="views">
|
|
<%- if WikiReference.pages_in_category(@web, 'S5-slideshow').map.include?(@page.name) -%>
|
|
Views:
|
|
<%= link_to 'S5', {:web => @web.address, :action => 's5',
|
|
:id => @page.name}, {:id => 'view_S5'} %>
|
|
<%- end -%>
|
|
</span>
|
|
</div>
|