mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-01-12 17:33:05 +08:00
39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
---
|
|
layout: default
|
|
title: Featured Apps
|
|
---
|
|
|
|
<div class="bg-gray-light">
|
|
<div class="container-lg px-3 page-section">
|
|
<h1 class="alt-h2">{{ page.title }}</h1>
|
|
|
|
<div class="d-md-flex flex-wrap gutter flex-auto">
|
|
{% assign apps = site.apps | sort: 'stars' | reverse %}
|
|
{% for app in apps %}
|
|
{% include app.html app=app %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="mt-6 pt-6">
|
|
<div class="d-md-flex gutter-md">
|
|
<div class="col-md-4">
|
|
<h3 class="alt-h4"><a href="https://github.com/search?q=topic%3Aprobot-plugin&type=Repositories">Browse GitHub</a></h3>
|
|
<p class="text-gray-light">
|
|
Browse the <a href="https://github.com/search?q=topic%3Aprobot-plugin&type=Repositories">#probot-plugin</a> topic on GitHub to find more apps to use and contribute to.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<h3 class="alt-h4"><a href="/docs/">Build your own app</a></h3>
|
|
<p class="text-gray-light">Don't see an app that meets your needs? Nothing to fear, you can build one.</p>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<h3 class="alt-h4"><a href="https://github.com/probot/probot.github.io/blob/master/CONTRIBUTING.md#adding-your-app">Share your app</a></h3>
|
|
<p class="text-gray-light">Is your app ready for prime time? List it in the app directory to gain more exposure.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|