60 lines
2.1 KiB
Twig
60 lines
2.1 KiB
Twig
{% extends 'stdgrid.html.twig' %}
|
|
|
|
{% block meta %}
|
|
{{ parent() }}
|
|
{% endblock %}
|
|
|
|
{% block title %}Welcome!{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/network/public.css') }}"
|
|
media="screen and (min-width: 1300px)">
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/network/public_mid.css') }}"
|
|
media="screen and (max-width: 1300px)">
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/network/public_small.css') }}"
|
|
media="screen and (max-width: 750px)">
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/network/simple_stream.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
{{ parent() }}
|
|
{% endblock %}
|
|
|
|
{% block left %}
|
|
{{ parent() }}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="content">
|
|
<div class="main">
|
|
<div class="simple-stream">
|
|
<nav class='main-nav'>
|
|
<ul>
|
|
<li>
|
|
<a href="{{ path('main_public') }}"
|
|
class='hover-effect {{ active('main_public', 'main_all', "home_all") }}'><p>Reverse
|
|
Favourites</p></a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<div class="nav-content">
|
|
<div class="timeline">
|
|
{% if notes is defined and notes is not empty %}
|
|
{% for note in notes %}
|
|
{% set id = note.getId() - 1 %}
|
|
{% include '/note/view.html.twig' with {'note': note, 'have_user': have_user} only %}
|
|
{% endfor %}
|
|
{% else %}
|
|
<h1>This is {{ user_nickname }}'s reverse favorites stream, but nobody
|
|
favored {{ user_nickname }}'s notes yet.</h1>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|
|
|
|
{% block javascripts %}{% endblock %}
|