Skip to content
Snippets Groups Projects
index.tt2.html 2.60 KiB
<DOCTYPE! html>
<html lang="en">

    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

        <link rel="icon" type="image/png" href="images/favicon.png" />

        <link rel="stylesheet" type="text/css" href="foundation/css/normalize.css">
        <link rel="stylesheet" type="text/css" href="foundation/css/foundation.css">
        <link rel="stylesheet" type="text/css" href="jquery.steps.css">
        <link rel="stylesheet" type="text/css" href="jquery-ui-1.11.1/jquery-ui.min.css" />
        <link rel="stylesheet" type="text/css" href="css/style.css" />

        <script type="text/javascript" src="jquery-1.11.1.min.js"></script>
        <script type="text/javascript" src="jquery-ui-1.11.1/jquery-ui.min.js"></script>
        <script type="text/javascript" src="jquery.validate.1.13.0.min.js"></script>
        <script type="text/javascript" src="jquery.cookie-1.4.1.min.js"></script>
        <script type="text/javascript" src="jquery.steps.1.1.0.min.js"></script>
        <script type="text/javascript" src="account-manager.js"></script>

        <title>[% title %]</title>

    </head>

    <body>
        <header>
            <div class="clearfix">
                <a href="http://www.edugain.org" title="eduGAIN home page" target="_blank" class="left"><img alt="eduGAIN logo" width="200" src="images/edugain_logo.png"/></a>
                <a href="http://www.geant.net" title="Geant home page" target="_blank" class="right"><img alt="GEANT logo" width="100" src="images/geant_logo_rgb_300dpi.jpg"/></a>
            </div>
            <div class="title">
                <h1>[% title %]</h1>
            </div>
        </header>

        <div id="content">

            [% IF errors %]
            <div class="ui-widget">
            [% PROCESS 'web/errors.tt2.html' %]
            </div>
            [% ELSE %]
                [% IF notifications %]
            <div class="ui-widget">
                [% PROCESS 'web/notices.tt2.html' %]
                </b>
            </div>
                [% END %]

            [% PROCESS 'web/content.tt2.html' %]

            [% END %]
        </div>

        <footer>
            <span class="align-center">[% conf.app_name %] [% conf.version %] - <a href="mailto:[% conf.support_email %]">contact us</a></span>
        </footer>

        <script src="foundation/js/foundation.min.js"></script>
        <script src="foundation/js/foundation/foundation.tooltip.js"></script>
        <script>
            $(document).foundation();
        </script>   
    </body>
</html>