57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>
|
|
<% if @page and (@page.name == 'HomePage') and (%w( show published print ).include?(@action_name)) %>
|
|
<%= @web.name %>
|
|
<% elsif @web %>
|
|
<%= @title %> in <%= @web.name %>
|
|
<% else %>
|
|
<%= @title %>
|
|
<% end %>
|
|
</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<style type="text/css">
|
|
h1#pageName, .newWikiWord a, a.existingWikiWord, .newWikiWord a:hover, #TextileHelp h3 {
|
|
color: #<%= @web ? @web.color : "393" %>;
|
|
}
|
|
|
|
#Container, #Content {
|
|
width: <%= @content_width || "600" %>px;
|
|
}
|
|
<%= File.read(RAILS_ROOT + '/public/stylesheets/instiki.css') if @inline_style %>
|
|
</style>
|
|
|
|
<link rel="Stylesheet" href="/stylesheets/instiki.css" type="text/css" media="screen" />
|
|
|
|
<style type="text/css">
|
|
<%= @style_additions %>
|
|
<%= @web ? @web.additional_style : '' %>
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="Container">
|
|
<div id="Content">
|
|
|
|
<h1 id="pageName">
|
|
<% if @page and (@page.name == 'HomePage') and %w( show published print ).include?(@action_name) %>
|
|
<%= @web.name %>
|
|
<% elsif @web %>
|
|
<small><%= @web.name %></small><br />
|
|
<%= @title %>
|
|
<% else %>
|
|
<%= @title %>
|
|
<% end %>
|
|
</h1>
|
|
|
|
<%= render 'navigation' unless @web.nil? || @hide_navigation %>
|
|
<%= @content_for_layout %>
|
|
|
|
</div> <!-- Content -->
|
|
</div> <!-- Container -->
|
|
</body>
|
|
</html>
|