34 lines
639 B
Plaintext
Executable file
34 lines
639 B
Plaintext
Executable file
<% content_for :title do %>
|
|
- <%= t(:about,:scope=>:internal) %>
|
|
<% end %>
|
|
|
|
<% content_for :sidebar do %>
|
|
<%= content_for_sidebar %>
|
|
<% end %>
|
|
|
|
<div class="block">
|
|
<div class="navigation-tabs clearfix">
|
|
<%= raw single_navigation(:about,:internal) %>
|
|
</div>
|
|
<div class="content">
|
|
|
|
<h4>
|
|
<%= t(:current_version,:scope=>:internal) + ": " + $defaults["version"] %>
|
|
</h4>
|
|
|
|
<div class="md">
|
|
<%= raw BlueCloth::new(render :file => 'README.markdown').to_html %>
|
|
</div>
|
|
|
|
<div class="md">
|
|
<%= raw BlueCloth::new(render :file => 'CHANGES').to_html %>
|
|
</div>
|
|
|
|
<div class="md">
|
|
<%= raw BlueCloth::new(render :file => 'TODO').to_html %>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|