Skip to content

Commit d928e1e

Browse files
committed
Add missing footers
In #1152 the footer partial was only added to the index.rhtml file. This commit adds the footer partial to the other template files.
1 parent 6abf596 commit d928e1e

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed

lib/rdoc/generator/template/darkfish/class.rhtml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
<%= render '_sidebar_extends.rhtml' %>
1717
<%= render '_sidebar_methods.rhtml' %>
1818
</div>
19+
20+
<%= render '_footer.rhtml' %>
1921
</nav>
2022

2123
<main role="main" aria-labelledby="<%=h klass.aref %>">

lib/rdoc/generator/template/darkfish/page.rhtml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<div id="project-metadata">
1313
<%= render '_sidebar_pages.rhtml' %>
1414
</div>
15+
16+
<%= render '_footer.rhtml' %>
1517
</nav>
1618

1719
<main role="main" aria-label="Page <%=h file.full_name%>">

lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
<%= render '_sidebar_pages.rhtml' %>
1111
<%= render '_sidebar_classes.rhtml' %>
1212
</div>
13+
14+
<%= render '_footer.rhtml' %>
1315
</nav>
1416

1517
<main role="main">

lib/rdoc/generator/template/darkfish/servlet_root.rhtml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<%= render '_sidebar_search.rhtml' %>
1313
</div>
1414

15-
<%= render '_sidebar_installed.rhtml' %>
15+
<%= render '_sidebar_installed.rhtml' %>
16+
<%= render '_footer.rhtml' %>
1617
</nav>
1718

1819
<main role="main">

lib/rdoc/generator/template/darkfish/table_of_contents.rhtml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
<%= render '_sidebar_search.rhtml' %>
99
</div>
10+
11+
<%= render '_footer.rhtml' %>
1012
</nav>
1113
<main role="main">
1214
<h1 class="class"><%= h @title %></h1>

0 commit comments

Comments
 (0)