2021-05-09 09:36:39 +00:00
|
|
|
{% import "github.com/bouncepaw/mycorrhiza/cfg" %}
|
2021-09-06 17:46:34 +00:00
|
|
|
{% import "github.com/bouncepaw/mycorrhiza/l18n" %}
|
2021-01-23 13:45:17 +00:00
|
|
|
|
2022-03-20 21:24:40 +00:00
|
|
|
{% func Help(content, lang string, lc *l18n.Localizer) %}
|
2021-07-12 09:58:20 +00:00
|
|
|
<div class="layout">
|
|
|
|
<main class="main-width help">
|
|
|
|
<article>
|
|
|
|
{%s= content %}
|
|
|
|
</article>
|
|
|
|
</main>
|
2022-03-20 21:24:40 +00:00
|
|
|
{%s= helpTopics(lang, lc) %}
|
2021-07-12 09:58:20 +00:00
|
|
|
</div>
|
|
|
|
{% endfunc %}
|
|
|
|
|
2022-03-20 21:24:40 +00:00
|
|
|
{% func HelpEmptyError(lc *l18n.Localizer) %}
|
2021-09-06 17:46:34 +00:00
|
|
|
<h1>{%s lc.Get("help.empty_error_title") %}</h1>
|
|
|
|
<p>{%s lc.Get("help.empty_error_line_1") %}</p>
|
|
|
|
<p>{%s lc.Get("help.empty_error_line_2a") %} <a class="wikilink wikilink_external wikilink_https" href="https://github.com/bouncepaw/mycorrhiza">{%s lc.Get("help.empty_error_link") %}</a> {%s lc.Get("help.empty_error_line_2b") %}</p>
|
2021-07-12 09:58:20 +00:00
|
|
|
{% endfunc %}
|
|
|
|
|
2022-03-22 13:40:40 +00:00
|
|
|
{% func commonScripts() %}
|
2021-07-01 09:45:29 +00:00
|
|
|
{% for _, scriptPath := range cfg.CommonScripts %}
|
2021-05-22 18:05:14 +00:00
|
|
|
<script src="{%s scriptPath %}"></script>
|
|
|
|
{% endfor %}
|
2021-06-29 10:34:36 +00:00
|
|
|
{% endfunc %}
|