Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Templates #396

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _data/toc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"Getting Started": [
"docs/README.md",
"docs/quickstarts.md",
"docs/hello-world.md",
"docs/development.md",
"docs/webhooks.md",
Expand Down
1 change: 1 addition & 0 deletions _data/toc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Getting Started:
- docs/README.md
- docs/quickstarts.md
- docs/hello-world.md
- docs/development.md
- docs/webhooks.md
Expand Down
Binary file added assets/img/checks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/comment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/deploy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/pr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion community.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<div class="container-lg px-3 featurette">
<h1 class="h2 text-center">Join the Community</h1>
<p class="alt-lead col-md-8 text-center color-text-secondary mx-auto">
<p class="lead col-md-8 text-center color-text-secondary mx-auto">
We're thrilled that you'd like to contribute to this project. Your help is
essential for keeping it great.
</p>
Expand Down
67 changes: 65 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h2 class="h2 lh-condensed">
GitHub Apps to automate <br />and improve your workflow
</h2>
<p
class="alt-lead color-text-tertiary mt-2 lh-condensed"
class="lead color-text-tertiary mt-2 lh-condensed"
style="opacity: 0.6"
>
Use pre-built apps to extend GitHub,<br />
Expand Down Expand Up @@ -57,7 +57,70 @@ <h2 class="h1 text-center">Explore</h2>
</div>
</div>

<div id="build" class="border-top page-section f4 pt-4">
<div id="build" class="border-top page-section f4 pt-4 py-1">
<div class="container-lg px-3">
<h2 class="h1 text-center lh-condensed">Quickstarts</h2>
<p class="lead text-center">Apps are easy to write and share.</p>
<p class="text-center">
<a href="/docs/">Get started with this app {% octicon "chevron-right" %}</a>
</p>

<div class="page-section d-flex flex-column flex-md-row gutter flex-items-center flex-md-items-center my-3">
<div class="col-md-7 hide-md">
<img alt="" src="/assets/img/comment.png" class="width-fit">
</div>
<div class="col-md-6">
<h3 class="alt-h3 mb-2">Comment on an Issue</h3>
<p class="">
Get started with an app that will post a comment any time an issue is opened.
</p>
<p class="mt-3">
<a href="/docs/">Get started with this app {% octicon "chevron-right" %}</a>
</p>
</div>
</div>

<div class="page-section d-flex flex-column flex-md-row gutter flex-items-center flex-md-items-center my-3">
<div class="col-md-6">
<h3 class="alt-h3 mb-2">Create a Check</h3>
<p class="">
Get started with an app that creates successful checks on pull requests.
</p>
<p class="mt-3">
<a href="/docs/">Get started with this app {% octicon "chevron-right" %}</a>
</p>
</div>

<div class="col-md-7 hide-md">
<img alt="" src="/assets/img/checks.png" class="width-fit">
</div>
</div>

<div class="page-section d-flex flex-column flex-md-row gutter flex-items-center flex-md-items-center my-3">
<div class="col-md-7 hide-md">
<img alt="" src="/assets/img/pr.png" class="width-fit">
</div>
<div class="col-md-6">
<h3 class="alt-h3 mb-2">Open a Pull Request</h3>
<p class="">
Get started with an app that will open a new pull request when you install it on your repository.
</p>
<p class="mt-3">
<a href="/docs/">Get started with this app {% octicon "chevron-right" %}</a>
</p>
</div>
</div>

<p class="text-center mb-6">
<a class="btn btn-outline btn-large" href="/docs/">
{% octicon "versions" class="mr-2" %}
Browse Quickstarts
</a>
</p>
</div>
</div>

<div id="build" class="border-top page-section f4 py-3">
<div class="container-lg px-3">
<h2 class="h1 text-center lh-condensed">Build your own app</h2>
<p class="alt-lead text-center mb-6">Apps are easy to write and share.</p>
Expand Down