mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
{% import "strings" %}
|
|
{% import "github.com/bouncepaw/mycorrhiza/cfg" %}
|
|
{% import "github.com/bouncepaw/mycorrhiza/hyphae/backlinks" %}
|
|
{% import "github.com/bouncepaw/mycorrhiza/l18n" %}
|
|
{% import "github.com/bouncepaw/mycorrhiza/user" %}
|
|
{% import "github.com/bouncepaw/mycorrhiza/hyphae" %}
|
|
|
|
{% func hyphaInfoEntry(h hyphae.Hypha, u *user.User, action, displayText string) %}
|
|
{% if u.CanProceed(action) %}
|
|
<li class="hypha-info__entry hypha-info__entry_{%s action %}">
|
|
<a class="hypha-info__link" href="/{%s action %}/{%s h.CanonicalName() %}">{%s displayText %}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfunc %}
|
|
|
|
{% func hyphaInfo(meta Meta, h hyphae.Hypha) %}
|
|
{% code
|
|
u := meta.U
|
|
lc := meta.Lc
|
|
backs := backlinks.BacklinksCount(h)
|
|
%}
|
|
<nav class="hypha-info">
|
|
<ul class="hypha-info__list">
|
|
{%= hyphaInfoEntry(h, u, "history", lc.Get("ui.history_link")) %}
|
|
{%= hyphaInfoEntry(h, u, "rename", lc.Get("ui.rename_link")) %}
|
|
{%= hyphaInfoEntry(h, u, "delete", lc.Get("ui.delete_link")) %}
|
|
{%= hyphaInfoEntry(h, u, "text", lc.Get("ui.text_link")) %}
|
|
{%= hyphaInfoEntry(h, u, "media", lc.Get("ui.media_link")) %}
|
|
{%= hyphaInfoEntry(h, u, "backlinks", lc.GetPlural("ui.backlinks_link", backs)) %}
|
|
</ul>
|
|
</nav>
|
|
{% endfunc %}
|
|
|
|
{% func siblingHyphae(siblings string, lc *l18n.Localizer) %}
|
|
{% if cfg.UseSiblingHyphaeSidebar %}
|
|
<aside class="sibling-hyphae layout-card">
|
|
<h2 class="sibling-hyphae__title layout-card__title">{%s lc.Get("ui.sibling_hyphae") %}</h2>
|
|
{%s= siblings %}
|
|
</aside>
|
|
{% endif %}
|
|
{% endfunc %}
|
|
|
|
{% func Subhyphae(subhyphae string, lc *l18n.Localizer) %}
|
|
{% if strings.TrimSpace(subhyphae) != "" %}
|
|
<section class="subhyphae">
|
|
<h2 class="subhyphae__title">{%s lc.Get("ui.subhyphae") %}</h2>
|
|
<nav class="subhyphae__nav">
|
|
<ul class="subhyphae__list">
|
|
{%s= subhyphae %}
|
|
</ul>
|
|
</nav>
|
|
</section>
|
|
{% endif %}
|
|
{% endfunc %}
|