Skip to content

Commit

Permalink
fixed popup
Browse files Browse the repository at this point in the history
  • Loading branch information
Vova Stelmashchuk committed Aug 12, 2024
1 parent 40fbef6 commit fa5bce8
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions src/templates/partials/head.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
<div>
<div class="bg-gray-200 p-6 rounded-lg mb-8 text-center cursor-pointer" id="header">
<h1 class="text-3xl md:text-4xl font-bold mb-4">Android Story Podcast</h1>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 container max-w-screen-xl mx-auto">
<a href="https://androidstory.dev/files/rss.xml" target="_blank">
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded w-full">
Наш RSS тут
</button>
</a>
<a href="https://open.spotify.com/show/4DzbFWyfcFX5zzh6MicCfM?si=99dda8490dd942c7" target="_blank">
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded w-full">
Spotify для патреонів
</button>
</a>
<a href="https://www.patreon.com/androidstory" target="_blank">
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded w-full">
Більше цікавого тут
</button>
</a>
<a href="https://www.youtube.com/channel/UC6-NFk4uOGsKvyisL1QC3rw" target="_blank">
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded w-full">
YouTube
</button>
</a>
</div>
<div class="bg-gray-200 p-6 rounded-lg mb-8 text-center cursor-pointer" id="header">
<h1 class="text-3xl md:text-4xl font-bold mb-4">Android Story Podcast</h1>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 container max-w-screen-xl mx-auto">
<a href="https://androidstory.dev/files/rss.xml">
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded w-full">
Наш RSS тут
</button>
</a>
<a href="https://open.spotify.com/show/4DzbFWyfcFX5zzh6MicCfM?si=99dda8490dd942c7">
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded w-full">
Spotify для патреонів
</button>
</a>
<a href="https://www.patreon.com/androidstory">
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded w-full">
Більше цікавого тут
</button>
</a>
<a href="https://www.youtube.com/channel/UC6-NFk4uOGsKvyisL1QC3rw">
<button class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded w-full">
YouTube
</button>
</a>
</div>
<script>
document.getElementById('header')
.addEventListener('click', function () {
window.location.href = '/';
});
</script>
</div>
</div>
<script>
document.getElementById('header')
.addEventListener('click', function () {
window.location.href = '/';
});
</script>
</div>

0 comments on commit fa5bce8

Please sign in to comment.