forked from GNUsocial/gnu-social
20 lines
618 B
Twig
20 lines
618 B
Twig
|
{% extends 'stdgrid.html.twig' %}
|
||
|
{% import "/cards/note/view.html.twig" as noteView %}
|
||
|
|
||
|
{% block title %}{{ 'Delete ' | trans }}{{ '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">
|
||
|
{{ noteView.macro_note_minimal(note) }}
|
||
|
{{ form(delete) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock body %}
|