Improve help pages (#107)

* Improve wording of help index page.

* Add custom help summary template.

* Add custom help page template.
This commit is contained in:
Koopa 2019-08-17 15:54:15 -04:00 committed by Flame Sage
parent f24554f8a5
commit 361ac73b53
3 changed files with 17 additions and 2 deletions

View File

@ -2,6 +2,6 @@
title = "Help"
+++
User documentation on how to use Citra and frequently asked questions can be found here.
User documentation on how to use Citra and frequently asked questions can be found here. Information for developers can be found on the [developer wiki](https://citra-emu.org/wiki/faq/).
If you would like more information on a subject, please contact our moderation team on Discord.
If you would like more information on a subject, or you're having trouble, support is offered in our [Discord server](https://citra-emu.org/discord/).

View File

@ -0,0 +1,9 @@
{{ define "main" }}
<h1>
{{ .Title }}
</h1>
<div class="entry-content">
{{ .Content }}
</div>
{{ end }}

View File

@ -0,0 +1,6 @@
<div class="col-md-12">
<div>
<h2><a href="{{ .RelPermalink }}" >{{ .Title }}</a></h2>
<p>{{ .Description }}</p>
</div>
</div>