aboutsummaryrefslogtreecommitdiff
path: root/public/templates/index.html.template
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2020-02-22 17:36:13 -0500
committerKevin J Hoerr <kjhoerr@protonmail.com>2020-02-22 17:36:13 -0500
commit5fa41a15f8f41c7f04d05a487ddb01930639f393 (patch)
tree0bb71b2d5c65cb2737713ebf651c7ace499b221d /public/templates/index.html.template
parentcbcbeb40afa10272003657eb06376a7e8663856c (diff)
downloadao-coverage-5fa41a15f8f41c7f04d05a487ddb01930639f393.tar.gz
ao-coverage-5fa41a15f8f41c7f04d05a487ddb01930639f393.tar.bz2
ao-coverage-5fa41a15f8f41c7f04d05a487ddb01930639f393.zip
#2 Add CSS, favicon for landing page
Diffstat (limited to 'public/templates/index.html.template')
-rw-r--r--public/templates/index.html.template23
1 files changed, 21 insertions, 2 deletions
diff --git a/public/templates/index.html.template b/public/templates/index.html.template
index 0dfbee7..53095b3 100644
--- a/public/templates/index.html.template
+++ b/public/templates/index.html.template
@@ -6,11 +6,30 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>AO Coverage: Simple code coverage tracking</title>
+ <link rel="stylesheet" type="text/css" href="/static/index.css" />
</head>
<body>
- <div id="content">
- <span class="code">bash &lt;(curl -s {{TARGET_URL}}/bash)</span>
+ <div id="top-half">
+ <div id="container">
+ <div id="logo"><img src="/favicon.ico" alt="logo" /></div>
+ <h1 id="tagline">Simple Code Coverage Tracking</h1>
+ </div>
+ </div>
+ <div id="bottom-half">
+ <div id="container">
+ <div id="content">
+ <p>AO Coverage is a simple code coverage tracking tool that stores your reports for public visibility and
+ provides a coverage badge for your projects. That’s all there is to it.</p>
+ <p>If you have a coverage token, uploading a report is as easy as adding this line to your CI pipeline:</p>
+ <div class="code-container">
+ <span class="shell code">bash &lt;(curl -s {{TARGET_URL}}/bash)</span>
+ </div>
+ <p>Visit <a href="https://git.submelon.dev/kjhoerr/ao-coverage/wiki/Home" target="_blank">the AO Coverage
+ documentation</a> to learn more about uploading reports and discover more information about how AO Coverage
+ works.</p>
+ </div>
+ </div>
</div>
</body>