templates/default/default.html.twig line 1

  1. <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Example</title>
    </head>
    
    <body>
    
    <style type="text/css">
        body {
            padding:0;
            margin: 0;
            font-family: "Lucida Sans Unicode", Arial, sans-serif;
            font-size: 14px;
        }
    
        #site {
            margin: 0 auto;
            width: 600px;
            padding: 30px 0 0 0;
            color:#65615E;
        }
    
        h1, h2, h3 {
            font-size: 18px;
            padding: 0 0 5px 0;
            border-bottom: 1px solid #001428;
            margin-bottom: 5px;
        }
    
        h3 {
            font-size: 14px;
            padding: 15px 0 5px 0;
            margin-bottom: 5px;
            border-color: #cccccc;
        }
    
        img {
            border: 0;
        }
    
        p {
            padding: 0 0 5px 0;
        }
    
        a {
            color: #000;
        }
    
        #logo {
            text-align: center;
            padding: 50px 0;
        }
    
        #logo hr {
            display: block;
            height: 1px;
            overflow: hidden;
            background: #BBB;
            border: 0;
            padding:0;
            margin:30px 0 20px 0;
        }
    
        .claim {
            text-transform: uppercase;
            color:#BBB;
        }
    
        #site ul {
            padding: 10px 0 10px 20px;
            list-style: circle;
        }
    
        .buttons {
            margin-bottom: 100px;
            text-align: center;
        }
    
        .buttons a {
            display: inline-block;
            background: #6428b4;
            color:#fff;
            padding: 5px 10px;
            margin-right: 10px;
            width:40%;
            border-radius: 2px;
            text-decoration: none;
        }
    
        .buttons a:hover {
            background: #1C8BC1;
        }
    
        .buttons a:last-child {
            margin: 0;
        }
    
    </style>
    
    
    <div id="site">
        <div id="logo">
            <a href="http://www.pimcore.com/"><img src="/bundles/pimcoreadmin/img/logo-claim-gray.svg" alt="Logo claim grey" style="width: 400px;" /></a>
            <hr />
        </div>
    
        {% if editmode %}
            <div class="buttons">
                <a target="_blank" href="https://pimcore.com/docs/6.x/Development_Documentation/Getting_Started/Installation.html">Install Sample Data / Boilerplate</a>
                <a target="_blank" href="https://pimcore.com/docs/6.x/Development_Documentation/Getting_Started/index.html">Getting Started</a>
            </div>
    
            <div class="info">
                <h2>Where can I edit some pages?</h2>
                <p>
                    Well, it seems that you're using the professional distribution of pimcore which doesn't include any
                    templates / themes or contents, it's designed to start a project from scratch. If you need a jump start
                    please consider using our sample data / boilerplate package which includes everything you need to get started.
                </p>
            </div>
        {% endif %}
    </div>
    
    </body>
    </html>