Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
26
app/views/welcome/index.html.erb
Normal file
26
app/views/welcome/index.html.erb
Normal file
|
@ -0,0 +1,26 @@
|
|||
<h2><%= l(:label_home) %></h2>
|
||||
|
||||
<div class="splitcontentleft">
|
||||
<div class="wiki">
|
||||
<%= textilizable Setting.welcome_text %>
|
||||
</div>
|
||||
<%= call_hook(:view_welcome_index_left) %>
|
||||
</div>
|
||||
|
||||
<div class="splitcontentright">
|
||||
<% if @news.any? %>
|
||||
<div class="news box">
|
||||
<h3><%=l(:label_news_latest)%></h3>
|
||||
<%= render :partial => 'news/news', :collection => @news %>
|
||||
<%= link_to l(:label_news_view_all), :controller => 'news' %>
|
||||
</div>
|
||||
<% end %>
|
||||
<%= call_hook(:view_welcome_index_right) %>
|
||||
</div>
|
||||
|
||||
<% content_for :header_tags do %>
|
||||
<%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
|
||||
:title => "#{Setting.app_title}: #{l(:label_news_latest)}") %>
|
||||
<%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
|
||||
:title => "#{Setting.app_title}: #{l(:label_activity)}") %>
|
||||
<% end %>
|
10
app/views/welcome/robots.html.erb
Normal file
10
app/views/welcome/robots.html.erb
Normal file
|
@ -0,0 +1,10 @@
|
|||
User-agent: *
|
||||
<% @projects.each do |p| -%>
|
||||
Disallow: /projects/<%= p.to_param %>/repository
|
||||
Disallow: /projects/<%= p.to_param %>/issues
|
||||
Disallow: /projects/<%= p.to_param %>/activity
|
||||
<% end -%>
|
||||
Disallow: /issues/gantt
|
||||
Disallow: /issues/calendar
|
||||
Disallow: /activity
|
||||
Disallow: /search
|
Loading…
Add table
Add a link
Reference in a new issue