HUGE cleanup
This commit is contained in:
parent
0c2030605d
commit
eb4d795ede
7 changed files with 370 additions and 382 deletions
18
templates/liked.html
Normal file
18
templates/liked.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
{% extends "layout.html" %}
|
||||
{% import 'utils.html' as utils %}
|
||||
{% block content %}
|
||||
<div class="h-feed" id="container">
|
||||
<data class="p-name" value="{{config.USERNAME}} liked"></data>
|
||||
|
||||
{% include "header.html" %}
|
||||
|
||||
<div id="notes">
|
||||
{% for item in liked %}
|
||||
{% if item.meta.object %}
|
||||
{{ utils.display_note(item.meta.object) }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue