-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
64 lines (55 loc) · 2.81 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
layout: home
title: Repo Reviews
description: Make repos better, together.
permalink: /
---
<section class="container-lg p-responsive py-5 py-md-6 my-lg-6">
<p class="text-center">
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>
<p class="text-center">
Microsoft MVP <a href="https://github.com/JanDeDobbeleer">Jan De Dobbeleer</a> includes repo-reviews for <a href="https://github.com/JanDeDobbeleer/oh-my-posh">oh-my-posh</a>!
</p>
<p class="text-center">
Have you added a <a href="https://github.com/repo-reviews/repo-reviews.github.io/tree/main#add-badges">review me badge</a> to your `README`?
</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">Recent Reviews</h2>
<div>
<!-- {% assign sorted = site.reviews | reverse %}
-->
{% assign sorted = site.reviews | sample:10 %}
{% for review in sorted limit:10 %}
<li>[<a href="https://repo-reviews.github.io/repos/{{review.repository_owner}}_{{review.repository_name}}">{{ review.repository_owner }}/{{ review.repository_name }}</a>] <a href="https://repo-reviews.github.io/authors/{{review.author_github_id}}">@{{ review.author_github_id}}</a> - <a href="https://repo-reviews.github.io/{{review.url | relative_url}}">{{ review.review_title }}</a></li>
{% endfor %}
</div>
</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">Highlighted Reviews (beta)</h2>
<div>
<!-- {% assign sorted = site.reviews | reverse %}
-->
{% assign sorted = site.reviews | sample:10 %}
{% for review in sorted limit:5 %}
<li>[<a href="https://repo-reviews.github.io/repos/{{review.repository_owner}}_{{review.repository_name}}">{{ review.repository_owner }}/{{ review.repository_name }}</a>] <a href="https://repo-reviews.github.io/authors/{{review.author_github_id}}">@{{ review.author_github_id}}</a> - <a href="https://repo-reviews.github.io/{{review.url | relative_url}}">{{ review.review_title }}</a></li>
{% endfor %}
</div>
</section>
<section id="contact-a-human" class="bg-gray-light">
<div class="container-lg p-responsive py-5 py-md-6 text-center">
<span class="text-center">
{% octicon person height:42 class:"d-block mx-auto mb-4 text-center fill-gray" aria-label:person %}
</span>
<h3 class="alt-h2 mb-4">Add Repo Reviews badges to your repo</h3>
<p>View our <a href="https://github.com/repo-reviews/repo-reviews.github.io/tree/main#add-badges">README.md</a> for details.</p>
</div>
</section>