Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
## mako
<!DOCTYPE html>
<%! from django.utils.translation import ugettext as _ %>
<%namespace name='static' file='/static_content.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="description" content="">
        <meta name="author" content="">


        <title>FUN - ${_("Course dashboard")}</title>

        <!-- Bootstrap core CSS -->
        <link href="${static.url('bootstrap/css/bootstrap.min.css')}" rel="stylesheet">
        <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
        <!--[if lt IE 9]>
          <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
          <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
        <![endif]-->

        <style>
        body {
            padding-top: 60px;
        }
        .page-header {
            margin-bottom: 30px;
         }
        #container-navigation {
            margin-bottom: 20px;
        }
        #content figure {
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
        }
        #content .key-stats {
            text-align: center;
            font-size: 200%;
            min-height: 350px;
        }
        #content .key-stats h1 {
            font-size: 46px;
            font-weight: bold;
        }
        </style>

        <%block name="extra_head"></%block>
    </head>

    <body>
        <nav class="navbar navbar-inverse navbar-fixed-top">
            <div class="container">
                <div class="navbar-header">
                    <%block name="navbar_header"></%block>
                </div>
            </div>
        </nav>

        <div class="container">
                <!-- Django messages display -->
                % if messages:
                    % for message in messages:
                        <div class="alert alert-dismissible alert-${message.tags}" role="alert">
                            <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                                <span aria-hidden="true">&times;</span>
                            </button>
                            ${message}
                        </div>
                    % endfor
                % endif
                <div class="page-header">
                    <%block name="header"></%block>
                </div>
                <%block name="navigation"></%block>
                <div id="content">
                    <%block name="content"></%block>
                </div>
        </div>
        <script src="${static.url('fun/js/vendor/jquery-1.11.1.min.js')}"></script>
        <script type="text/javascript" src="${static.url('js/vendor/flot/jquery.flot.js')}"></script>
        <script src="${static.url('bootstrap/js/bootstrap.min.js')}"></script>
        <%block name="extra_js"></%block>
        <%block name="extra_footer"></%block>
    </body>
</html>