-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add create button podcast and small ui fix
- Loading branch information
1 parent
36282d3
commit accd293
Showing
7 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,18 @@ | |
<script src="https://unpkg.com/[email protected]"></script> | ||
</head> | ||
|
||
<body class="bg-gray-100 text-gray-900 font-sans"> | ||
<body class="bg-gray-100 text-gray-900 font-sans min-h-screen flex flex-col"> | ||
{{> admin_head}} | ||
<div class="container max-w-screen-xl mx-auto"> | ||
|
||
<div class="container max-w-screen-xl mx-auto flex-grow"> | ||
{{{ content }}} | ||
</div> | ||
|
||
<div id="dialog-container"></div> | ||
|
||
<footer class="bg-black p-4 text-center mt-auto"> | ||
<p class="text-white">© 2024 DIY podcast hosting</p> | ||
</footer> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<button hx-swap="#dialog-container" hx-post="/admin/show/{{showSlug}}/episode-new" | ||
class="common-button w-full px-4 py-2 my-2 transition-all duration-300 ease-in-out"> | ||
{{title}} | ||
</button> |