Skip to content
Snippets Groups Projects
Select Git revision
  • d2bbf95a1e54de1e194e8cd41b3fb17fd4ea28e9
  • develop default
  • master protected
3 results

index.html

Blame
  • index.html 2.35 KiB
    <!DOCTYPE html>
    <html>
        <head>
            <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
            <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
            <script src="{{ url_for('static', filename='js/particles.js') }}"></script>
            <script src="{{ url_for('static', filename='js/modals.js') }}"></script>
            <script>
                particlesJS.load('particles-js', '/static/particles.json', function() {
                    console.log('callback - particles.js config loaded');
                });
            </script>
            <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
            <link href="https://fonts.googleapis.com/css?family=Lato:300,100" rel="stylesheet">
            <title> Hodor Security Training</title>
        </head>
        <body>
          {% include 'layout/navigation.html' %}
            <div id="particles-js" class="container-fluid content">
                <div class="row text-center abs">
                    <img id="logo" src="{{ url_for('static', filename='img/hodor.png') }}" width="150" height="180">
                </div>
                <div class="row text-center abs">
                    <h2 id="caption"> Hodor <span id="version">v.0.0.1 alpha</span></h2>
                </div>
                <div class="row text-center abs">
                    <pre id="subtitle"> Hodor is an open-sourced, cyber-security training and practice platform designed for beginners.
                        Hodor is currently in alpha development stage
                    </pre>
                </div>
                <div class="row text-center abs">
                    <button id="more" class="btn btn-outline-danger">Know More</button>
                </div>
            </div>
        </body>
    </html>