mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-16 11:50:10 +08:00
* Add /probot route with tests * Add index route, write tests * Remove unused arg * Pass tests * Tweak HTML string and pkg require * Add static directory * Design welcome page * Rename to probot.html * Implement EJS * Remove duplicate load * Extract default homepage into plugin * Fix issue after merge conflict * Refactor app loading * Remove autoloading of plugings BREAKING CHANGE: `probot run` without any arguments will no longer autoload apps named `probot-*`. * Move setup * Look for `apps` key instead of `plugins` * Update simulate command * Simplify resolver * Remove unused routes variable * Move views to default path * Call probot.setup to properly initialize default apps * Simplify package loading * Specify extension * Add links to docs/slack * Remove stats link * Add helper to jest ignore * Fix ejs views error * Move a require to top of file * Remove unnecessary (and breaking) test
32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" class="height-full">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title><%= name %> | built with Probot</title>
|
|
<link rel="stylesheet" href="/probot/static/primer.css">
|
|
</head>
|
|
<body class="height-full bg-gray-light">
|
|
<div class="d-flex flex-column flex-justify-center flex-items-center text-center height-full">
|
|
<img src="/probot/static/robot.svg" alt="Probot Logo" width="100" class="mb-6">
|
|
<div class="box-shadow rounded-2 border p-6 bg-white">
|
|
<h1>Welcome to <%= name %> <span class="Label Label--outline v-align-middle ml-2 text-gray-light">v<%= version %></span></h1>
|
|
<%if (description) { %>
|
|
<p><%= description %></p>
|
|
<% } else { %>
|
|
<p>This bot was built using <a href="https://github.com/probot/probot">Probot</a>, a framework for building GitHub Apps.</p>
|
|
<% } %>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<h4 class="alt-h4 text-gray-light">Need help?</h4>
|
|
<div class="d-flex flex-justify-center mt-2">
|
|
<a href="https://probot.github.io/docs/" class="btn btn-outline mr-2">Documentation</a>
|
|
<a href="https://probot-slackin.herokuapp.com/" class="btn btn-outline">Chat on Slack</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|