2022-05-23 21:51:06 +00:00
|
|
|
{% include 'header.html' %}
|
2024-04-12 12:46:47 +00:00
|
|
|
{% from 'style.html' import breadcrumb_line_svg %}
|
2022-10-10 21:44:14 +00:00
|
|
|
<div class="container mx-auto">
|
2024-04-12 12:46:47 +00:00
|
|
|
<section class="p-5 mt-5">
|
|
|
|
<div class="flex flex-wrap items-center -m-2">
|
|
|
|
<div class="w-full md:w-1/2 p-2">
|
|
|
|
<ul class="flex flex-wrap items-center gap-x-3 mb-2">
|
|
|
|
<li>
|
|
|
|
<a class="flex font-medium text-xs text-coolGray-500 dark:text-gray-300 hover:text-coolGray-700" href="/">
|
|
|
|
<p>Home</p>
|
|
|
|
</a>
|
|
|
|
<li>{{ breadcrumb_line_svg | safe }}</li>
|
|
|
|
<li>
|
|
|
|
<a class="flex font-medium text-xs text-coolGray-500 dark:text-gray-300 hover:text-coolGray-700" href="/automation">Automation Strategies</a>
|
|
|
|
</li>
|
|
|
|
<li>{{ breadcrumb_line_svg | safe }}</li>
|
|
|
|
<li>
|
|
|
|
<a class="flex font-medium text-xs text-coolGray-500 dark:text-gray-300 hover:text-coolGray-700" href="/automation">New</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class="py-4">
|
|
|
|
<div class="container px-4 mx-auto">
|
|
|
|
<div class="relative py-11 px-16 bg-coolGray-900 dark:bg-blue-500 rounded-md overflow-hidden">
|
|
|
|
<img class="absolute z-10 left-4 top-4" src="/static/images/elements/dots-red.svg" alt="">
|
|
|
|
<img class="absolute z-10 right-4 bottom-4" src="/static/images/elements/dots-red.svg" alt="">
|
|
|
|
<img class="absolute h-64 left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2 object-cover" src="/static/images/elements/wave.svg" alt="">
|
|
|
|
<div class="relative z-20 flex flex-wrap items-center -m-3">
|
|
|
|
<div class="w-full md:w-1/2 p-3">
|
|
|
|
<h2 class="mb-6 text-4xl font-bold text-white tracking-tighter">New Automation Strategy</h2>
|
|
|
|
<p class="font-normal text-coolGray-200 dark:text-white"><span class="bold">TODO/WIP:</span>
|
|
|
|
</p>
|
2023-04-06 14:59:28 +00:00
|
|
|
</div>
|
2022-10-10 21:44:14 +00:00
|
|
|
</div>
|
2024-04-12 12:46:47 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% include 'inc_messages.html' %}
|
2023-04-06 14:59:28 +00:00
|
|
|
<section>
|
|
|
|
<div class="pl-6 pr-6 pt-0 pb-0 mt-5 h-full overflow-hidden">
|
|
|
|
<div class="pb-6 border-coolGray-100">
|
|
|
|
<div class="flex flex-wrap items-center justify-between -m-2">
|
|
|
|
<div class="w-full pt-2 text-center "></div>
|
2022-10-10 21:44:14 +00:00
|
|
|
</div>
|
2023-04-06 14:59:28 +00:00
|
|
|
</div>
|
2022-10-10 21:44:14 +00:00
|
|
|
</div>
|
2023-04-06 14:59:28 +00:00
|
|
|
</section>
|
|
|
|
</div>
|
2022-10-10 21:44:14 +00:00
|
|
|
{% include 'footer.html' %}
|
|
|
|
</div>
|
|
|
|
</body>
|
2022-11-10 21:49:55 +00:00
|
|
|
</html>
|