-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathrepos.html
27 lines (23 loc) · 893 Bytes
/
repos.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
---
layout: home
title: Repos
description: All repos
permalink: /repos
---
<section class="container-lg p-responsive py-5 py-md-6 my-lg-6">
<p class="text-center">
Repo stars don't tell the whole story, so support the community with a helpful ❤️ repo review ❤️
</p>
<p class="text-center">
<a href="https://github.com/repo-reviews/repo-reviews.github.io/blob/main/create.md" target="_blank" class="btn btn-outline">Create a review→</a>
</p>
</section>
<section class="">
<div class="container-lg p-responsive py-5 py-md-6 ">
<h2 class="alt-h2 text-center mb-3 mt-lg-6" id="testing">Repos Reviewed</h2>
<div>
{% for repo in site.repos %}
<li>[<a href="https://repo-reviews.github.io/repos/{{repo.repository_owner}}_{{repo.repository_name}}">{{ repo.repository_owner }}/{{ repo.repository_name }}</a>]</li>
{% endfor %}
</div>
</section>