summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/templates/layout/embed.html.eex
blob: 1197288e5431f7d050ea5aac9714377079544180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!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">
  </head>
  <body>
    <%= render Phoenix.Controller.view_module(@conn), Phoenix.Controller.view_template(@conn), assigns %>
  </body>
</html>