|
| 1 | +<!-- fluid · favicon + meta head snippet --> |
| 2 | +<!-- Drop into <head>. Adjust the /assets/ prefix if you serve from a different path. --> |
| 3 | + |
| 4 | +<!-- Favicon --> |
| 5 | +<link rel="icon" href="/assets/fluid-favicon.ico" sizes="any"> |
| 6 | +<link rel="icon" type="image/svg+xml" href="/assets/fluid-logo.svg"> |
| 7 | + |
| 8 | +<!-- PNG fallbacks --> |
| 9 | +<link rel="icon" type="image/png" sizes="16x16" href="/assets/png/fluid-logo-16.png"> |
| 10 | +<link rel="icon" type="image/png" sizes="32x32" href="/assets/png/fluid-logo-32.png"> |
| 11 | +<link rel="icon" type="image/png" sizes="48x48" href="/assets/png/fluid-logo-48.png"> |
| 12 | +<link rel="icon" type="image/png" sizes="64x64" href="/assets/png/fluid-logo-64.png"> |
| 13 | +<link rel="icon" type="image/png" sizes="128x128" href="/assets/png/fluid-logo-128.png"> |
| 14 | +<link rel="icon" type="image/png" sizes="256x256" href="/assets/png/fluid-logo-256.png"> |
| 15 | + |
| 16 | +<!-- Apple touch icons --> |
| 17 | +<link rel="apple-touch-icon" sizes="180x180" href="/assets/png/fluid-logo-light-256.png"> |
| 18 | +<link rel="apple-touch-icon" sizes="512x512" href="/assets/png/fluid-logo-light-512.png"> |
| 19 | + |
| 20 | +<!-- PWA manifest --> |
| 21 | +<link rel="manifest" href="/assets/fluid-manifest.json"> |
| 22 | + |
| 23 | +<!-- Theme colors --> |
| 24 | +<meta name="theme-color" content="#F5F3EE" media="(prefers-color-scheme: light)"> |
| 25 | +<meta name="theme-color" content="#0B0F14" media="(prefers-color-scheme: dark)"> |
| 26 | +<meta name="msapplication-TileColor" content="#1E40AF"> |
| 27 | +<meta name="msapplication-TileImage" content="/assets/png/fluid-logo-dark-256.png"> |
| 28 | + |
| 29 | +<!-- Open Graph --> |
| 30 | +<meta property="og:title" content="fluid — async backend tools for Python"> |
| 31 | +<meta property="og:description" content="Async workers, schedulers, and queues for Python."> |
| 32 | +<meta property="og:image" content="/assets/png/fluid-banner-dark-1200.png"> |
| 33 | +<meta property="og:image:width" content="1200"> |
| 34 | +<meta property="og:image:height" content="300"> |
| 35 | +<meta name="twitter:card" content="summary_large_image"> |
0 commit comments