<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-...your-integrity-hash-here..." crossorigin="anonymous" />
        <script src="https://cdn.tailwindcss.com"></script>
        <script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
        <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>

        <script src="../config.js" defer></script>
        <script src="script.js" defer></script>
        <title>Simplified Studios</title>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <div id="dynamicContentContainer">
            <!-- Jobs here -->
        </div>
        <div class="flex absolute bottom-0 mb-5">
            <a href="#" id="down" class="flex items-center justify-center px-4 h-10 me-3 text-base font-medium text-gray-500 bg-white rounded-lg hover:bg-gray-100 hover:text-gray-700 dark:bg-slate-900 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white">
                <svg class="w-3.5 h-3.5 me-2 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10">
                    <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 5H1m0 0 4 4M1 5l4-4"/>
                </svg>
                Forrige
            </a>
            <a href="#" id="up" class="flex items-center justify-center px-4 h-10 text-base font-medium text-gray-500 bg-white rounded-lg hover:bg-gray-100 hover:text-gray-700 dark:bg-slate-900 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white">
                Næste
                <svg class="w-3.5 h-3.5 ms-2 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10">
                    <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 5h12m0 0L9 1m4 4L9 9"/>
                </svg>
            </a>
        </div>
    </body>
</html>