mirror of https://github.com/vapor/docs.git
contributing
This commit is contained in:
parent
20e05cb892
commit
54ce99b100
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Contributing to Vapor Docs
|
||||||
|
|
||||||
|
Found a mistake or want to add something? Fork the documentation, fix it, and submit a pull request.
|
||||||
|
|
||||||
|
We'll merge it as soon as we can.
|
||||||
|
|
||||||
|
Thanks!
|
||||||
18
couscous.yml
18
couscous.yml
|
|
@ -8,24 +8,6 @@ baseUrl: https://qutheory.github.io/documentation
|
||||||
|
|
||||||
menu:
|
menu:
|
||||||
sections:
|
sections:
|
||||||
links:
|
|
||||||
name: Links
|
|
||||||
items:
|
|
||||||
website:
|
|
||||||
text: Qutheory.io
|
|
||||||
absoluteUrl: http://qutheory.io
|
|
||||||
example:
|
|
||||||
text: Example
|
|
||||||
absoluteUrl: http://example.qutheory.io
|
|
||||||
github:
|
|
||||||
text: GitHub
|
|
||||||
absoluteUrl: https://github.com/qutheory/vapor
|
|
||||||
twitter:
|
|
||||||
text: Twitter
|
|
||||||
absoluteUrl: https://twitter.com/@qutheory
|
|
||||||
slack:
|
|
||||||
text: Slack
|
|
||||||
absoluteUrl: http://slack.qutheory.io
|
|
||||||
getting-started:
|
getting-started:
|
||||||
name: Getting Started
|
name: Getting Started
|
||||||
items:
|
items:
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,23 @@
|
||||||
<img src="{{ baseUrl }}/images/droplet.svg" alt="Vapor">
|
<img src="{{ baseUrl }}/images/droplet.svg" alt="Vapor">
|
||||||
<h1>Vapor <em>Docs</em></h1>
|
<h1>Vapor <em>Docs</em></h1>
|
||||||
</a>
|
</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="http://qutheory.io">Home</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="http://example.qutheory.io">Example</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/qutheory/vapor">GitHub</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://twitter.com/@qutheory">Twitter</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="http://slack.qutheory.io">Slack</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<nav>
|
<nav>
|
||||||
|
|
@ -40,6 +57,7 @@
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
<a href="/edit" class="https://github.com/qutheory/documentation/CONTRIBUTING.md">✏️ Edit</a>
|
||||||
{{ content | raw }}
|
{{ content | raw }}
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -87,6 +87,26 @@ header {
|
||||||
border-bottom: 3px solid #94a9d1;
|
border-bottom: 3px solid #94a9d1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header ul {
|
||||||
|
position: absolute;
|
||||||
|
right: 24px;
|
||||||
|
top: 24px;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul li {
|
||||||
|
display: inline-block;
|
||||||
|
line-height: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul li a {
|
||||||
|
padding: 0 6px;
|
||||||
|
display: block;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|
@ -164,6 +184,13 @@ main {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main a.edit {
|
||||||
|
position: absolute;
|
||||||
|
top: 122px;
|
||||||
|
right: 24px;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
main h2 {
|
main h2 {
|
||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
border-bottom: 1px dotted rgba(0, 0, 0, 0.10);
|
border-bottom: 1px dotted rgba(0, 0, 0, 0.10);
|
||||||
|
|
@ -190,7 +217,7 @@ p code {
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 15px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue