inyokaproject / theme-default

Inyoka OSS Theme
Other
7 stars 12 forks source link

PN rework #90

Open MAH1987 opened 9 years ago

MAH1987 commented 9 years ago
chris34 commented 9 years ago

Some Inspiration for base.html ;)

{#
    portal/privmsg/base.html
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~

    :copyright: (c) 2013-2015 by the Inyoka Team, see AUTHORS for more details.
    :license: BSD, see LICENSE for more details.
#}

{% from 'macros.html' import breadcrumb_item, sidebar, sidebar_item %}
{%- extends 'portal/base.html' %}

{% block breadcrumb %}
  {{ super() }}

  {{ breadcrumb_item(_('Private message'), href('portal', 'privmsg')) }}
{% endblock %}

{% block sidebar %}
  {% call sidebar() %}
    {{ sidebar_item(_('Inbox'), href('portal', 'privmsg', 'inbox'), 'fa_icon-inbox') }}
    {{ sidebar_item(_('Sent mail'), href('portal', 'privmsg', 'sent') , 'fa_icon-share-square') }}
    {{ sidebar_item(_('Archive'), href('portal', 'privmsg', 'archive'), 'fa_icon-archive') }}
    {{ sidebar_item(_('Trash'), href('portal', 'privmsg', 'trash'), 'fa_icon-trash') }}
    {{ sidebar_item(_('Compose message'), href('portal', 'privmsg', 'new'), 'fa_icon-envelope-square') }}
  {% endcall %}
{% endblock %}

Missing icons should be easy to find at http://fortawesome.github.io/Font-Awesome/icons/