forked from GNUsocial/gnu-social
Eliseu Amaro
671c3968e2
[CSS] Font size hierarchy refactor [PLUGINS][MediaFeed] Renamed BeforeFeed event Type scale hierarchy redone. Bigger line height added, making it easier to click on links and separate contents. Feed title added. AddFeedActions replaces BeforeFeed event. MediaFeed links will now show an icon to the right of the feed title, smaller footprint and more consistent with the overall design.
26 lines
1.3 KiB
Twig
26 lines
1.3 KiB
Twig
{% block leftpanel %}
|
|
<label class="panel-left-icon" for="panel-left-toggle" aria-hidden="true"
|
|
tabindex="-1">{{ icon('menu', 'icon icon-left') | raw }}</label>
|
|
<input type="checkbox" id="panel-left-toggle" aria-hidden="true" tabindex="-1">
|
|
|
|
<section class="header-panel section-panel-left">
|
|
<a id="anchor-left-panel" class="anchor-hidden" title="{{ 'Press tab to access selected region!' | trans }}"></a>
|
|
<aside class="panel-content accessibility-target">
|
|
{% if app.user %}
|
|
<section class='section-widget section-padding' title="{{ 'Your profile information.' | trans }}">
|
|
{% block profile_view %}{% include 'cards/profile/view.html.twig' with { actor: current_actor } %}{% endblock profile_view %}
|
|
{{ block("profile_current_actor", "cards/navigation/view.html.twig") }}
|
|
</section>
|
|
{% else %}
|
|
<section>
|
|
{{ block("profile_security", "cards/navigation/view.html.twig") }}
|
|
</section>
|
|
{% endif %}
|
|
|
|
{{ block("feeds", "cards/navigation/view.html.twig") }}
|
|
|
|
{{ block("footer", "cards/navigation/view.html.twig") }}
|
|
</aside>
|
|
</section>
|
|
{% endblock leftpanel %}
|