templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>{% block title %}Trustyfy{% endblock %}</title>
  7. <link rel="shortcut icon" href="https://app.trustyfy.com/favicon.ico">
  8. <link rel="icon" type="image/png" sizes="16x16" href="https://app.trustyfy.com/favicon.png">
  9. <link rel="icon" type="image/png" sizes="32x32" href="https://app.trustyfy.com/favicon.png">
  10. <link rel="icon" type="image/png" sizes="192x192" href="https://app.trustyfy.com/logo-android-192x192.png">
  11. <link rel="icon" type="image/png" sizes="512x512" href="https://app.trustyfy.com/logo-android-bg-white-2-512x512.png">
  12. <link rel="apple-touch-icon" sizes="180x180" href="https://app.trustyfy.com/apple-touch-icon-180x180.png">
  13. <link rel="stylesheet" charset="UTF-8" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css">
  14. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css">
  15. <script src="https://cdn.tailwindcss.com"></script>
  16. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  17. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  18. <script>
  19. tailwind.config = {
  20. theme: {
  21. extend: {
  22. fontFamily: {
  23. sans: ['Inter', 'sans-serif'],
  24. },
  25. colors: {
  26. trustydark: '#261e35',
  27. trustyaccent: '#F95A44',
  28. trustybg: '#f9f9fb',
  29. trustycard: '#ffffff',
  30. trustytext: '#1f1f2e',
  31. trustymuted: '#8f8f9d'
  32. }
  33. }
  34. }
  35. }
  36. </script>
  37. <style>
  38. body { font-family: 'Inter', sans-serif; background-color: theme('colors.trustybg'); color: theme('colors.trustytext'); }
  39. .glass { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); }
  40. {% block stylesheets %}{% endblock %}
  41. </style>
  42. </head>
  43. <body>
  44. {% block body %}{% endblock %}
  45. {% block javascripts %}{% endblock %}
  46. </body>
  47. </html>