Initial docs

This commit is contained in:
lvuch
2018-04-12 13:59:16 -07:00
commit d1752b4c7c
195 changed files with 131650 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<div class="slider js_slider percentage">
<div class="frame js_frame">
<ul class="slides js_slides">
{{ .Inner }}
</ul>
</div>
<span class="js_prev prev" style="padding-left: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 501.5 501.5"><g><path fill="#2E435A" d="M302.67 90.877l55.77 55.508L254.575 250.75 358.44 355.116l-55.77 55.506L143.56 250.75z"/></g></svg>
</span>
<span class="js_next next" style="padding-right: 10px;">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 501.5 501.5"><g><path fill="#2E435A" d="M199.33 410.622l-55.77-55.508L247.425 250.75 143.56 146.384l55.77-55.507L358.44 250.75z"/></g></svg>
</span>
</div>
+21
View File
@@ -0,0 +1,21 @@
<table>
<thead>
<tr>
<th>Version</th>
<th>Host OS</th>
<th>Kubernetes*</th>
<th>Docker</th>
</tr>
</thead>
<tbody>
{{ range .Site.Data.compatibility.version }}
<tr>
<td>{{.number}}</td>
<td>{{.os}}</td>
<td>{{.kubernetes}}</td>
<td>{{.docker}}</td>
</tr>
{{ end }}
</tbody>
</table>
+17
View File
@@ -0,0 +1,17 @@
{{ range .Site.Data.homepage.testimonial }}
<li class="js_slide testimonial m-a-sm">
<!-- <hr/> -->
<blockquote class="text-lg text-left p-a-md m-a-0">
<div class="p-b-sm">"{{.quote}}"</div>
<hr class="m-a-0" />
<div class="row middle-md between-md p-a-sm border-right">
<div class="col-md-2 p-a-sm p-l-0">
<img src="{{ .Site.BaseURL }}/img/quotelogos/{{.logo}}" alt="{{.company}}">
</div>
<div class="col-md-10 p-a-0">
<cite class="text-md text-left p-l-sm">{{.source}},<br/>{{.position}}, {{.company}}</cite>
</div>
</div>
</blockquote>
</li>
{{ end }}
+9
View File
@@ -0,0 +1,9 @@
<button class="modal-open btn border-btn" data-launch-id="{{.Get `modalContentId`}}">{{.Get "buttonText"}}</button>
<div class="modal-content" id="{{.Get `modalContentId`}}">
<div id="content">{{.Inner}}</div>
<div id="footer-button-label" data-footer-label="{{.Get `modalFooterButtonLabel`}}"></div>
<div id="css-classes" data-css-classes="{{.Get `modalCssClasses`}}"></div>
<div id="close-label" data-close-label="{{.Get `modalCloseLabel`}}"></div>
<div id="include-footer" data-include-footer="{{.Get `includeFooter`}}"></div>
<div id="sticky-footer" data-sticky-footer="{{.Get `stickyFooter`}}"></div>
</div>
+14
View File
@@ -0,0 +1,14 @@
<div class="row">
{{ range .Site.Data.partners.partner }}
<div class="col-md-3 box m-a-sm">
<img src="{{ .Site.BaseURL }}/img/{{.logo}}" height="50" alt="{{.name}}">
<h3>{{.name}}</h3>
<p>{{.description}}</p>
<span class="row">
{{ range .type }}
<span class="bg-accent tag">{{ . }}</span>
{{ end }}
</span>
</div>
{{ end }}
</div>
+20
View File
@@ -0,0 +1,20 @@
<table>
<thead>
<tr>
<th>Rancher Version</th>
<th>Release Date</th>
<th>End full support</th>
<th>Dend maintainance support</th>
</tr>
</thead>
<tbody>
{{ range .Site.Data.support.table }}
<tr>
<td>{{.rancher}}</td>
<td>{{.release}}</td>
<td>{{.full}}</td>
<td>{{.maintain}}</td>
</tr>
{{ end }}
</tbody>
</table>
+22
View File
@@ -0,0 +1,22 @@
<div class="slider js_slider js_multislides multislides">
<div class="frame js_frame">
<ul class="testimonials slides js_slides">
{{ range .Site.Data.testimonials.testimonial }}
<li class="js_slide testimonial">
<div class="p-a-xs bg-accent">{{.company}}</div>
<div class="p-a-sm">
<img src="{{ .Site.BaseURL }}/img/quotelogos/{{.logo}}" height="50" alt="{{.company}}">
<p>{{.quote}}</p>
<cite>{{.source}}, {{.position}}</cite>
</div>
</li>
{{ end }}
</ul>
</div>
<span class="js_prev prev">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 501.5 501.5"><g><path fill="#2E435A" d="M302.67 90.877l55.77 55.508L254.575 250.75 358.44 355.116l-55.77 55.506L143.56 250.75z"/></g></svg>
</span>
<span class="js_next next">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 501.5 501.5"><g><path fill="#2E435A" d="M199.33 410.622l-55.77-55.508L247.425 250.75 143.56 146.384l55.77-55.507L358.44 250.75z"/></g></svg>
</span>
</div>