mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
50 lines
1.6 KiB
Text
50 lines
1.6 KiB
Text
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||
|
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fi" >
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||
|
<meta http-equiv="Content-Style-Type" content="text/css" />
|
||
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
||
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
||
|
<%= stylesheet_link_tag "application" %>
|
||
|
<%= javascript_include_tag "application" %>
|
||
|
<%= csrf_meta_tag %>
|
||
|
<title>ENSL</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="indexContainer">
|
||
|
<div id="indexMain">
|
||
|
<%= render :partial => "layouts/header" %>
|
||
|
|
||
|
<div id="indexForums">
|
||
|
<% if flash[:notice] %>
|
||
|
<div class="flashMsg">
|
||
|
<%= flash[:notice] %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
<% if flash[:error] %>
|
||
|
<div class="flashMsg flashError">
|
||
|
<%= flash[:error] %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
<%= yield %>
|
||
|
|
||
|
<div style="clear:both;"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div id="indexFooter">
|
||
|
<% if cuser and (g = cuser.gathers.active.ordered.first) %>
|
||
|
<%= link_to "You're in THIS gather", g %>
|
||
|
<% elsif (Gather::FULL - Gather.last.gatherers.count) == 12 %>
|
||
|
Be first to join the <%= link_to "Gather", Gather.last %>!
|
||
|
<% else %>
|
||
|
<%= link_to "Gather", Gather.last %> running, <%= Gather::FULL - Gather.last.gatherers.count %> more needed.
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|