diff --git a/templates/network/public.html.twig b/templates/network/public.html.twig
index ff8b3ca5f3..f2145a4af0 100644
--- a/templates/network/public.html.twig
+++ b/templates/network/public.html.twig
@@ -1,6 +1,6 @@
{% extends 'stdgrid.html.twig' %}
-{% block title %}Welcome!{% endblock %}
+{% block title %}{{ 'Welcome! - Public Timeline' | trans }}{% endblock %}
{% block stylesheets %}
{{ parent() }}
@@ -8,10 +8,9 @@
{% endblock %}
{% block body %}
-
{# Backwards compatibility with hAtom 0.1 #}
-
-
+
+
{% if notes is defined and notes is not empty %}
{% for conversation in notes %}
{% include '/note/view.html.twig' with {'note': conversation['note'], 'have_user': have_user, 'replies': conversation['replies']} only %}
@@ -19,8 +18,8 @@
{% else %}
{% set nickname = note.getActorNickname() %}
{# TODO: this should link to the note's user profile? #}
-
+
{# Microformat's h-card properties indicates a face icon is a "u-logo" #}
-
- {{ nickname }}
-
+
+
+
{% set reply_to = note.getReplyToNickname() %}
{% if reply_to is not null and not skip_reply_to is defined %}
{% trans with {'%name%': reply_to} %} in reply to %name% {% endtrans %}
{% endif %}
-
+
{% if have_user %}
{% for current_action in get_note_actions(note) %}
{{ form_start(current_action) }}
{% if current_action.submit_fav is defined %}
-
+
{{ form_widget(current_action.submit_fav) }}
{% endif %}
@@ -27,9 +29,8 @@
{% endfor %}
{% endif %}
+
\ No newline at end of file
diff --git a/templates/sidepanel/left/left.html.twig b/templates/sidepanel/left/left.html.twig
index 98ca757308..f46d5b2b60 100644
--- a/templates/sidepanel/left/left.html.twig
+++ b/templates/sidepanel/left/left.html.twig
@@ -1,8 +1,8 @@
-