pixelfed/pixelfed

View on GitHub
resources/views/status/embed-removed.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
<!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">
    <meta name="mobile-web-app-capable" content="yes">

    <title>Pixelfed | 404 Embed Not Found</title>

    <meta property="og:site_name" content="{{ config_cache('app.name', 'pixelfed') }}">
    <meta property="og:title" content="{{ $title ?? config_cache('app.name', 'pixelfed') }}">
    <meta name="medium" content="image">
    <meta name="theme-color" content="#10c5f8">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <link rel="shortcut icon" type="image/png" href="/img/favicon.png?v=2">
    <link rel="apple-touch-icon" type="image/png" href="/img/favicon.png?v=2">
    <link href="{{ mix('css/app.css') }}" rel="stylesheet">
    <style type="text/css">
        .embed-card {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100vw;
            height: 100vh;
            min-height: 573px;
            background: #fff !important;
            margin: 0;
            padding-bottom: 0;
        }
        .status-card-embed {
            box-shadow: none;
            border-radius: 4px;
            overflow: hidden;
        }
    </style>
</head>
<body class="bg-white">
    <div class="embed-card border">
        <div class="card status-card-embed card-md-rounded-0 card-body shadow-none rounded-0">
            <div class="text-center p-5">
                <img src="/img/pixelfed-icon-color.svg" width="40px" height="40px">
                <p class="h2 py-3 font-weight-bold">Pixelfed</p>
                <p style="font-size:14px;font-weight: 500;" class="p-2">The link to this photo or video may be broken, or the post may have been removed.</p>
                <p><a href="{{config('app.url')}}" class="font-weight-bold" target="_blank">Visit Pixelfed</a></p>
            </div>
        </div>
    </div>
    <script type="text/javascript">window.addEventListener("message",e=>{const t=e.data||{};window.parent&&"setHeight"===t.type&&window.parent.postMessage({type:"setHeight",id:t.id,height:document.getElementsByTagName("html")[0].scrollHeight},"*")});</script>
</body>
</html>