UNPKG

1.62 kBtext/x-handlebars-templateView Raw
1<!DOCTYPE html>
2<html lang="en" class="height-full">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <title>{{#if name }}{{ name }}{{else}}Your App{{/if}} | built with Probot</title>
8 <link rel="icon" href="/probot/static/probot-head.png">
9 <link rel="stylesheet" href="/probot/static/primer.css">
10 </head>
11 <body class="height-full bg-gray-light">
12 <div class="d-flex flex-column flex-justify-center flex-items-center text-center height-full">
13 <img src="/probot/static/robot.svg" alt="Probot Logo" width="100" class="mb-6">
14 <div class="box-shadow rounded-2 border p-6 bg-white">
15 <h1>
16 Welcome to {{#if name }}{{ name }}{{else}}your Probot App{{/if}}
17 {{#if version}}
18 <span class="Label Label--outline v-align-middle ml-2 text-gray-light">v{{ version }}</span>
19 {{/if}}
20 </h1>
21
22 {{#if description }}
23 <p>{{ description }}</p>
24 {{else}}
25 <p>This bot was built using <a href="https://github.com/probot/probot">Probot</a>, a framework for building GitHub Apps.</p>
26 {{/if}}
27 </div>
28
29 <div class="mt-4">
30 <h4 class="alt-h4 text-gray-light">Need help?</h4>
31 <div class="d-flex flex-justify-center mt-2">
32 <a href="https://probot.github.io/docs/" class="btn btn-outline mr-2">Documentation</a>
33 <a href="https://probot-slackin.herokuapp.com/" class="btn btn-outline">Chat on Slack</a>
34 </div>
35 </div>
36 </div>
37 </body>
38</html>
39
\No newline at end of file