summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/templates/layout/embed.html.eex
blob: 8b905f0705d6aa1b3da25b848dbaa99f30b4dba9 (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 @view_module, @view_template, assigns %>
  </body>
</html>