From 24646d57690ad36cf4caecab2eec5774bca7f699 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 26 Feb 2016 20:48:20 +0100 Subject: Adding views for the profile and entry pages --- app/views/profile/_status.html.haml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/views/profile/_status.html.haml (limited to 'app/views/profile/_status.html.haml') diff --git a/app/views/profile/_status.html.haml b/app/views/profile/_status.html.haml new file mode 100644 index 000000000..39e70b69c --- /dev/null +++ b/app/views/profile/_status.html.haml @@ -0,0 +1,7 @@ +%div.entry + .header + = render partial: 'status_header', locals: { status: status.reblog? ? status.reblog : status } + .content + = status.content + .counters + = render partial: 'status_footer', locals: { status: status.reblog? ? status.reblog : status } -- cgit