2020-01-10 15:00:54 +00:00
|
|
|
{{!
|
2020-02-14 20:33:54 +00:00
|
|
|
Each portal has the following composition:
|
2020-01-10 15:00:54 +00:00
|
|
|
string portal-id
|
|
|
|
string html-tooltip
|
|
|
|
string msg-label-id
|
2020-03-09 18:31:36 +00:00
|
|
|
string? html-userlangattributes
|
|
|
|
string msg-label
|
2020-01-10 15:00:54 +00:00
|
|
|
string html-portal-content
|
2020-03-09 18:31:36 +00:00
|
|
|
string? html-after-portal
|
|
|
|
string? html-hook-vector-after-toolbox is deprecated and used by the toolbox portal.
|
2020-01-10 15:00:54 +00:00
|
|
|
}}
|
|
|
|
<div class="portal" role="navigation" id="{{portal-id}}" {{{html-tooltip}}} aria-labelledby="{{msg-label-id}}">
|
|
|
|
<h3 {{{html-userlangattributes}}} id="{{msg-label-id}}">
|
|
|
|
{{msg-label}}
|
|
|
|
</h3>
|
|
|
|
<div class="body">
|
|
|
|
{{{html-portal-content}}}
|
|
|
|
{{{html-after-portal}}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-14 20:33:54 +00:00
|
|
|
{{! Note: html-hook-vector-after-toolbox is deprecated. }}
|
|
|
|
{{{html-hook-vector-after-toolbox}}}
|