|
1 | | - |
2 | 1 | {% load static %} |
3 | 2 | {% load django_htmx %} |
4 | 3 | {% load tailwind_cli %} |
5 | 4 | <!DOCTYPE html> |
6 | 5 | <html lang="en" class="h-full"> |
7 | | - <head> |
8 | | - <meta charset="utf-8"> |
9 | | - <meta name="viewport" content="width=device-width,initial-scale=1"> |
10 | | - <title> |
11 | | - {% block title %} |
12 | | - Default |
13 | | - {% endblock title %} |
14 | | - </title> |
15 | | - <meta name="description" content=""> |
16 | | - <meta name="author" content=""> |
17 | | - {% block css %} |
18 | | - {% endblock css %} |
19 | | - {% tailwind_css %} |
20 | | - <script src=" https://unpkg.com/[email protected]" |
21 | | - integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC" |
22 | | - crossorigin="anonymous"></script> |
23 | | - <script src="https://unpkg.com/htmx.org/dist/ext/head-support.js" |
24 | | - integrity="sha384-CtqhRhV1bHrqMSWc8cQGQL4epjUqCHjq/kJ9ztGHS39vO/1phOgyhFIieE87UKMu" |
25 | | - crossorigin="anonymous"></script> |
26 | | - <script src=" https://unpkg.com/[email protected]" |
27 | | - integrity="sha384-tg/2Ca9U/RohyxmGCb8qJVR3j9cswtKbdRSXOaPX/aDDOW1bfbeyV+7G9ifYF4bC" |
28 | | - crossorigin="anonymous"></script> |
29 | | - <script src="https://unpkg.com/htmx.org/dist/ext/preload.js" |
30 | | - integrity="sha384-NoiTdF/KjxH4wa6OHMdM4F6e/LIPNMcFBgOIINTTaczWo0vX1mWTOzckySqlGQS/" |
31 | | - crossorigin="anonymous"></script> |
32 | | - {% django_htmx_script %} |
33 | | - {% if debug %} |
34 | | - <script> |
| 6 | + <head> |
| 7 | + <meta charset="utf-8"> |
| 8 | + <meta name="viewport" content="width=device-width,initial-scale=1"> |
| 9 | + <title> |
| 10 | + {% block title %} |
| 11 | + Default |
| 12 | + {% endblock title %} |
| 13 | + </title> |
| 14 | + <meta name="description" content=""> |
| 15 | + <meta name="author" content=""> |
| 16 | + {% block css %} |
| 17 | + {% endblock css %} |
| 18 | + {% tailwind_css %} |
| 19 | + <script src=" https://unpkg.com/[email protected]" |
| 20 | + integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC" |
| 21 | + crossorigin="anonymous"></script> |
| 22 | + <script src="https://unpkg.com/htmx.org/dist/ext/head-support.js" |
| 23 | + integrity="sha384-CtqhRhV1bHrqMSWc8cQGQL4epjUqCHjq/kJ9ztGHS39vO/1phOgyhFIieE87UKMu" |
| 24 | + crossorigin="anonymous"></script> |
| 25 | + <script src=" https://unpkg.com/[email protected]" |
| 26 | + integrity="sha384-tg/2Ca9U/RohyxmGCb8qJVR3j9cswtKbdRSXOaPX/aDDOW1bfbeyV+7G9ifYF4bC" |
| 27 | + crossorigin="anonymous"></script> |
| 28 | + <script src="https://unpkg.com/htmx.org/dist/ext/preload.js" |
| 29 | + integrity="sha384-NoiTdF/KjxH4wa6OHMdM4F6e/LIPNMcFBgOIINTTaczWo0vX1mWTOzckySqlGQS/" |
| 30 | + crossorigin="anonymous"></script> |
| 31 | + {% django_htmx_script %} |
| 32 | + {% if debug %} |
| 33 | + <script> |
35 | 34 | if (typeof window.htmx !== "undefined") { |
36 | 35 | htmx.on("htmx:afterSettle", function(detail) { |
37 | 36 | if ( |
|
46 | 45 | } |
47 | 46 | }); |
48 | 47 | } |
49 | | - </script> |
50 | | - {% endif %} |
51 | | - <script defer |
52 | | - src=" https://unpkg.com/@alpinejs/[email protected]" |
53 | | - integrity="sha384-BOC0hrQPTXQv3X+4j0CDVtDdBplQLPPs6KJfKnc3r7/DNlbvpd9EjykBWP/sNH9v" |
54 | | - crossorigin="anonymous"></script> |
55 | | - <script defer |
56 | | - src=" https://unpkg.com/@alpinejs/[email protected]" |
57 | | - integrity="sha384-2OH1oWuzGQTwIVsefc3w96FepRDcaddeEJiyo8ZXCQA4jP7C4mQMdI70jDKtgq0R" |
58 | | - crossorigin="anonymous"></script> |
59 | | - <script defer |
60 | | - src=" https://unpkg.com/@alpinejs/[email protected]" |
61 | | - integrity="sha384-KbHuoVQjZqKnY0E8Zy6AadqsgGJwz0QYY5kk9XyFE2GTDeOqNYsSBDLCNOuSwcis" |
62 | | - crossorigin="anonymous"></script> |
63 | | - <script defer |
64 | | - src=" https://unpkg.com/[email protected]" |
65 | | - integrity="sha384-Rpe/8orFUm5Q1GplYBHxbuA8Az8O8C5sAoOsdbRWkqPjKFaxPgGZipj4zeHL7lxX" |
66 | | - crossorigin="anonymous"></script> |
67 | | - {% block javascript_head %} |
68 | | - {% endblock javascript_head %} |
69 | | - </head> |
70 | | - {% block body %} |
71 | | - <body {% if debug %}class="debug-screens"{% endif %} |
72 | | - hx-ext="head-support, preload"> |
73 | | - <main class="mt-16"> |
74 | | - {% block content %} |
75 | | - {% endblock content %} |
76 | | - </main> |
77 | | - {% block javascript_foot %} |
78 | | - {% endblock javascript_foot %} |
79 | | - </body> |
80 | | - {% endblock body %} |
| 48 | + </script> |
| 49 | + {% endif %} |
| 50 | + <script defer |
| 51 | + src=" https://unpkg.com/@alpinejs/[email protected]" |
| 52 | + integrity="sha384-BOC0hrQPTXQv3X+4j0CDVtDdBplQLPPs6KJfKnc3r7/DNlbvpd9EjykBWP/sNH9v" |
| 53 | + crossorigin="anonymous"></script> |
| 54 | + <script defer |
| 55 | + src=" https://unpkg.com/@alpinejs/[email protected]" |
| 56 | + integrity="sha384-2OH1oWuzGQTwIVsefc3w96FepRDcaddeEJiyo8ZXCQA4jP7C4mQMdI70jDKtgq0R" |
| 57 | + crossorigin="anonymous"></script> |
| 58 | + <script defer |
| 59 | + src=" https://unpkg.com/@alpinejs/[email protected]" |
| 60 | + integrity="sha384-KbHuoVQjZqKnY0E8Zy6AadqsgGJwz0QYY5kk9XyFE2GTDeOqNYsSBDLCNOuSwcis" |
| 61 | + crossorigin="anonymous"></script> |
| 62 | + <script defer |
| 63 | + src=" https://unpkg.com/[email protected]" |
| 64 | + integrity="sha384-Rpe/8orFUm5Q1GplYBHxbuA8Az8O8C5sAoOsdbRWkqPjKFaxPgGZipj4zeHL7lxX" |
| 65 | + crossorigin="anonymous"></script> |
| 66 | + {% block javascript_head %} |
| 67 | + {% endblock javascript_head %} |
| 68 | + </head> |
| 69 | + {% block body %} |
| 70 | + <body {% if debug %}class="debug-screens"{% endif %} |
| 71 | + hx-ext="head-support, preload"> |
| 72 | + <main class="mt-16"> |
| 73 | + {% block content %} |
| 74 | + {% endblock content %} |
| 75 | + </main> |
| 76 | + {% block javascript_foot %} |
| 77 | + {% endblock javascript_foot %} |
| 78 | + </body> |
| 79 | + {% endblock body %} |
81 | 80 | </html> |
0 commit comments