diff options
| author | ilotterytea <iltsu@alright.party> | 2024-05-18 21:05:49 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-05-18 21:05:49 +0500 |
| commit | 440b607eb5812ab68692db1d2866eff270fc0ce0 (patch) | |
| tree | d4dfc63883b0bc0e3f815431eeba86548e21bff3 | |
| parent | ba4c6803f8df59750b2af558cb60b166cbabc938 (diff) | |
feat: footer
| -rw-r--r-- | templates/big_footer.html | 34 | ||||
| -rw-r--r-- | templates/index.html | 4 |
2 files changed, 37 insertions, 1 deletions
diff --git a/templates/big_footer.html b/templates/big_footer.html new file mode 100644 index 0000000..cd676f9 --- /dev/null +++ b/templates/big_footer.html @@ -0,0 +1,34 @@ +<div class="w-full mt-8 bg-gray-100 flex justify-center items-center"> + <div class="w-full lg:w-1/2 py-14 px-4 lg:px-0 flex flex-col lg:flex-row space-y-4 lg:space-y-0"> + <!-- Copyright --> + <div class="flex flex-col space-y-4 flex-grow"> + <div class="flex flex-row items-center"> + <img src="static/img/logo.png" alt="" width="84"> + <div class="flex flex-col mx-4"> + <h1 class="text-2xl font-semibold font-zilla">iLotterytea's</h1> + <p class="text-2xl font-zilla">Twitch Bot</p> + </div> + </div> + <p class="text-xl"> + Maintained by + <a + class="text-green-800 hover:text-green-600" + href="{{ contact_url }}" + > + {{ contact_name }} + </a> + </p> + </div> + + <!-- Links --> + <div class="flex flex-row justify-between items-center"> + <!-- Git --> + <a + class="text-2xl bg-gray-200 hover:bg-green-200 p-2 rounded-lg transition-colors" + href="https://git.ilotterytea.kz/bot" + > + <i class="fa-brands fa-git"></i> + </a> + </div> + </div> +</div> diff --git a/templates/index.html b/templates/index.html index 8fff7aa..e7eec6d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -4,7 +4,7 @@ <link rel="stylesheet" type="text/css" href="/static/style.css"> </head> <body> - <div class="min-h-screen w-full flex justify-center"> + <div class="min-h-screen w-full flex justify-center items-center flex-col"> <div class="lg:w-1/2 w-full flex items-center flex-col"> {{> header.html }} @@ -140,6 +140,8 @@ </div> </div> </div> + + {{> big_footer.html }} </div> </body> </html> |
