pleroma/lib/pleroma/web/templates/layout/embed.html.eex

16 lines
521 B
Elixir
Raw Normal View History

2020-03-20 12:19:34 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimal-ui" />
<title><%= Pleroma.Config.get([:instance, :name]) %></title>
<meta content='noindex' name='robots'>
<%= Phoenix.HTML.raw(assigns[:meta] || "") %>
<link rel="stylesheet" href="/embed.css">
<base target="_parent">
2020-03-20 12:19:34 -05:00
</head>
<body>
<%= render Phoenix.Controller.view_module(@conn), Phoenix.Controller.view_template(@conn), assigns %>
2020-03-20 12:19:34 -05:00
</body>
</html>