mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 21:47:59 +01:00
24 lines
No EOL
666 B
Text
24 lines
No EOL
666 B
Text
doctype html
|
|
html lang="en"
|
|
head
|
|
meta charset="utf-8"
|
|
meta http-equiv="X-UA-Compatible" content="IE=edge"
|
|
meta name="viewport" content="width=device-width, initial-scale=1.0"
|
|
title
|
|
= if assigns[:title] do
|
|
=> assigns[:title]
|
|
' - Philomena
|
|
- else
|
|
' Philomena
|
|
link rel="stylesheet" href=Routes.static_path(@conn, "/css/app.css")
|
|
body
|
|
= if @current_user do
|
|
p
|
|
' Welcome
|
|
= @current_user.name
|
|
= render @view_module, @view_template, assigns
|
|
p
|
|
' Rendered in
|
|
=> render_time(@conn)
|
|
' ms
|
|
script type="text/javascript" src=Routes.static_path(@conn, "/js/app.js") |