Skip to content

Instantly share code, notes, and snippets.

@janparkio
Last active April 17, 2023 17:38
Show Gist options
  • Save janparkio/edfcb697a0e7c1ec8918 to your computer and use it in GitHub Desktop.
Save janparkio/edfcb697a0e7c1ec8918 to your computer and use it in GitHub Desktop.
//Just place your code here. I'll take a look and comment were I found the errors.
@Dima2332171
Copy link

<!doctype html>

<title>Document</title>

Oli

Main Courses About Us Contacts

+38 (097) 455-55-77

+38 (093) 455-55-77

+38 (063) 455-55-77


Search Panel

    <div class="text-black">
        <template x-for="item in filteredItems">
        <div class="flex bg-colorGrey my-4 mx-4 py-3 px-3 border-solid border-gray-300 border-2 rounded-lg">
            <div class="pt-base">
                <img class="h-36 w-64 rounded-full" :src="`${item.img}`" alt="">
            </div>
            <div class="pt-base px-4">
            <h2 class="text-4xl first-letter:text-5xl first-letter:font-medium" x-text="item.title" ></h2>
            <p class="py-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium asperiores blanditiis, commodi dicta fuga illum in minus nobis officiis quod recusandae, repellat rerum tenetur voluptatem voluptatum? A ab molestias optio.</p>
                <a href="" class="bg-red-600 py-2 px-8 mb-1.5 rounded-full text-white hover:bg-red-700">Join to Us</a>
            </div>
        </div>
        </template>
    </div>
</div>

<script src="js/script.js"></script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment