forked from distributedgov/distributedgov.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
29 lines (29 loc) · 1023 Bytes
/
help.html
File metadata and controls
29 lines (29 loc) · 1023 Bytes
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
---
layout: default
title: Help
description: Remote / telework support.
excerpt: Remote / telework support.
---
<div class="container">
<div class="row">
<div class="col-md-12">
{% assign sorted = site.help | sort: 'date' | reverse %}
{% for item in sorted %}
<h2>
<a href="{{ item.url }}">{{ item.title }}</a>
</h2>
<p class="text-muted">Posted: {{ item.date | date: "%B, %-d %Y" }} ·
{% if item.author %}
{% assign author = site.data.people[item.author] %}
<a href="{{ author.url }}">{{ author.name }}</a>
{% endif %}
<p>
{{ item.description }}
</p>
{% endfor %}
<div class="alert alert-secondary" role="alert">
<p><strong>Have a question?</strong> <a href="{{ site.url }}/ask">Ask us anything</a>.</p>
</div>
</div>
</div>
</div>