gnu-social/plugins/Favourite/templates/favourite/add_to_favourites.html.twig

19 lines
604 B
Twig

{% extends 'stdgrid.html.twig' %}
{% block title %}{{ 'Favourite ' | trans }}{{ note.getActorNickname() }}{{ '\'s note.' | trans }}{% endblock %}
{% block stylesheets %}
{{ parent() }}
<link rel="stylesheet" href="{{ asset('assets/default_theme/css/pages/feeds.css') }}" type="text/css">
{% endblock stylesheets %}
{% block body %}
{{ parent() }}
<div class="page">
<div class="main">
{% include '/cards/note/view.html.twig' with {'note': note, 'note_actions_show': false} only %}
{{ form(add_favourite) }}
</div>
</div>
{% endblock body %}