Skip to content

Instantly share code, notes, and snippets.

@ManotLuijiu
Created January 23, 2021 16:50
Show Gist options
  • Save ManotLuijiu/3338e12a095782cc16261a38d405c68c to your computer and use it in GitHub Desktop.
Save ManotLuijiu/3338e12a095782cc16261a38d405c68c to your computer and use it in GitHub Desktop.
Django templates/landing.html
{% extends "base.html" %} {% block content %}
<section class="text-gray-600 body-font">
<div
class="container mx-auto flex px-5 py-24 items-center justify-center flex-col"
>
<img
class="lg:w-2/6 md:w-3/6 w-5/6 mb-10 object-cover object-center rounded"
alt="hero"
src="https://dummyimage.com/720x600"
/>
<div class="text-center lg:w-2/3 w-full">
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900"
>
CRM built with Django 3.x
</h1>
<p class="mb-8 leading-relaxed">This CRM helps you manage your leads.</p>
<div class="flex justify-center">
<button
class="inline-flex text-white bg-blue-500 border-0 py-2 px-6 focus:outline-none hover:bg-blue-600 rounded text-lg"
>
Button
</button>
<button
class="ml-4 inline-flex text-gray-700 bg-gray-100 border-0 py-2 px-6 focus:outline-none hover:bg-gray-200 rounded text-lg"
>
Button
</button>
</div>
</div>
</div>
</section>
{% endblock content %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment