38 lines
940 B
Text
38 lines
940 B
Text
<section>
|
|
<h3>Pages</h3>
|
|
<ul role="list">
|
|
{%for page in pageOrder%}
|
|
<li>
|
|
<a href="{{page.url}}" {%if page.url|slugify == currentPage%}aria-current="page"{%endif%}>
|
|
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
<path d="{{icon[page.url|slugify]}}"></path>
|
|
</svg>
|
|
{{page.fileSlug|capitalize}}
|
|
</a>
|
|
</li>
|
|
{%endfor%}
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<h3>Outgoing</h3>
|
|
<ul role="list">
|
|
{%for key, items in outgoing%}
|
|
{%for item in items%}
|
|
{%if key != "signal"%}
|
|
<li>
|
|
<a href="{{item.src}}">
|
|
<img src="/assets/img/icon/{{item.icon}}" alt="" aria-hidden="true">{{key|capitalize}}
|
|
</a>
|
|
</li>
|
|
{%endif%}
|
|
{%endfor%}
|
|
{%if key == "signal"%}
|
|
<li>
|
|
<button command="show-modal" commandfor="{{items[0].id}}">
|
|
<img src="/assets/img/icon/{{items[0].icon}}" alt="" aria-hidden="true">{{key|capitalize}}
|
|
</button>
|
|
</li>
|
|
{%endif%}
|
|
{%endfor%}
|
|
</ul>
|
|
</section>
|