[COMPONENT] Favourite initial implementation

This commit is contained in:
rainydaysavings
2020-09-02 22:48:55 +01:00
committed by Hugo Sales
parent a2c40163f5
commit 2d1200e2e6
3 changed files with 51 additions and 1 deletions

View File

@@ -10,8 +10,17 @@
media="screen and (max-width: 750px)">
{% endblock %}
{% block header %}
{{ parent() }}
{% endblock %}
{% block left %}
{{ parent() }}
{% endblock %}
{% block body %}
<div class="content" style="margin-top: 5em">
{{ parent() }}
<div class="content">
<div class="main">
{% include '/note/view.html.twig' with {'note': note} only %}
{{ form(reply) }}

View File

@@ -19,6 +19,16 @@
<use xlink:href="#icon-reply"></use>
</svg>
</a>
<a href="{{ path('note_reply', {'reply_to': note.getId()}) }}">
<svg class="icon icon-recycle">
<use xlink:href="#icon-recycle"></use>
</svg>
</a>
<a href="{{ path('note_reply', {'reply_to': note.getId()}) }}">
<svg class="icon icon-heart">
<use xlink:href="#icon-heart"></use>
</svg>
</a>
</div>
<div class="replies">
{% for reply in note.getReplies() %}