Sha256: 552e8bb69e5d6c6b3d4cf6510aaf3f6cf927b0aacceff4b1a517ee02b157629c

Contents?: true

Size: 1.52 KB

Versions: 2

Compression:

Stored size: 1.52 KB

Contents

<!DOCTYPE html>
<html lang="#{@settings[:language]}">
    <head>
        <meta charset="utf-8" />
        
        <!-- Load all stylesheets -->
        #{build_css}
        
        <title>#{@page_title}</title>
    </head>

    <body id="login">
        <!--
        Main area of the admin panel. The content stretches across the entire screen and there
        are no silly sidebars.
        -->
        <div id="container" class="container">
            <div id="content" class="grid_12">
                #{@content}
            </div>
        </div>
        
        <footer id="main_footer" class="container">
            <div class="grid_12">
                <p>#{lang('zen_general.labels.zen_version') % Zen::Version}</p>
                <p>
                    <a href="http://zen-cms.com/">
                        #{lang('zen_general.labels.zen_website')}
                    </a> |
                    <a href="http://zen-cms.com/documentation">
                        #{lang('zen_general.labels.zen_docs')}
                    </a> |
                    <a href="https://github.com/zen-cms/">
                        #{lang('zen_general.labels.zen_github')}
                    </a>
                </p>
            </div>
        </footer>
        
        <script src="/admin/js/mootools/core.js"></script>
        <script src="/admin/js/mootools/more.js"></script>
        
        <script>
            Zen       = {};
            Zen.Flash = #{flash.combined.to_json};
        </script>
        
        #{build_js}
    </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zen-0.2.3 lib/zen/layout/login.xhtml
zen-0.2 lib/zen/layout/login.xhtml