mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-16 06:50:26 +00:00
54 lines
1.6 KiB
Plaintext
54 lines
1.6 KiB
Plaintext
{% import "fmt" %}
|
|
|
|
{% import "github.com/bouncepaw/mycorrhiza/cfg" %}
|
|
{% import "github.com/bouncepaw/mycorrhiza/util" %}
|
|
{% import "github.com/bouncepaw/mycorrhiza/l18n" %}
|
|
|
|
{% func Backlinks(hyphaName string, generator func(string) <-chan string, lc *l18n.Localizer) %}
|
|
<div class="layout">
|
|
<main class="main-width backlinks">
|
|
<h1>{%s= lc.Get(
|
|
"ui.backlinks_heading",
|
|
&l18n.Replacements{
|
|
"hypha_link": fmt.Sprintf(
|
|
`<a href="/hypha/%s">%s</a>`,
|
|
hyphaName,
|
|
util.BeautifulName(hyphaName),
|
|
),
|
|
},
|
|
)%}</h1>
|
|
<p>{%s lc.Get("ui.backlinks_desc")%}</p>
|
|
<ul class="backlinks__list">
|
|
{% for hyphaName := range generator(hyphaName) %}
|
|
<li class="backlinks__entry">
|
|
<a class="backlinks__link wikilink" href="/hypha/{%s hyphaName %}">{%s util.BeautifulName(hyphaName) %}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</main>
|
|
</div>
|
|
{% endfunc %}
|
|
|
|
{% func Help(content, lang string, lc *l18n.Localizer) %}
|
|
<div class="layout">
|
|
<main class="main-width help">
|
|
<article>
|
|
{%s= content %}
|
|
</article>
|
|
</main>
|
|
{%s= helpTopics(lang, lc) %}
|
|
</div>
|
|
{% endfunc %}
|
|
|
|
{% func HelpEmptyError(lc *l18n.Localizer) %}
|
|
<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>
|
|
{% endfunc %}
|
|
|
|
{% func commonScripts() %}
|
|
{% for _, scriptPath := range cfg.CommonScripts %}
|
|
<script src="{%s scriptPath %}"></script>
|
|
{% endfor %}
|
|
{% endfunc %}
|