b3d582f665
[TWIG] Cards are now divided into blocks and macros, additional macros done, attachments page no longer inside cards directory [CARDS][Navigation] Now using macros to create section, details, and nav elements
20 lines
592 B
Twig
20 lines
592 B
Twig
{% extends 'stdgrid.html.twig' %}
|
|
{% import "/cards/macros/note.html.twig" as noteView %}
|
|
|
|
{% block title %}{{ 'Repeat ' | 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">
|
|
{{ noteView.note_vanilla(note) }}
|
|
{{ form(add_repeat) }}
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|