<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="csrf-token" content="{{ csrf_token() }}">
    <title>KM DOH</title>
    <link rel="icon" href="public/image/logo.ico'" type="image/gif">

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
    <style>
    .container {
        padding: 80px 120px;
    }

    .person {
        border: 10px solid transparent;
        margin-bottom: 25px;
        width: 100%;
        height: 100%;
        opacity: 0.7;
    }

    .person:hover {
        border-color: #f1f1f1;
    }
    </style>
</head>

<body>
    <div class="container-fluid text-center">
        <?php 
        $cur_dir = explode('\\', getcwd());
        $dir = $cur_dir[count($cur_dir)-1];
        $url = explode('/', $_SERVER['REQUEST_URI']);
        $req = $url[count($url)-2];
        if($dir == $req){
            echo "<script>location.href='public';</script>";
        }
        else{
    ?>

        <div class="row">
            <div class="col-md-4 col-sm-2">
            </div>
            <div class="col-md-4 col-sm-8">
                <br><br><br>
                <h3>กลับสู่หน้าหลัก</h3>
                <p><em>Online KM DOH!</em></p>
                <a href="http://km.doh.go.th/km-web/public">คลิกที่นี่!!!
                    เพื่อเข้าสู่ระบบการจัดการความรู้ กรมทางหลวง</a>
                <br>
                <a href="http://km.doh.go.th/km-web/public">
                    <img src="public/image/main.jpg" alt="Random Name" width="100%" height="100%">
                </a>
            </div>
            <div class="col-md-4 col-sm-2">
            </div>
        </div>
    </div>
    <?php
        }
    ?>
    </div>
</body>

</html>