SPB Git forge

spb/rent-ka

Public
8commits 1branches 0releases
7.4 MBsize
maindefault branch
19 days agolast push
Python 68.8% TypeScript 18.6% CSS 8.7% JavaScript 3.3% HTML 0.6%
2.3 KB · 39 lines html
Raw Blame History
1<!doctype html>2<!-- ---------------------------------------------------------------------------3  Rent-Ka — Rental listings aggregator (Canada, outside Québec)4  Author: Simon-Pierre Boucher — contact@spboucher.ai5---------------------------------------------------------------------------- -->6<html lang="en-CA">7  <head>8    <meta charset="UTF-8" />9    <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />10    <title>Rent-Ka — A Groupe KA service</title>11    <meta name="description" content="Rent-Ka aggregates apartments and homes for rent published by property managers across Canada — Toronto, Ottawa, Vancouver, Calgary, Halifax and more — always up to date." />12    <meta name="theme-color" content="#f5f3ee" />13    <meta name="mobile-web-app-capable" content="yes" />14    <meta name="apple-mobile-web-app-capable" content="yes" />15    <meta name="apple-mobile-web-app-status-bar-style" content="default" />16    <meta name="apple-mobile-web-app-title" content="Rent-Ka" />17    <link rel="manifest" href="/manifest.webmanifest" />18    <link rel="preconnect" href="https://fonts.googleapis.com" />19    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />20    <link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap" rel="stylesheet" />21    <link rel="icon" type="image/svg+xml" href="/favicon.svg" />22    <link rel="apple-touch-icon" href="/apple-touch-icon.png" />23    <meta property="og:image" content="https://www.rent-ka.com/og.png" />24    <meta property="og:image:width" content="1200" />25    <meta property="og:image:height" content="630" />26    <meta name="twitter:card" content="summary_large_image" />27    <meta name="twitter:image" content="https://www.rent-ka.com/og.png" />28  </head>29  <body>30    <div id="root"></div>31    <script type="module" src="/src/main.tsx"></script>32    <script>window.KA_AGENT={site:"rent-ka"}</script>33    <script src="/ka-agent.js" defer></script>34    <!-- KA ID v2: browser signals for personalization (clicks, dwell) -->35    <script>window.KAID_CONF={card:"a[href^='/listing/']",detail:"^/listing/(.+)$",entity:"listing"}</script>36    <script src="/ka-id.js" defer></script>37  </body>38</html>39