rules.php 964 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
<!DOCTYPE html>
 <html lang="fr">
    <head>
        <?php require_once('head.php'); ?>
    </head>

    <body id="page-top">

        <div id="wrapper">
            
            <!-- Sidebar -->
            <?php require_once('sidebar.php'); ?>

            <div id="content-wrapper" class="d-flex flex-column">

                <!-- Main Content -->
                <div id="content">

                    <!-- Top Toolbar -->
                    <?php require_once('topToolbar.php'); ?>

                    <!-- Page Content -->
                    <div class="container-fluid" style="text-align: center; font-size: 100px;">
                        Les règles
                    </div>
                </div>
            </div>
        </div>

        <!-- Scroll to Top Button-->
        <a class="scroll-to-top rounded" href="#page-top">
            <i class="fas fa-angle-up"></i>
        </a>

raphael.peim's avatar
raphael.peim committed
35
        <?php require_once('js.php'); ?>
36 37
    </body>
</html>