| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html dir="ltr" lang="en-US">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="">
- <meta name="color-scheme" content="dark">
- <link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', path='/apple-touch-icon.png') }}">
- <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', path='/favicon-32x32.png') }}">
- <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', path='/favicon-16x16.png') }}">
- <link rel="manifest" href="{{ url_for('static', path='/site.webmanifest') }}">
- <title>Dark.Fi Hardware</title>
- {% if CACHE == 'enable' %}
- <link rel="stylesheet" type="text/css" href="{{ url_for('static', path='/dist/styles-XHZV2ERZ.css') }}">
- <link rel="preload" href="{{ url_for('static', path='/dist/fonts/IBMPlexMono-Light.woff2') }}" as="font" type="font/woff2" crossorigin>
- <link rel="preload" href="{{ url_for('static', path='/dist/fonts/IBMPlexMono-LightItalic.woff2') }}" as="font" type="font/woff2" crossorigin>
- <link rel="preload" href="{{ url_for('static', path='/dist/fonts/Inter-Bold.woff2') }}" as="font" type="font/woff2" crossorigin>
- <link rel="preload" href="{{ url_for('static', path='/dist/fonts/Inter-BoldItalic.woff2') }}" as="font" type="font/woff2" crossorigin>
- <link rel="preload" href="{{ url_for('static', path='/dist/fonts/weissrundgotisch.regular.woff2') }}" as="font" type="font/woff2" crossorigin>
- {% if request.url.path.startswith('/products/') %}
- <script type="module" src="{{ url_for('static', path='/dist/product-R6DMP5AX.js') }}"></script>
- {% endif %}
- {% if request.url.path == '/checkout' %}
- <script src="https://js.stripe.com/v3/"></script>
- <script type="module" src="{{ url_for('static', path='/dist/checkout-7PTSF3BQ.js') }}"></script>
- {% endif %}
- {% else %}
- <link rel="stylesheet" type="text/css" href="{{ url_for('static', path='/css/styles.css') }}">
- <link rel="preload" href="{{ url_for('static', path='/fonts/IBMPlexMono-Light.woff2') }}" as="font" type="font/woff2" crossorigin>
- <link rel="preload" href="{{ url_for('static', path='/fonts/IBMPlexMono-LightItalic.woff2') }}" as="font" type="font/woff2" crossorigin>
- <link rel="preload" href="{{ url_for('static', path='/fonts/Inter-Bold.woff2') }}" as="font" type="font/woff2" crossorigin>
- <link rel="preload" href="{{ url_for('static', path='/fonts/Inter-BoldItalic.woff2') }}" as="font" type="font/woff2" crossorigin>
- <link rel="preload" href="{{ url_for('static', path='/fonts/weissrundgotisch.regular.woff2') }}" as="font" type="font/woff2" crossorigin>
- {% if request.url.path.startswith('/products/') %}
- <script type="module" src="{{ url_for('static', path='/js/product.js') }}"></script>
- {% endif %}
- {% if request.url.path == '/checkout' %}
- <script src="https://js.stripe.com/v3/"></script>
- <script type="module" src="{{ url_for('static', path='/js/checkout.js') }}"></script>
- {% endif %}
- {% endif %}
- </head>
- <body class="x xdc nav-height bgc-black">
- {% include "partials/nav.html" %}
- {% block content %}{% endblock %}
- </body>
- </html>
|