Skip to content

Commit da4ec93

Browse files
committed
Finish EJS3+ include syntax conversion. No comment.
1 parent 1b3b111 commit da4ec93

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

templates/api.ejs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<% var hasSidebar = true; %>
2-
<% include('_header.ejs') %>
2+
<%- include('_header.ejs') %>
33
<section id="api">
4-
<% include('_api-menu.ejs') %>
4+
<%- include('_api-menu.ejs') %>
55
<div class="main" tabindex="-1">
66
<div class="content">
77
<%- contents %>
88
</div>
99
</div>
1010
</section>
11-
<% include('_footer.ejs') %>
11+
<%- include('_footer.ejs') %>

templates/assertion.ejs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<% var hasSidebar = true; %>
2-
<% include('_header.ejs') %>
2+
<%- include('_header.ejs') %>
33
<section id="assertions">
4-
<% include('_assertions-menu.ejs') %>
4+
<%- include('_assertions-menu.ejs') %>
55
<div class="main" tabindex="-1">
66
<div class="content">
77
<% if (declarations.length > 0) { %>
@@ -16,4 +16,4 @@
1616
</div>
1717
</div>
1818
</section>
19-
<% include('_footer.ejs') %>
19+
<%- include('_footer.ejs') %>

templates/default.ejs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<% include('_header.ejs') %>
1+
<%- include('_header.ejs') %>
22
<div class="main" tabindex="-1">
33
<div class="content">
44
<%- contents %>
55
</div>
66
<a class="github-ribbon" href="<%-repository%>"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"></a>
77
</div>
8-
<% include('_footer.ejs') %>
8+
<%- include('_footer.ejs') %>

templates/type.ejs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<% var hasSidebar = true; %>
2-
<% include('_header.ejs') %>
2+
<%- include('_header.ejs') %>
33
<section id="assertions">
4-
<% include('_assertions-menu.ejs') %>
4+
<%- include('_assertions-menu.ejs') %>
55
<div class="main" tabindex="-1">
66
<div class="content">
77
<h1><%= title %></h1>
@@ -13,4 +13,4 @@
1313
</div>
1414
</div>
1515
</section>
16-
<% include('_footer.ejs') %>
16+
<%- include('_footer.ejs') %>

0 commit comments

Comments
 (0)