ref: master
app/views/layout.php
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 35 36 37 38 39 |
<!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><?= $title ?? 'Dinheiro' ?></title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="bg-gray-100 text-gray-800"> <header class="bg-white shadow flex items-center"> <div class="max-w-4xl mx-auto px-4 py-6"> <a href="/" class="text-2xl font-bold text-blue-700"> Dinheiro </a> </div> <? if (isset($_SESSION['user_id'])): ?> <nav class="max-w-4xl mx-auto px-4 py-2"> <a href="/incomes" class="text-blue-700 mr-5">Rendimentos</a> <a href="/tags" class="text-blue-700 mr-5">Tags</a> <a href="/bills" class="text-blue-700 mr-5">Gastos</a> <a href="/logout" class="text-blue-700">Sair</a> </nav> <? endif; ?> </header> <main class="max-w-4xl mx-auto px-4 py-8"> <?= $content ?> </main> <footer class="bg-white border-t mt-8"> <div class="max-w-4xl mx-auto px-4 py-4 text-sm text-gray-500"> © <?= date('Y') ?> Dinheiro </div> </footer> </body> </html> |