-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpages.html
More file actions
30 lines (30 loc) · 1.29 KB
/
pages.html
File metadata and controls
30 lines (30 loc) · 1.29 KB
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
---
layout: category_list
title: Explore Pages
add_to_menu: false
description: "All pages of the Help Center"
---
<div class="topics-area bg-color1">
<div class="topics-wrapper section-spacing bminus-30">
<div class="container">
<div class="col">
<div class="row">
<article class="topics-service bg-color3 wow fadeIn" data-wow-duration="3s">
<header class="topics-title">
<h4 class="heading-4 ">{{site.data.ui-text[site.locale].all_pages | default: "Pages" }}</h4>
</header>
<ul class="list-inline">
{% for page in site.data.navigation.items %}
{% capture page_text %}{{ page.text}}{% endcapture %}
{% capture page_url %}{{ page.url}}{% endcapture %}
<li><a href="{{ page_url | append: '/' | relative_url }}" class="article_link">{{ page_text }} </a></li>
{% endfor %}
</ul>
</article>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Topics Area -->