Skip to content

Commit 99f2475

Browse files
Repo tables.
1 parent fdabf8a commit 99f2475

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

docs/_includes/notify-repo-table.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<h2>Repository List</h2>
2+
3+
<table>
4+
<tr>
5+
<th>Repository Name</th><th>More Info</th>
6+
</tr>
7+
{% for repo in site.notify-repos %}
8+
<tr>
9+
<td>
10+
{{repo.repo-name}}
11+
</td>
12+
<td>
13+
<a href="{{site.baseurl}}/notify-repos/{{repo.repo-name}}.html">
14+
{{ repo.name }} - {{ repo.description }}
15+
</a>
16+
</td>
17+
</tr>
18+
{% endfor %}
19+
</table>

docs/_layouts/notify-repo.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ layout: default
44

55
<h1>{{page.name}} Repository</h1>
66

7+
<p>
78
{{page.description}}
9+
</p>
10+
11+
<p>
12+
<a href="https://github.com/NHSDigital/{{page.repo-name}}">https://github.com/NHSDigital/{{page.repo-name}}</a>
13+
</p>
814

915
<h2>Authors</h2>
1016

docs/notify-repos.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ nav_order: 6
55
has_children: false
66
---
77

8-
{% include notify-repo-list.html %}
8+
{% include notify-repo-table.html %}

0 commit comments

Comments
 (0)