[COMPONENTS][Search][UI] Use base template and macros to display search results
This commit is contained in:
parent
424df54a1b
commit
ed5f6b6eed
@ -54,6 +54,7 @@ class Search extends Controller
|
|||||||
'_template' => 'search/show.html.twig',
|
'_template' => 'search/show.html.twig',
|
||||||
'notes' => $notes,
|
'notes' => $notes,
|
||||||
'actors' => $actors,
|
'actors' => $actors,
|
||||||
|
'page' => 1, // TODO paginate
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,20 @@
|
|||||||
|
{% extends 'base.html.twig' %}
|
||||||
|
|
||||||
|
{% import '/cards/note/view.html.twig' as noteView %}
|
||||||
|
|
||||||
|
{% block body %}
|
||||||
{% for note in notes %}
|
{% for note in notes %}
|
||||||
{% include '/cards/note/view.html.twig' with {'note': note} %}
|
{% block current_note %}
|
||||||
|
<div class="section-widget">
|
||||||
|
{{ noteView.macro_note(note) }}
|
||||||
|
</div>
|
||||||
|
{% endblock current_note %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% for actor in actors %}
|
{% for actor in actors %}
|
||||||
{% include 'actor/view.html.twig' with {'actor': actor} %}
|
{% include 'actor/view.html.twig' with {'actor': actor} %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
{{ "Page: " ~ page }}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user