Sha256: bc91ddab74066db16aed521b5e25c391199d90e21c62498908cfa67b3b87b903

Contents?: true

Size: 1.72 KB

Versions: 2

Compression:

Stored size: 1.72 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>
                <ul class="clearfix">
                    <li>
                        <a href="http://zen-cms.com/">
                            #{lang('zen_general.labels.zen_website')}
                        </a>
                    </li>
                    <li>
                        <a href="http://zen-cms.com/documentation">
                            #{lang('zen_general.labels.zen_docs')}
                        </a>
                    </li>
                    <li>
                        <a href="https://github.com/zen-cms/">
                            #{lang('zen_general.labels.zen_github')}
                        </a>
                    </li>
                </ul>
            </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.4.1 lib/zen/layout/login.xhtml
zen-0.2.4 lib/zen/layout/login.xhtml