-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathtemplate.js
38 lines (38 loc) · 1.25 KB
/
template.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module.exports = {
template: `
<div class="page-container">
<div class="api-container">
<section class="component-description">
{{{description}}}
<section class="component-api space-top">
{{> properties this}}
{{> slots this}}
{{> events this}}
{{> methods this}}
{{> cssVariables this}}
</section>
</section>
</div>
</div>
{{#each additionalDocs}}
<div class="api-container appended-doc">
<h1>{{this.basename}}</h1>
<section class="component-description">
{{{this.description}}}
<section class="component-api space-top">
{{> properties this}}
{{> slots this}}
{{> events this}}
{{> cssVariables this}}
</section>
</section>
</div>
{{/each}}
<footer class="footer-wrapper">
<div class="footer-links">
<a class="separator" href="https://www.sap.com/about/legal/privacy.html" target="_blank">Privacy Policy</a>
<a href="https://www.sap.com/about/legal/impressum.html" target="_blank">Legal</a>
</div>
<img src="../../../../../../images/sap-logo-svg.svg" alt="Sap Logo" />
</footer>`
};