mirror of
https://github.com/go-gitea/lgtm-docs.git
synced 2026-07-01 20:04:04 -04:00
added faq
This commit is contained in:
+28
-2
@@ -1,7 +1,33 @@
|
||||
+++
|
||||
date = "2015-12-05T16:00:21-08:00"
|
||||
draft = true
|
||||
draft = false
|
||||
title = "FAQ"
|
||||
weight = 5
|
||||
weight = 6
|
||||
menu = "main"
|
||||
class = "faq"
|
||||
toc = true
|
||||
+++
|
||||
|
||||
# Why don't I see my repository?
|
||||
|
||||
Here are some tips for troubleshooting:
|
||||
|
||||
* Is your GitHub repository public?
|
||||
* Do you have Admin access to the repository?
|
||||
* Did you recently create the repository? There may be up to a 15 minute delay due to internal caching.
|
||||
|
||||
# Can I use with private repositories?
|
||||
|
||||
Not with the free hosted service at this time.
|
||||
|
||||
In order to use with private repositories you will need to install and run your
|
||||
own instance, which is really really simple, we promise. See the [the documentation](../install).
|
||||
|
||||
# Can I use with GitHub Enterprise?
|
||||
|
||||
In order to use with GitHub Enterprise you will need to install and run your
|
||||
own instance. See the [the documentation](../install).
|
||||
|
||||
# Can I install on my own server?
|
||||
|
||||
Yes, we have a Docker image available. See the [the documentation](../install).
|
||||
|
||||
@@ -24,10 +24,13 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-flex-container container">
|
||||
<div class="grid-flex-container container {{ .Params.class }}">
|
||||
|
||||
<div class="grid-flex-cell">
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ if .Params.toc }}
|
||||
{{ .TableOfContents }}
|
||||
{{ end }}
|
||||
<section>{{ .Content }}</section>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -64,3 +64,23 @@ pre code {
|
||||
font-family: "Roboto Mono";
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
#TableOfContents {
|
||||
margin-top:60px;
|
||||
margin-bottom:-30px;
|
||||
}
|
||||
#TableOfContents li a {
|
||||
color: #333;
|
||||
display:inline-block;
|
||||
margin-bottom:5px;
|
||||
}
|
||||
#TableOfContents li a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.faq section h1 {
|
||||
border-top: 1px solid #e6eaed;
|
||||
padding-top: 30px;
|
||||
padding-bottom:30px;
|
||||
margin-top: 30px;
|
||||
font-size:26px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user