forked from OpenROV/page-openrov-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.html
37 lines (31 loc) · 1.14 KB
/
sitemap.html
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
---
sitemap: false
layout: default
---
<article>
<section id="sitemap" class="section swatch-white element-medium-top element-medium-bottom">
<div class="container">
<header class="text-center element-no-top element-no-bottom condensed os-animation" data-os-animation="fadeIn" data-os-animation-delay="0s">
<h1 class="or-section-title-dark">
OpenROV.com Sitemap
</h1>
</header>
<!--<div class="row element-medium-top product-bottom-row">-->
<div class="row element-medium-top">
<div class="col-md-12 linkImage text-left">
<ul>
{% for page in site.pages %}
{% if page.sitemap != false %}
{% unless page.url contains '.css' %}
{% unless page.url contains 'bower_' %}
<li><a href="{{ site.url }}{{ page.url }}">{{page.title}}</a></li>
{% endunless %}
{% endunless %}
{% endif %}
{% endfor %}
</ul>
</div>
</div>
</div>
</section>
</article>