-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·37 lines (37 loc) · 1.4 KB
/
index.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
---
permalink: /
title: Methods
layout: page
---
<div class="usa-section intro-header">
<div class="usa-grid">
<p class="usa-font-lead no-print">{{ site.description }}</p>
</div>
</div>
<div class="usa-section">
{% for category in site.data.categories %}
<section class="usa-grid category usa-section category--{{ category.category_name | downcase }}" id="{{ category.category_name | downcase }}">
<h1 class="category--title category--{{ category.category_name | downcase }}--title">{{ category.category_name }}</h1>
<div class="usa-width-two-thirds">
<div class="category--header usa-content">
<p class="category--subtitle">{{ category.category_description }}</p>
<p><strong>Questions you may have at this point:</strong></p>
<ul>
{% for question in category.questions %}
<li>{{ question }}</li>
{% endfor %}
</ul>
<a href="{{ site.baseurl }}/{{ category.category_name | downcase }}" class="a-see-all">See all {{ category.category_name | downcase }} methods</a>
</div>
</div>
<div class="usa-width-one-third methods-listing">
<h2>Methods include</h2>
<ul>
{% for method in category.methods %}
<li><a href="{{ site.baseurl }}/{{ method | slugify }}">{{ method }}</a></li>
{% endfor %}
</ul>
</div>
</section>
{% endfor %}
</div>