2021-04-29 20:51:13 +01:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-12-01 17:56:31 +00:00
|
|
|
|
|
|
|
{% block meta %}
|
|
|
|
{{ parent() }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block title %}Actors{% 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)">
|
2020-12-02 03:31:07 +00:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/directory/actors.css') }}">
|
2020-12-01 17:56:31 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
{{ parent() }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block left %}
|
|
|
|
{{ parent() }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<div class="content">
|
|
|
|
{% if post_form is defined %}
|
|
|
|
{{ form_start(post_form) }}
|
|
|
|
<div class="create-notice">
|
|
|
|
<div class="target">
|
|
|
|
<div class="target-top">
|
|
|
|
{{ form_label(post_form.to) }}
|
|
|
|
</div>
|
|
|
|
<div class="target-bot">
|
|
|
|
{{ form_widget(post_form.to) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="create-right">
|
|
|
|
<div class="create-top-right">
|
|
|
|
<div class="scope">
|
|
|
|
{{ form_row(post_form.visibility) }}
|
|
|
|
</div>
|
|
|
|
<div class="tabs">
|
|
|
|
{% for tab in tabs %}
|
|
|
|
<a href={{ path(tab['href']) }}>{{ tab['title'] }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="input-wrapper">
|
|
|
|
<div class="content-input">
|
|
|
|
{{ form_row(post_form.content) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="notice-options">
|
|
|
|
<div class="attachments">
|
|
|
|
{{ form_widget(post_form.attachments) }}
|
|
|
|
<label for="{{ post_form.attachments.vars.id }}">
|
|
|
|
{{ icon('attach', 'icon icon-attach') | raw }}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="post">
|
|
|
|
{{ form_row(post_form.post) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ form_end(post_form) }}
|
|
|
|
{% endif %}
|
|
|
|
<div class="main">
|
|
|
|
<nav class='main-nav'>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ path('main_public') }}" class='hover-effect {{ active('main_public', 'main_all', "home_all") }}'>Timeline</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<div class="notes-wrap">
|
|
|
|
<nav class='main-nav'>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ path('main_public') }}" class='hover-effect {{ active('main_public') }}'>Public</a>
|
|
|
|
</li>
|
|
|
|
{% if user_nickname is defined %}
|
|
|
|
<li>
|
|
|
|
<a href="{{ path("home_all", {'nickname' : user_nickname}) }}" class='hover-effect {{ active("home_all") }}'>Home</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
<li>
|
|
|
|
<a href="{{ path('main_all') }}" class='hover-effect {{ active('main_all') }}'>Network</a>
|
|
|
|
</li>
|
2021-04-15 17:57:39 +01:00
|
|
|
{% if main_nav_tabs is defined %}
|
|
|
|
{% for tab in main_nav_tabs %}
|
2020-12-02 03:31:07 +00:00
|
|
|
<li>
|
2021-04-15 17:57:39 +01:00
|
|
|
<a href="{{ path(tab['route']) }}" class='hover-effect {{ active(tab['route']) }}' >{{ tab['title'] }}</a>
|
2020-12-02 03:31:07 +00:00
|
|
|
</li>
|
2021-04-15 17:57:39 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2020-12-01 17:56:31 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<div class="timeline">
|
|
|
|
<div class="actors">
|
|
|
|
{% if actors is defined and actors is not empty %}
|
|
|
|
{% for actor in actors %}
|
2021-04-15 12:40:48 +01:00
|
|
|
{% include 'directory/actor.html.twig' with {'actor': actor, 'have_user': have_user} only %}
|
2020-12-01 17:56:31 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<h1>{% trans %}No actors here.{% endtrans %}</h1>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock body %}
|
|
|
|
|
2021-04-15 12:40:48 +01:00
|
|
|
{% block javascripts %}{% endblock %}
|