Mission 1b (lot 8) — logisbourg, logisco, logisma, lokalia, lynk_olymbec
- lokalia : +12 annonces (variantes « + DEN » dédupliquées à tort), GPS 100 % - logisco : adresse complète JSON-LD, superficie/étage structurés, 4 sections de commodités, pages unité en cache - lynk_olymbec : valeurs semi-inventées supprimées, prix/dispo réels RentCafe - normalize.py : non-chauffé avec trait d'union, branchements combinés, « refusés sauf un chat » -> conditions, « (sans utilisation) » neutralisé, fourchettes « de X $ à Y $ » = prix plancher Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Showing 30 changed files with +19,530 and −148
modified
louka/connectors/logisbourg.py
+154 −47
@@ -4,11 +4,15 @@ | ||
| 4 | 4 | # connectors/logisbourg.py : connecteur Logisbourg (logisbourg.com) |
| 5 | 5 | # Site ASP classique : tableau des disponibilités par immeuble |
| 6 | 6 | # (Le Bourgarde, Les Terrasses du Bourg, Le Bourg du Maizerets, |
| 7 | −# Le Bourg du Fleuve) + fiche appartement.asp pour adresse, images | |
| 8 | −# et commodités. | |
| 7 | +# Le Bourg du Fleuve) + fiche appartement.asp pour adresse (avec no | |
| 8 | +# d'unité), lat/lng (carte Google), superficie (encadré dédié), images, | |
| 9 | +# caractéristiques de l'appartement et de l'immeuble, services optionnels | |
| 10 | +# et téléphone du bureau de location. Fiches mises en cache via | |
| 11 | +# self.detail() : re-visitées seulement quand la ligne du tableau change. | |
| 9 | 12 | # ----------------------------------------------------------------------------- |
| 10 | 13 | from __future__ import annotations |
| 11 | 14 | |
| 15 | +import hashlib | |
| 12 | 16 | import html as htmllib |
| 13 | 17 | import re |
| 14 | 18 | from urllib.parse import quote |
@@ -27,19 +31,39 @@ _COMPLEX_RE = re.compile( | ||
| 27 | 31 | _ROW_RE = re.compile(r'<TR id="tr_(\d+)_".*?</TR>', re.S | re.I) |
| 28 | 32 | _LINK_RE = re.compile( |
| 29 | 33 | r"appartement\.asp\?SID=(\d+)&CID=(\d+)&LID=(\d+)&Secteur=([^&']*)&Complexe=([^']*)'") |
| 30 | −_IMG_ALT_BLACKLIST = re.compile( | |
| 31 | − r"logisbourg|appartements?$|condos|notifications|carri[èe]res|contact|" | |
| 32 | − r"linkedin|facebook|youtube|favoris|plan appartement", re.I) | |
| 34 | +# Fiche : icônes/texte des caractéristiques (<div class='carac_icone'>…</div>) | |
| 35 | +_CARAC_RE = re.compile(r"<div class=['\"]carac_icone['\"][^>]*>(.*?)</div>", | |
| 36 | + re.S | re.I) | |
| 37 | +# Fiche : superficie dans son encadré dédié (<div id='superficie_encadre'>) | |
| 38 | +_SUPERFICIE_RE = re.compile( | |
| 39 | + r"id=['\"]superficie_encadre['\"][^>]*>\s*([\d\s]{2,7})\s*pi", re.I) | |
| 40 | +# Fiche : coordonnées de la carte Google (new google.maps.LatLng(46.84,-71.26)) | |
| 41 | +_LATLNG_RE = re.compile(r"google\.maps\.LatLng\((-?\d{1,3}\.\d+),\s*(-?\d{1,3}\.\d+)\)") | |
| 42 | +# Fiche : adresse complète avec no d'unité (« 4855, 6e Avenue Ouest # 403 ») | |
| 43 | +_ADDR_UNIT_RE = re.compile(r'<div class="nomComplexeAdresse">(.*?)</div>', re.S | re.I) | |
| 33 | 44 | |
| 34 | 45 | |
| 35 | 46 | def _strip_tags(s: str) -> str: |
| 36 | 47 | return re.sub(r"\s+", " ", htmllib.unescape(re.sub(r"<[^>]+>", " ", s))).strip() |
| 37 | 48 | |
| 38 | 49 | |
| 50 | +def _fix_sup(street: str) -> str: | |
| 51 | + """« 6 e Avenue » (issu de 6<SUP>e</SUP>) -> « 6e Avenue ».""" | |
| 52 | + return re.sub(r"(\d)\s+(e|er|re)(\s+|$)", r"\1\2 ", street).strip() | |
| 53 | + | |
| 54 | + | |
| 55 | +class _DetailBudget(Exception): | |
| 56 | + """Plafond de vraies requêtes de fiches atteint pour cette synchro.""" | |
| 57 | + | |
| 58 | + | |
| 39 | 59 | class LogisbourgConnector(BaseConnector): |
| 40 | 60 | source_id = "logisbourg" |
| 41 | 61 | request_delay = 0.6 |
| 42 | − max_details = 80 # garde-fou de fetch des fiches | |
| 62 | + max_details = 80 # plafond de VRAIES requêtes de fiches par synchro | |
| 63 | + | |
| 64 | + def __init__(self) -> None: | |
| 65 | + super().__init__() | |
| 66 | + self._detail_fetches = 0 | |
| 43 | 67 | |
| 44 | 68 | # le serveur n'annonce pas de charset : forcer l'UTF-8 déclaré dans le HTML |
| 45 | 69 | def _get_text(self, url: str) -> str: |
@@ -60,6 +84,7 @@ class LogisbourgConnector(BaseConnector): | ||
| 60 | 84 | |
| 61 | 85 | # 2) Lignes de disponibilités |
| 62 | 86 | listings: dict[str, Listing] = {} |
| 87 | + row_keys: dict[str, str] = {} # lid -> hash de la ligne | |
| 63 | 88 | for row_m in _ROW_RE.finditer(html): |
| 64 | 89 | row = row_m.group(0) |
| 65 | 90 | link = _LINK_RE.search(row) |
@@ -102,6 +127,13 @@ class LogisbourgConnector(BaseConnector): | ||
| 102 | 127 | if floor: |
| 103 | 128 | amenities.append(f"Étage : {floor}") |
| 104 | 129 | |
| 130 | + # clé de cache des fiches : contenu de la ligne du tableau | |
| 131 | + # (préfixe v2 = version de l'extraction, pour invalider le cache | |
| 132 | + # quand le connecteur change) | |
| 133 | + row_keys[lid] = "v3:" + hashlib.sha1( | |
| 134 | + " | ".join([unit_raw, avail, floor, price_label] + included) | |
| 135 | + .encode("utf-8")).hexdigest() | |
| 136 | + | |
| 105 | 137 | listings[lid] = Listing( |
| 106 | 138 | source=self.source_id, |
| 107 | 139 | external_id=lid, |
@@ -116,51 +148,126 @@ class LogisbourgConnector(BaseConnector): | ||
| 116 | 148 | amenities=amenities, |
| 117 | 149 | ) |
| 118 | 150 | |
| 119 | − # 3) Fiches : adresse civique, images, commodités, superficie | |
| 120 | − for i, lst in enumerate(listings.values()): | |
| 121 | − if i >= self.max_details: | |
| 122 | − break | |
| 151 | + # 3) Fiches (avec cache BD) : adresse + no d'unité, lat/lng, superficie, | |
| 152 | + # images, caractéristiques, services optionnels, téléphone | |
| 153 | + for lid, lst in listings.items(): | |
| 154 | + url = lst.url | |
| 123 | 155 | try: |
| 124 | − detail = self._get_text(lst.url) | |
| 156 | + payload = self.detail( | |
| 157 | + lid, row_keys.get(lid, ""), | |
| 158 | + lambda u=url: self._fetch_detail(u)) | |
| 159 | + except _DetailBudget: | |
| 160 | + continue | |
| 125 | 161 | except Exception: |
| 126 | 162 | continue |
| 163 | + self._apply_detail(lst, payload) | |
| 164 | + | |
| 165 | + return list(listings.values()) | |
| 166 | + | |
| 167 | + # -- fiche appartement.asp ------------------------------------------------- | |
| 168 | + def _fetch_detail(self, url: str) -> dict: | |
| 169 | + if self._detail_fetches >= self.max_details: | |
| 170 | + raise _DetailBudget(url) | |
| 171 | + self._detail_fetches += 1 | |
| 172 | + detail = self._get_text(url) | |
| 173 | + out: dict = {} | |
| 127 | 174 | |
| 128 | − # adresse civique (variables JS adr1/adr2 de la carte Google) | |
| 175 | + # adresse complète avec no d'unité (« 4855, 6e Avenue Ouest # 403 ») | |
| 176 | + m = _ADDR_UNIT_RE.search(detail) | |
| 177 | + if m: | |
| 178 | + addr = _fix_sup(_strip_tags(m.group(1))) | |
| 179 | + out["address"] = re.sub(r"#\s*", "#", addr) | |
| 180 | + if not out.get("address"): | |
| 181 | + # repli : variables JS adr1/adr2 de la carte Google | |
| 129 | 182 | m = re.search(r'var adr1 = "([^"]*)";\s*var adr2 = "([^"]*)"', detail) |
| 130 | 183 | if m and m.group(1): |
| 131 | − street = _strip_tags(m.group(2)) | |
| 132 | − street = re.sub(r"(\d)\s+e(\s+|$)", r"\1e ", street).strip() | |
| 133 | − addr = f"{m.group(1)}, {street}".strip(" ,") | |
| 134 | − lst.address = addr | |
| 135 | − lst.title = f"{addr} — {lst.unit_type}".strip(" —") | |
| 136 | − | |
| 137 | − # retirer commentaires et scripts avant les autres extractions | |
| 138 | − detail = re.sub(r"<!--.*?-->", " ", detail, flags=re.S) | |
| 139 | − detail = re.sub(r"<script.*?</script>", " ", detail, flags=re.S | re.I) | |
| 140 | − # images de l'immeuble : ./<secteur>/<immeuble>/images/xxx.jpg | |
| 141 | − imgs = re.findall( | |
| 142 | − r'(?:\./)?([a-z0-9_\-]+/[a-z0-9_\-]+/images/[^"\'\s]+' | |
| 143 | − r'\.(?:jpg|jpeg|png|webp))', detail, re.I) | |
| 144 | − lst.images = [f"{BASE}/{u}" for u in dict.fromkeys(imgs)][:25] | |
| 145 | − | |
| 146 | − # commodités supplémentaires (icônes ALT) + superficie | |
| 147 | − alts = [htmllib.unescape(a or b) for a, b in | |
| 148 | − re.findall(r'(?:ALT|alt)=(?:"([^"]{3,60})"|\'([^\']{3,60})\')', detail) | |
| 149 | − if not _IMG_ALT_BLACKLIST.search(a or b)] | |
| 150 | − for a in dict.fromkeys(alts): | |
| 151 | − if a not in lst.amenities: | |
| 152 | − lst.amenities.append(a) | |
| 153 | − m = re.search(r"(\d{3,4})\s*pi", detail) | |
| 154 | − if m: | |
| 155 | − lst.amenities.append(f"{m.group(1)} pi²") | |
| 156 | − | |
| 157 | − # caractéristiques de l'immeuble -> description | |
| 158 | − m = re.search(r"Caract[ée]ristiques immeuble(.*?)(?:Services optionnels|" | |
| 159 | − r"Les informations)", detail, re.S | re.I) | |
| 160 | − if m: | |
| 161 | − block = re.sub(r"<!--.*?-->", " ", m.group(1), flags=re.S) | |
| 162 | − block = re.sub(r"<script.*?</script>", " ", block, flags=re.S | re.I) | |
| 163 | − lst.description = ("Caractéristiques de l'immeuble : " | |
| 164 | − + _strip_tags(block))[:500] | |
| 184 | + out["address"] = f"{m.group(1)}, {_fix_sup(_strip_tags(m.group(2)))}".strip(" ,") | |
| 165 | 185 | |
| 166 | − return list(listings.values()) | |
| 186 | + # coordonnées de la carte Google (structurées) | |
| 187 | + m = _LATLNG_RE.search(detail) | |
| 188 | + if m: | |
| 189 | + out["lat"], out["lng"] = float(m.group(1)), float(m.group(2)) | |
| 190 | + | |
| 191 | + # superficie : encadré dédié de la fiche (structuré) | |
| 192 | + m = _SUPERFICIE_RE.search(detail) | |
| 193 | + if m: | |
| 194 | + try: | |
| 195 | + val = float(m.group(1).replace(" ", "")) | |
| 196 | + if 80 <= val <= 20000: | |
| 197 | + out["area_sqft"] = val | |
| 198 | + except ValueError: | |
| 199 | + pass | |
| 200 | + | |
| 201 | + # téléphone du bureau de location (lien tel: du formulaire de visite) | |
| 202 | + m = re.search(r"Pour une visite.*?tel:\+?1?(\d{10})", detail, re.S | re.I) | |
| 203 | + if m: | |
| 204 | + d = m.group(1) | |
| 205 | + out["phone"] = f"{d[0:3]}-{d[3:6]}-{d[6:10]}" | |
| 206 | + | |
| 207 | + # retirer commentaires et scripts avant les extractions texte | |
| 208 | + detail = re.sub(r"<!--.*?-->", " ", detail, flags=re.S) | |
| 209 | + detail = re.sub(r"<script.*?</script>", " ", detail, flags=re.S | re.I) | |
| 210 | + | |
| 211 | + # images de l'immeuble : ./<secteur>/<immeuble>/images/xxx.jpg | |
| 212 | + imgs = re.findall( | |
| 213 | + r'(?:\./)?([a-z0-9_\-]+/[a-z0-9_\-]+/images/[^"\'\s]+' | |
| 214 | + r'\.(?:jpg|jpeg|png|webp))', detail, re.I) | |
| 215 | + out["images"] = [f"{BASE}/{u}" for u in dict.fromkeys(imgs)][:25] | |
| 216 | + | |
| 217 | + # caractéristiques de l'appartement : ALT des icônes (« Entrées | |
| 218 | + # laveuse/sécheuse incluses ») + texte visible (« Balcon 60 pi² », | |
| 219 | + # « Un stationnement extérieur »…) | |
| 220 | + amen: list[str] = [] | |
| 221 | + for c in _CARAC_RE.findall(detail): | |
| 222 | + amen += [htmllib.unescape(a or b) for a, b in | |
| 223 | + re.findall(r"(?:ALT|alt)=(?:\"([^\"]{3,60})\"|'([^']{3,60})')", c)] | |
| 224 | + amen.append(_strip_tags(c)) | |
| 225 | + # caractéristiques de l'immeuble (liste <li> : Bell Fibe, Intercom…) | |
| 226 | + m = re.search(r"Caract[ée]ristiques immeuble(.*?)(?:Services optionnels|" | |
| 227 | + r"Les informations)", detail, re.S | re.I) | |
| 228 | + immeuble_txt = "" | |
| 229 | + if m: | |
| 230 | + immeuble_txt = _strip_tags(m.group(1)) | |
| 231 | + amen += [_strip_tags(li) for li in | |
| 232 | + re.findall(r"<li>(.*?)</li>", m.group(1), re.S | re.I)] | |
| 233 | + # revêtements de sol (« Revêtements : Bois flottant, céramique… ») | |
| 234 | + m = re.search(r"Rev[êe]tements?\s*:\s*([^<]{3,120})", detail, re.I) | |
| 235 | + if m: | |
| 236 | + amen.append("Revêtements : " + _strip_tags(m.group(1))) | |
| 237 | + out["amenities"] = [a for a in dict.fromkeys(amen) | |
| 238 | + if len(a) >= 3 and a.lower() != "superficie"][:25] | |
| 239 | + | |
| 240 | + # description : présentation du complexe + immeuble + services optionnels | |
| 241 | + desc_bits = [] | |
| 242 | + m = re.search(r'<div id="DescriptionComplexe">(.*?)</div>', detail, | |
| 243 | + re.S | re.I) | |
| 244 | + if m and _strip_tags(m.group(1)): | |
| 245 | + desc_bits.append(_strip_tags(m.group(1))) | |
| 246 | + if immeuble_txt: | |
| 247 | + desc_bits.append("Caractéristiques de l'immeuble : " + immeuble_txt) | |
| 248 | + m = re.search(r"Services optionnels(.*?)Les informations", detail, | |
| 249 | + re.S | re.I) | |
| 250 | + if m and _strip_tags(m.group(1)): | |
| 251 | + desc_bits.append("Services optionnels : " + _strip_tags(m.group(1))) | |
| 252 | + out["description"] = " — ".join(desc_bits)[:900] | |
| 253 | + return out | |
| 254 | + | |
| 255 | + def _apply_detail(self, lst: Listing, payload: dict) -> None: | |
| 256 | + if not payload: | |
| 257 | + return | |
| 258 | + if payload.get("address"): | |
| 259 | + lst.address = payload["address"] | |
| 260 | + lst.title = f"{payload['address']} — {lst.unit_type}".strip(" —") | |
| 261 | + if payload.get("lat") is not None and payload.get("lng") is not None: | |
| 262 | + lst.lat, lst.lng = payload["lat"], payload["lng"] | |
| 263 | + if payload.get("area_sqft"): | |
| 264 | + lst.area_sqft = payload["area_sqft"] | |
| 265 | + if payload.get("phone"): | |
| 266 | + lst.details.setdefault("contact", {})["phone"] = payload["phone"] | |
| 267 | + for a in payload.get("amenities", []): | |
| 268 | + if a not in lst.amenities: | |
| 269 | + lst.amenities.append(a) | |
| 270 | + if payload.get("images"): | |
| 271 | + lst.images = payload["images"] | |
| 272 | + if payload.get("description"): | |
| 273 | + lst.description = payload["description"] | |
modified
louka/connectors/logisco.py
+121 −1
@@ -5,11 +5,19 @@ | ||
| 5 | 5 | # Site rendu serveur. Crawl : page liste principale (+ pages villes) pour |
| 6 | 6 | # découvrir les pages projets, puis extraction des unités disponibles |
| 7 | 7 | # (cartes .unitCard) sur chaque page projet. Une annonce par unité. |
| 8 | +# Chaque page unité (mise en cache via self.detail, plafond 150 vraies | |
| 9 | +# requêtes/sync) apporte : JSON-LD (adresse avec no d'unité + code postal, | |
| 10 | +# étage, téléphone, plan de l'unité), superficie/étage/dispo structurés | |
| 11 | +# (sommaire .unitHeader) et les 4 sections de commodités (Inclusions, | |
| 12 | +# Particularités, Services offerts, Espaces communs). | |
| 8 | 13 | # Villes retenues : Québec, Lévis, Saint-Augustin-de-Desmaures |
| 9 | 14 | # (Donnacona et autres villes hors région exclues). |
| 10 | 15 | # ----------------------------------------------------------------------------- |
| 11 | 16 | from __future__ import annotations |
| 12 | 17 | |
| 18 | +import hashlib | |
| 19 | +import html as htmllib | |
| 20 | +import json | |
| 13 | 21 | import re |
| 14 | 22 | from urllib.parse import urljoin |
| 15 | 23 | |
@@ -50,11 +58,20 @@ def _text(el, sep: str = " ") -> str: | ||
| 50 | 58 | return el.get_text(sep, strip=True, types=None) |
| 51 | 59 | |
| 52 | 60 | |
| 61 | +class _DetailBudget(Exception): | |
| 62 | + """Plafond de vraies requêtes de pages unité atteint pour cette synchro.""" | |
| 63 | + | |
| 64 | + | |
| 53 | 65 | class LogiscoConnector(BaseConnector): |
| 54 | 66 | source_id = "logisco" |
| 55 | 67 | request_delay = 0.6 |
| 56 | 68 | max_projects = 40 # garde-fou : nb max de pages projets crawlées |
| 57 | 69 | max_project_imgs = 15 # nb max de photos projet par annonce |
| 70 | + max_details = 150 # plafond de VRAIES requêtes de pages unité/sync | |
| 71 | + | |
| 72 | + def __init__(self) -> None: | |
| 73 | + super().__init__() | |
| 74 | + self._detail_fetches = 0 | |
| 58 | 75 | |
| 59 | 76 | # -- découverte des pages projets ---------------------------------------- |
| 60 | 77 | def _discover_projects(self) -> dict[str, tuple[str, str]]: |
@@ -187,7 +204,7 @@ class LogiscoConnector(BaseConnector): | ||
| 187 | 204 | full_title = (f"{project_name} — {title}" |
| 188 | 205 | if project_name and title else title or project_name) |
| 189 | 206 | |
| 190 | − listings[ext_id] = Listing( | |
| 207 | + lst = Listing( | |
| 191 | 208 | source=self.source_id, |
| 192 | 209 | external_id=str(ext_id), |
| 193 | 210 | url=url, |
@@ -203,7 +220,110 @@ class LogiscoConnector(BaseConnector): | ||
| 203 | 220 | amenities=amenities, |
| 204 | 221 | images=images, |
| 205 | 222 | ) |
| 223 | + | |
| 224 | + # page unité (avec cache BD) : adresse complète, superficie, | |
| 225 | + # étage, téléphone, plan, sections de commodités | |
| 226 | + # préfixe v2 = version de l'extraction (invalide le cache) | |
| 227 | + key = "v2:" + hashlib.sha1(" | ".join( | |
| 228 | + [title, address, price_label, availability] | |
| 229 | + + sizes + amenities).encode("utf-8")).hexdigest() | |
| 230 | + try: | |
| 231 | + payload = self.detail( | |
| 232 | + str(ext_id), key, lambda u=url: self._fetch_unit(u)) | |
| 233 | + except _DetailBudget: | |
| 234 | + payload = {} # plafond atteint : complété au prochain sync | |
| 235 | + except Exception: | |
| 236 | + payload = {} | |
| 237 | + self._apply_unit(lst, payload) | |
| 238 | + | |
| 239 | + listings[ext_id] = lst | |
| 206 | 240 | except Exception: |
| 207 | 241 | continue # ne jamais planter sur une carte malformée |
| 208 | 242 | |
| 209 | 243 | return list(listings.values()) |
| 244 | + | |
| 245 | + # -- page unité ------------------------------------------------------------ | |
| 246 | + def _fetch_unit(self, url: str) -> dict: | |
| 247 | + if self._detail_fetches >= self.max_details: | |
| 248 | + raise _DetailBudget(url) | |
| 249 | + self._detail_fetches += 1 | |
| 250 | + soup = BeautifulSoup(self.get(url).text, "html.parser") | |
| 251 | + out: dict = {} | |
| 252 | + | |
| 253 | + # JSON-LD « apartment » : adresse (no d'unité + code postal), étage, | |
| 254 | + # téléphone du bureau de location, plan de l'unité | |
| 255 | + for sc in soup.find_all("script", type="application/ld+json"): | |
| 256 | + try: | |
| 257 | + data = json.loads(sc.string or "") | |
| 258 | + except Exception: | |
| 259 | + continue | |
| 260 | + if not (isinstance(data, dict) | |
| 261 | + and str(data.get("@type", "")).lower() == "apartment"): | |
| 262 | + continue | |
| 263 | + addr = data.get("address") or {} | |
| 264 | + # certaines valeurs JSON-LD contiennent des entités HTML (') | |
| 265 | + street = htmllib.unescape((addr.get("streetAddress") or "")).strip() | |
| 266 | + if street: | |
| 267 | + bits = [street, | |
| 268 | + htmllib.unescape((addr.get("addressLocality") or "")).strip(), | |
| 269 | + (addr.get("postalCode") or "").strip()] | |
| 270 | + out["address"] = ", ".join(b for b in bits if b) | |
| 271 | + tel = re.sub(r"\D", "", str(data.get("telephone") or "")) | |
| 272 | + tel = tel[1:] if len(tel) == 11 and tel.startswith("1") else tel | |
| 273 | + if len(tel) == 10: | |
| 274 | + out["phone"] = f"{tel[:3]}-{tel[3:6]}-{tel[6:]}" | |
| 275 | + fl = str(data.get("floorLevel") or "").strip() | |
| 276 | + if fl.isdigit(): | |
| 277 | + out["floor"] = int(fl) | |
| 278 | + img = data.get("image") or "" | |
| 279 | + if isinstance(img, str) and img.startswith("http"): | |
| 280 | + out["plan"] = img | |
| 281 | + break | |
| 282 | + | |
| 283 | + # sommaire de l'unité : superficie, étage, disponibilité (structurés) | |
| 284 | + for info in soup.select(".unitHeader-info"): | |
| 285 | + label = _text(info.select_one(".unitHeader-infoLabel")).lower() | |
| 286 | + value = _text(info.select_one(".unitHeader-infoValue")) | |
| 287 | + if "superficie" in label: | |
| 288 | + m = re.search(r"([\d\s ]+)\s*pi", value) | |
| 289 | + if m: | |
| 290 | + try: | |
| 291 | + v = float(re.sub(r"[\s ]", "", m.group(1))) | |
| 292 | + if 80 <= v <= 20000: | |
| 293 | + out["area_sqft"] = v | |
| 294 | + except ValueError: | |
| 295 | + pass | |
| 296 | + elif "tage" in label and re.fullmatch(r"\d{1,2}", value): | |
| 297 | + out["floor"] = int(value) | |
| 298 | + elif "disponibilit" in label and value: | |
| 299 | + out["availability"] = value | |
| 300 | + | |
| 301 | + # sections : Inclusions / Particularités / Services offerts / | |
| 302 | + # Espaces communs (items texte, fidèles — « Rangement supplémentaire ($) ») | |
| 303 | + amen: list[str] = [] | |
| 304 | + for item in soup.select(".projectServices-listItem"): | |
| 305 | + t = _text(item) | |
| 306 | + if t: | |
| 307 | + amen.append(t) | |
| 308 | + out["amenities"] = list(dict.fromkeys(amen))[:40] | |
| 309 | + return out | |
| 310 | + | |
| 311 | + def _apply_unit(self, lst: Listing, payload: dict) -> None: | |
| 312 | + if not payload: | |
| 313 | + return | |
| 314 | + if payload.get("address"): | |
| 315 | + lst.address = payload["address"] | |
| 316 | + if payload.get("area_sqft"): | |
| 317 | + lst.area_sqft = payload["area_sqft"] | |
| 318 | + if payload.get("availability") and not lst.availability: | |
| 319 | + lst.availability = payload["availability"] | |
| 320 | + if payload.get("floor") is not None: | |
| 321 | + lst.details["floor"] = payload["floor"] | |
| 322 | + if payload.get("phone"): | |
| 323 | + lst.details.setdefault("contact", {})["phone"] = payload["phone"] | |
| 324 | + for a in payload.get("amenities", []): | |
| 325 | + if a not in lst.amenities: | |
| 326 | + lst.amenities.append(a) | |
| 327 | + plan = payload.get("plan") | |
| 328 | + if plan and plan not in lst.images: | |
| 329 | + lst.images.append(plan) | |
modified
louka/connectors/logisma.py
+116 −30
@@ -3,11 +3,15 @@ | ||
| 3 | 3 | # Auteur : Simon-Pierre Boucher — contact@spboucher.ai |
| 4 | 4 | # connectors/logisma.py : connecteur Logisma (logisma.ca) |
| 5 | 5 | # Page de recherche /appartements-a-louer/ (boucle Elementor) : une carte |
| 6 | −# par unité disponible. Pages détail pour disponibilité, inclusions et | |
| 7 | −# toutes les images. La section commerciale/industrielle est exclue. | |
| 6 | +# par unité disponible. Pages détail pour disponibilité, description, | |
| 7 | +# promotion, liste « Détails : » (inclusions/animaux/fumeur), téléphone | |
| 8 | +# (lien tel:) et toutes les images. L'API REST WP (/wp-json/wp/v2/location) | |
| 9 | +# existe mais n'expose ni contenu ni ACF -> HTML seulement. | |
| 10 | +# La section commerciale/industrielle est exclue. | |
| 8 | 11 | # ----------------------------------------------------------------------------- |
| 9 | 12 | from __future__ import annotations |
| 10 | 13 | |
| 14 | +import hashlib | |
| 11 | 15 | import re |
| 12 | 16 | |
| 13 | 17 | from bs4 import BeautifulSoup |
@@ -25,10 +29,18 @@ IMG_RE = re.compile( | ||
| 25 | 29 | IMG_NOISE_RE = re.compile(r"logo|favicon|icon|-\d+x\d+\.", re.I) |
| 26 | 30 | |
| 27 | 31 | |
| 32 | +class _DetailBudget(Exception): | |
| 33 | + """Plafond de vraies requêtes de pages détail atteint pour cette synchro.""" | |
| 34 | + | |
| 35 | + | |
| 28 | 36 | class LogismaConnector(BaseConnector): |
| 29 | 37 | source_id = "logisma" |
| 30 | 38 | request_delay = 0.6 |
| 31 | − max_details = 60 # garde-fou | |
| 39 | + max_details = 60 # plafond de VRAIES requêtes détail par synchro | |
| 40 | + | |
| 41 | + def __init__(self) -> None: | |
| 42 | + super().__init__() | |
| 43 | + self._detail_fetches = 0 | |
| 32 | 44 | |
| 33 | 45 | def fetch(self) -> list[Listing]: |
| 34 | 46 | html = self.get(LIST_URL).text |
@@ -45,13 +57,19 @@ class LogismaConnector(BaseConnector): | ||
| 45 | 57 | if lst and lst.external_id not in listings: |
| 46 | 58 | listings[lst.external_id] = lst |
| 47 | 59 | |
| 48 | − for i, lst in enumerate(listings.values()): | |
| 49 | − if i >= self.max_details: | |
| 50 | − break | |
| 60 | + # Pages détail (avec cache BD) : clé = contenu de la carte, versionnée | |
| 61 | + for lst in listings.values(): | |
| 62 | + key = "v3:" + hashlib.sha1(" | ".join( | |
| 63 | + [lst.title, lst.price_label, lst.sector, lst.address]) | |
| 64 | + .encode("utf-8")).hexdigest() | |
| 51 | 65 | try: |
| 52 | − self._enrich(lst) | |
| 66 | + payload = self.detail(lst.external_id, key, | |
| 67 | + lambda u=lst.url: self._fetch_detail(u)) | |
| 68 | + except _DetailBudget: | |
| 69 | + continue | |
| 53 | 70 | except Exception: |
| 54 | 71 | continue |
| 72 | + self._apply_detail(lst, payload) | |
| 55 | 73 | |
| 56 | 74 | return list(listings.values()) |
| 57 | 75 | |
@@ -109,10 +127,18 @@ class LogismaConnector(BaseConnector): | ||
| 109 | 127 | price_label=price_label, |
| 110 | 128 | ) |
| 111 | 129 | |
| 112 | − def _enrich(self, lst: Listing) -> None: | |
| 113 | − html = self.get(lst.url).text | |
| 130 | + def _fetch_detail(self, url: str) -> dict: | |
| 131 | + if self._detail_fetches >= self.max_details: | |
| 132 | + raise _DetailBudget(url) | |
| 133 | + self._detail_fetches += 1 | |
| 134 | + resp = self.get(url) | |
| 135 | + # lien mort : le site redirige vers la page liste -> garder la carte | |
| 136 | + if resp.url.rstrip("/") != url.rstrip("/"): | |
| 137 | + return {} | |
| 138 | + html = resp.text | |
| 114 | 139 | soup = BeautifulSoup(html, "html.parser") |
| 115 | 140 | body = soup.get_text(" ", strip=True) |
| 141 | + out: dict = {} | |
| 116 | 142 | |
| 117 | 143 | # Disponibilité : « Disponible le 1er juillet 2026 » |
| 118 | 144 | m = re.search(r"[Dd]isponible\b(?!s)\s*(?:le|dès|en|maintenant|" |
@@ -121,25 +147,85 @@ class LogismaConnector(BaseConnector): | ||
| 121 | 147 | avail = re.sub(r"\s+", " ", m.group(0)).strip() |
| 122 | 148 | avail = re.split(r"\s+(?:UN MOIS|Description|Électro|Offre|Vous)", |
| 123 | 149 | avail)[0] |
| 124 | − lst.availability = avail.strip() | |
| 150 | + out["availability"] = avail.strip() | |
| 151 | + | |
| 152 | + # Prix de secours si absent de la carte (appliqué seulement si besoin) | |
| 153 | + mp = re.search(r"(\d[\d\s ]*\$)\s*par mois", body) | |
| 154 | + if mp: | |
| 155 | + out["price_label"] = mp.group(1).strip() | |
| 156 | + | |
| 157 | + # Liste « Détails : » (items <li> du widget Elementor — certaines pages | |
| 158 | + # n'utilisent pas de puces « • » : extraction structurelle d'abord) | |
| 159 | + amen: list[str] = [] | |
| 160 | + m = None | |
| 161 | + mi = re.search(r"D[ée]tails\s*:?\s*</strong>", html) | |
| 162 | + if mi: | |
| 163 | + # le <ul> doit suivre de près (sinon : page à puces « • » sans <ul>, | |
| 164 | + # et le premier </ul> venu serait le menu du pied de page) | |
| 165 | + m = re.match(r".{0,1000}?<ul>(.*?)</ul>", | |
| 166 | + html[mi.end():mi.end() + 6000], re.S) | |
| 167 | + if m: | |
| 168 | + for li in re.findall(r"<li[^>]*>(.*?)</li>", m.group(1), re.S): | |
| 169 | + t = re.sub(r"\s+", " ", | |
| 170 | + BeautifulSoup(li, "html.parser") | |
| 171 | + .get_text(" ", strip=True)).strip(" .•") | |
| 172 | + if t: | |
| 173 | + amen.append(t) | |
| 174 | + if not amen: # repli : puces « • Eau chaude inclus » dans le texte | |
| 175 | + amen = [re.sub(r"\s+", " ", a).strip(" .") | |
| 176 | + for a in re.findall(r"•\s*([^•<\n]{3,60})", body)] | |
| 177 | + # couper l'avertissement photos collé au dernier item | |
| 178 | + amen = [re.split(r"\*\*|Les photos", a)[0].strip(" .") | |
| 179 | + for a in amen] | |
| 180 | + out["amenities"] = list(dict.fromkeys(a for a in amen if len(a) >= 3))[:20] | |
| 181 | + | |
| 182 | + # Description : paragraphes entre « Description » et « Détails : » | |
| 183 | + # (plus promotion « UN MOIS GRATUIT … » affichée sous le prix) | |
| 184 | + desc_bits: list[str] = [] | |
| 185 | + mp = re.search(r"(UN MOIS GRATUIT[^.]*\.(?:\s*Prix régulier[^.]*\.)?)", | |
| 186 | + body) | |
| 187 | + if mp: | |
| 188 | + desc_bits.append("Promotion : " + re.sub(r"\s+", " ", mp.group(1))) | |
| 189 | + m = re.search(r"<strong>\s*Description\s*</strong>\s*</p>(.*?)" | |
| 190 | + r"(?:<strong>\s*D[ée]tails|</div>\s*</div>\s*</div>)", | |
| 191 | + html, re.S) | |
| 192 | + if m: | |
| 193 | + txt = re.sub(r"\s+", " ", BeautifulSoup(m.group(1), "html.parser") | |
| 194 | + .get_text(" ", strip=True)) | |
| 195 | + if txt: | |
| 196 | + desc_bits.append(txt) | |
| 197 | + if not desc_bits: | |
| 198 | + og = soup.find("meta", attrs={"property": "og:description"}) or \ | |
| 199 | + soup.find("meta", attrs={"name": "description"}) | |
| 200 | + if og and og.get("content"): | |
| 201 | + desc_bits.append(og["content"].strip()) | |
| 202 | + out["description"] = " — ".join(desc_bits)[:600] | |
| 203 | + | |
| 204 | + # Téléphone du bureau de location (lien tel:) | |
| 205 | + for a in soup.select('a[href^="tel:"]'): | |
| 206 | + num = re.sub(r"\D", "", a.get("href", "").split(",")[0]) | |
| 207 | + num = num[1:] if len(num) == 11 and num.startswith("1") else num | |
| 208 | + if len(num) == 10: | |
| 209 | + out["phone"] = f"{num[:3]}-{num[3:6]}-{num[6:10]}" | |
| 210 | + break | |
| 125 | 211 | |
| 126 | − # Prix de secours si absent de la carte | |
| 127 | − if lst.price is None: | |
| 128 | − mp = re.search(r"(\d[\d\s ]*\$)\s*par mois", body) | |
| 129 | − if mp: | |
| 130 | − lst.price_label = mp.group(1).strip() | |
| 131 | − lst.price = parse_price(lst.price_label) | |
| 132 | − | |
| 133 | − # Inclusions « • Eau chaude inclus » | |
| 134 | − amen = [re.sub(r"\s+", " ", a).strip(" .") | |
| 135 | − for a in re.findall(r"•\s*([^•<\n]{3,60})", body)] | |
| 136 | − if amen: | |
| 137 | − lst.amenities = list(dict.fromkeys(amen))[:20] | |
| 138 | − | |
| 139 | − og = soup.find("meta", attrs={"property": "og:description"}) or \ | |
| 140 | − soup.find("meta", attrs={"name": "description"}) | |
| 141 | − if og and og.get("content"): | |
| 142 | − lst.description = og["content"].strip()[:600] | |
| 143 | − | |
| 144 | − lst.images = [u for u in dict.fromkeys(IMG_RE.findall(html)) | |
| 145 | − if not IMG_NOISE_RE.search(u)][:25] | |
| 212 | + out["images"] = [u for u in dict.fromkeys(IMG_RE.findall(html)) | |
| 213 | + if not IMG_NOISE_RE.search(u)][:25] | |
| 214 | + return out | |
| 215 | + | |
| 216 | + def _apply_detail(self, lst: Listing, payload: dict) -> None: | |
| 217 | + if not payload: | |
| 218 | + return | |
| 219 | + if payload.get("availability"): | |
| 220 | + lst.availability = payload["availability"] | |
| 221 | + if lst.price is None and payload.get("price_label"): | |
| 222 | + lst.price_label = payload["price_label"] | |
| 223 | + lst.price = parse_price(lst.price_label) | |
| 224 | + if payload.get("amenities"): | |
| 225 | + lst.amenities = payload["amenities"] | |
| 226 | + if payload.get("description"): | |
| 227 | + lst.description = payload["description"] | |
| 228 | + if payload.get("phone"): | |
| 229 | + lst.details.setdefault("contact", {})["phone"] = payload["phone"] | |
| 230 | + if payload.get("images"): | |
| 231 | + lst.images = payload["images"] | |
modified
louka/connectors/lokalia.py
+117 −31
@@ -6,8 +6,14 @@ | ||
| 6 | 6 | # Laval, Longueuil/Rive-Sud, Montérégie, Rive-Nord proche...) |
| 7 | 7 | # -> on interroge l'endpoint AJAX WordPress `get_immeubles_map_data` |
| 8 | 8 | # région par région (slugs découverts dans le filtre du site), ce qui donne |
| 9 | −# la ville par défaut de chaque immeuble. | |
| 10 | −# Une annonce par type d'unité offert dans chaque immeuble. | |
| 9 | +# la ville par défaut ET les lat/lng structurés de chaque immeuble. | |
| 10 | +# Page immeuble : adresse structurée (lien Google Maps sous le H1), | |
| 11 | +# accordéons Inclusions / Équipements & sécurité / Aires communes, | |
| 12 | +# description (paragraphes réels + promotion + « N unités • N étages »), | |
| 13 | +# téléphone du bureau de location, grille « Prix et types d'unités ». | |
| 14 | +# Une annonce par type d'unité offert dans chaque immeuble (les variantes | |
| 15 | +# « + DEN » ou avec parenthèse gardent leur propre annonce). | |
| 16 | +# Ni disponibilité ni superficie ne sont publiées par la source. | |
| 11 | 17 | # ----------------------------------------------------------------------------- |
| 12 | 18 | from __future__ import annotations |
| 13 | 19 | |
@@ -52,23 +58,29 @@ REGIONS = { | ||
| 52 | 58 | "saint-jerome": "Saint-Jérôme", |
| 53 | 59 | } |
| 54 | 60 | |
| 61 | +# repli si le lien Google Maps sous le H1 est absent | |
| 55 | 62 | ADDR_RE = re.compile( |
| 56 | − r"(?<![\d\)])\b\d{1,5}\s+(?:rue|route|boulevard|bd\.?|avenue|av\.|chemin|" | |
| 57 | − r"place|mont[ée]e|all[ée]e)\s[^,<>]{2,50},\s*[^,<>]{2,40},\s*" | |
| 63 | + r"(?<![\d\)])\b\d{1,5}\s+(?:rue|route|rte|boulevard|bd\.?|avenue|av\.|" | |
| 64 | + r"chemin|place|mont[ée]e|all[ée]e)\s[^,<>]{1,50},\s*[^,<>]{2,40},\s*" | |
| 58 | 65 | r"(?:QC|Qu[ée]bec)[^,<>]{0,12}(?:,\s*Canada)?", re.I) |
| 59 | 66 | IMG_RE = re.compile(r"https://www\.espaceslokalia\.ca/wp-content/uploads/" |
| 60 | 67 | r'[^"\s\\)]+\.(?:jpe?g|webp)', re.I) |
| 61 | 68 | |
| 62 | 69 | |
| 70 | +def _slugify(s: str) -> str: | |
| 71 | + return re.sub(r"-+", "-", re.sub(r"[^a-z0-9]+", "-", | |
| 72 | + s.lower().replace("½", ".5"))).strip("-") | |
| 73 | + | |
| 74 | + | |
| 63 | 75 | class LokaliaConnector(BaseConnector): |
| 64 | 76 | source_id = "lokalia" |
| 65 | 77 | request_delay = 0.6 |
| 66 | 78 | max_buildings = 60 # garde-fou de crawl (toutes régions) |
| 67 | 79 | |
| 68 | − def _buildings(self) -> list[tuple[str, str]]: | |
| 80 | + def _buildings(self) -> list[tuple[str, str, float | None, float | None]]: | |
| 69 | 81 | """Endpoint AJAX interrogé région par région |
| 70 | − -> [(url immeuble, ville par défaut), ...] dédupliqués.""" | |
| 71 | − out: list[tuple[str, str]] = [] | |
| 82 | + -> [(url immeuble, ville par défaut, lat, lng), ...] dédupliqués.""" | |
| 83 | + out: list[tuple[str, str, float | None, float | None]] = [] | |
| 72 | 84 | seen: set[str] = set() |
| 73 | 85 | for region, city in REGIONS.items(): |
| 74 | 86 | try: |
@@ -88,26 +100,36 @@ class LokaliaConnector(BaseConnector): | ||
| 88 | 100 | (item.get("popup_content") or "") |
| 89 | 101 | m = re.search(r'href="(https://www\.espaceslokalia\.ca/' |
| 90 | 102 | r'immeuble/[^"]+)"', content) |
| 91 | − if m and m.group(1) not in seen: | |
| 92 | − seen.add(m.group(1)) | |
| 93 | − out.append((m.group(1), city)) | |
| 103 | + if not m or m.group(1) in seen: | |
| 104 | + continue | |
| 105 | + seen.add(m.group(1)) | |
| 106 | + # lat/lng structurés fournis par la carte | |
| 107 | + lat = lng = None | |
| 108 | + try: | |
| 109 | + lat = float(item.get("lat")) | |
| 110 | + lng = float(item.get("lng")) | |
| 111 | + except (TypeError, ValueError): | |
| 112 | + lat = lng = None | |
| 113 | + out.append((m.group(1), city, lat, lng)) | |
| 94 | 114 | return out |
| 95 | 115 | |
| 96 | 116 | def fetch(self) -> list[Listing]: |
| 97 | 117 | listings: list[Listing] = [] |
| 98 | − for url, default_city in self._buildings()[: self.max_buildings]: | |
| 118 | + for url, default_city, lat, lng in self._buildings()[: self.max_buildings]: | |
| 99 | 119 | try: |
| 100 | 120 | html = self.get(url).text |
| 101 | 121 | except Exception: |
| 102 | 122 | continue |
| 103 | 123 | try: |
| 104 | − listings.extend(self._parse_building(url, html, default_city)) | |
| 124 | + listings.extend( | |
| 125 | + self._parse_building(url, html, default_city, lat, lng)) | |
| 105 | 126 | except Exception: |
| 106 | 127 | continue |
| 107 | 128 | return listings |
| 108 | 129 | |
| 109 | − def _parse_building(self, url: str, html: str, | |
| 110 | − default_city: str = "Québec") -> list[Listing]: | |
| 130 | + def _parse_building(self, url: str, html: str, default_city: str = "Québec", | |
| 131 | + lat: float | None = None, | |
| 132 | + lng: float | None = None) -> list[Listing]: | |
| 111 | 133 | soup = BeautifulSoup(html, "html.parser") |
| 112 | 134 | slug = url.rstrip("/").split("/")[-1] |
| 113 | 135 | h1 = soup.find("h1") |
@@ -115,44 +137,102 @@ class LokaliaConnector(BaseConnector): | ||
| 115 | 137 | # « Appartements à louer à Lévis - Vivaxcès Le Nicolas » -> nom court |
| 116 | 138 | name = title.split(" - ")[-1].split("│")[-1].strip() or slug |
| 117 | 139 | |
| 118 | − text = re.sub(r"\s+", " ", soup.get_text(" ", strip=True)) | |
| 119 | − m = ADDR_RE.search(text) | |
| 120 | − address = m.group(0).strip() if m else "" | |
| 140 | + # Adresse structurée : lien Google Maps sous le H1 | |
| 141 | + address = "" | |
| 142 | + wrap = soup.select_one(".category-wrapper a.description[href*='maps.google']") | |
| 143 | + if wrap: | |
| 144 | + address = re.sub(r"\s+", " ", wrap.get_text(" ", strip=True)).strip() | |
| 145 | + if not address: | |
| 146 | + text = re.sub(r"\s+", " ", soup.get_text(" ", strip=True)) | |
| 147 | + m = ADDR_RE.search(text) | |
| 148 | + address = m.group(0).strip() if m else "" | |
| 149 | + # étiquettes de la fiche (« Nouveau », « Promotion ») | |
| 150 | + tags = [t.get_text(strip=True) | |
| 151 | + for t in soup.select(".category-wrapper span.category")] | |
| 152 | + | |
| 153 | + # secteur / ville : « 89 Rue du Doré-Jaune, Lachenaie, Terrebonne, QC » | |
| 121 | 154 | sector = "" |
| 155 | + city = default_city | |
| 122 | 156 | if address: |
| 123 | 157 | parts = [p.strip() for p in address.split(",")] |
| 124 | 158 | if len(parts) >= 2: |
| 125 | 159 | sector = parts[1] |
| 126 | − city = infer_city(sector, default=default_city) | |
| 160 | + city = infer_city(sector, default=city) | |
| 127 | 161 | if not sector and "Lévis" in title: |
| 128 | 162 | city = "Lévis" |
| 129 | 163 | if sector and sector.lower() == city.lower(): |
| 130 | 164 | sector = "" # éviter secteur == ville (redondant) |
| 131 | 165 | |
| 132 | − og = soup.find("meta", attrs={"property": "og:description"}) | |
| 133 | − desc = og["content"].strip()[:600] if og and og.get("content") else "" | |
| 166 | + # Description : paragraphes réels de la fiche + « N unités • N étages » | |
| 167 | + # + promotion, sinon og:description en repli | |
| 168 | + desc_bits: list[str] = [] | |
| 169 | + promo = soup.select_one(".promotion-main h2") | |
| 170 | + if promo: | |
| 171 | + desc_bits.append("Promotion : " | |
| 172 | + + promo.get_text(" ", strip=True)) | |
| 173 | + elif "Promotion" in tags: | |
| 174 | + desc_bits.append("Promotion en cours") | |
| 175 | + paras = [p.get_text(" ", strip=True) | |
| 176 | + for p in soup.select(".wx-single-description .description-left p") | |
| 177 | + if "wx-disclaimer" not in (p.get("class") or [])] | |
| 178 | + if paras: | |
| 179 | + desc_bits.append(" ".join(t for t in paras if t)) | |
| 180 | + size = soup.select_one(".wx-single-description .category-wrap span") | |
| 181 | + if size: | |
| 182 | + desc_bits.append(re.sub(r"\s+", " ", size.get_text(" ", strip=True))) | |
| 183 | + if not desc_bits: | |
| 184 | + og = soup.find("meta", attrs={"property": "og:description"}) | |
| 185 | + if og and og.get("content"): | |
| 186 | + desc_bits.append(og["content"].strip()) | |
| 187 | + desc = " — ".join(b for b in desc_bits if b)[:700] | |
| 134 | 188 | |
| 135 | − # Commodités : inclusions + équipements (icônes avec attribut title) | |
| 136 | − amenities = list(dict.fromkeys( | |
| 137 | − el.get("title").strip() for el in soup.select("div.icon-box[title]") | |
| 138 | − if el.get("title")))[:20] | |
| 189 | + # Commodités : inclusions (icônes avec attribut title) + accordéons | |
| 190 | + # « Équipements & sécurité » et « Aires communes » (items <li>) | |
| 191 | + amenities = [el.get("title").strip() | |
| 192 | + for el in soup.select("div.icon-box[title]") | |
| 193 | + if el.get("title")] | |
| 194 | + for acc_cls in ("equipment", "aires"): | |
| 195 | + for li in soup.select(f"li.wx-single-accordion.{acc_cls} ul li"): | |
| 196 | + t = re.sub(r"\s+", " ", li.get_text(" ", strip=True)) | |
| 197 | + if t: | |
| 198 | + amenities.append(t) | |
| 199 | + amenities = list(dict.fromkeys(a for a in amenities if a))[:30] | |
| 200 | + | |
| 201 | + # Téléphone du bureau de location (lien tel:) | |
| 202 | + details: dict = {} | |
| 203 | + tel = soup.select_one('a[href^="tel:"]') | |
| 204 | + if tel: | |
| 205 | + num = re.sub(r"\D", "", tel.get("href", "")) | |
| 206 | + num = num[1:] if len(num) == 11 and num.startswith("1") else num | |
| 207 | + if len(num) == 10: | |
| 208 | + details["contact"] = {"phone": f"{num[:3]}-{num[3:6]}-{num[6:10]}"} | |
| 139 | 209 | |
| 140 | 210 | # Photos (exclure icônes .png des inclusions) |
| 141 | 211 | images = [u for u in dict.fromkeys(IMG_RE.findall(html)) |
| 142 | 212 | if not re.search(r"logo|icon|favicon|-150x150", u, re.I)][:25] |
| 143 | 213 | |
| 144 | − # Types d'unités + prix : blocs .square-box (h5 = type, p = prix) | |
| 214 | + # Types d'unités + prix : blocs .square-box (h5 = type, p = prix). | |
| 215 | + # Dédupliqués par libellé BRUT : « 4 1/2 » et « 4 1/2 + DEN » restent | |
| 216 | + # deux annonces (l'id de la 1re occurrence d'un type normalisé garde | |
| 217 | + # son schéma historique ; les variantes reçoivent un suffixe du libellé). | |
| 145 | 218 | results: list[Listing] = [] |
| 146 | − seen: set[str] = set() | |
| 219 | + seen_raw: set[str] = set() | |
| 220 | + seen_norm: set[str] = set() | |
| 147 | 221 | for box in soup.select("div.square-box"): |
| 148 | 222 | h5 = box.find("h5") |
| 149 | 223 | if not h5: |
| 150 | 224 | continue |
| 151 | − unit_raw = h5.get_text(" ", strip=True) | |
| 225 | + unit_raw = re.sub(r"\s+", " ", h5.get_text(" ", strip=True)).strip() | |
| 152 | 226 | unit_type = normalize_unit_type(unit_raw) |
| 153 | − if not unit_type or unit_type in seen: | |
| 227 | + raw_key = _slugify(unit_raw) | |
| 228 | + if not unit_type or not raw_key or raw_key in seen_raw: | |
| 154 | 229 | continue |
| 155 | − seen.add(unit_type) | |
| 230 | + seen_raw.add(raw_key) | |
| 231 | + if unit_type not in seen_norm: | |
| 232 | + seen_norm.add(unit_type) | |
| 233 | + ext_id = f"{slug}-{unit_type.replace('½', '.5')}" | |
| 234 | + else: # variante (« + DEN », parenthèse…) | |
| 235 | + ext_id = f"{slug}-{raw_key}" | |
| 156 | 236 | price_label = re.sub(r"\s+", " ", |
| 157 | 237 | box.get_text(" ", strip=True) |
| 158 | 238 | .replace(unit_raw, "", 1)).strip() |
@@ -162,9 +242,9 @@ class LokaliaConnector(BaseConnector): | ||
| 162 | 242 | if pm else price_label[:60]) |
| 163 | 243 | results.append(Listing( |
| 164 | 244 | source=self.source_id, |
| 165 | − external_id=f"{slug}-{unit_type.replace('½', '.5')}", | |
| 245 | + external_id=ext_id, | |
| 166 | 246 | url=url, |
| 167 | − title=f"{name} — {unit_type}", | |
| 247 | + title=f"{name} — {unit_raw}", | |
| 168 | 248 | address=address, |
| 169 | 249 | sector=sector, |
| 170 | 250 | city=city, |
@@ -174,7 +254,10 @@ class LokaliaConnector(BaseConnector): | ||
| 174 | 254 | availability="", |
| 175 | 255 | description=desc, |
| 176 | 256 | amenities=amenities, |
| 257 | + details=dict(details), | |
| 177 | 258 | images=images, |
| 259 | + lat=lat, | |
| 260 | + lng=lng, | |
| 178 | 261 | )) |
| 179 | 262 | |
| 180 | 263 | # Immeuble sans grille de prix : annonce par immeuble quand même |
@@ -189,6 +272,9 @@ class LokaliaConnector(BaseConnector): | ||
| 189 | 272 | city=city, |
| 190 | 273 | description=desc, |
| 191 | 274 | amenities=amenities, |
| 275 | + details=dict(details), | |
| 192 | 276 | images=images, |
| 277 | + lat=lat, | |
| 278 | + lng=lng, | |
| 193 | 279 | )) |
| 194 | 280 | return results |
modified
louka/connectors/lynk_olymbec.py
+198 −32
@@ -5,20 +5,32 @@ | ||
| 5 | 5 | # Lynk De la Savane — 303 unités au 5200, rue De la Savane, Montréal |
| 6 | 6 | # (secteur Namur / De la Savane, CDN-NDG). Site RentCafe derrière un |
| 7 | 7 | # challenge Cloudflare (403 pour les robots) : accès direct tenté avec |
| 8 | −# en-têtes réalistes, sinon repli sur Firecrawl (rendu JS). La page | |
| 9 | −# /lynk-dls/units publie les prix « à partir de » par type d'unité | |
| 10 | −# (Studio, 3½, 4½, 5½) — 1 annonce par type. Le projet Lynk Royale | |
| 11 | −# (Trois-Rivières) et Lynk Griffintown (« bientôt disponible ») sont exclus. | |
| 8 | +# en-têtes réalistes, sinon repli sur Firecrawl (rendu JS). | |
| 9 | +# Sources combinées (1 annonce par type d'unité — Studio, 3½, 4½, 5½) : | |
| 10 | +# - /lynk-dls/units : prix marketing « à partir de » par type, inclusions | |
| 11 | +# « dans mon unité » (icônes) et « aménagements et matériaux » (liste) ; | |
| 12 | +# - /lynk-dls/floorplans : données RentCafe STRUCTURÉES par plan | |
| 13 | +# (data-floorplan-size/sqft/price) -> superficie et fourchette de prix | |
| 14 | +# réelles ; pages de plan (avec cache self.detail) -> unités disponibles | |
| 15 | +# (« # 923 — Disponible maintenant ») ; | |
| 16 | +# - /lynk-dls : description du projet + « services et commodités » (icônes) | |
| 17 | +# + téléphone (lien tel:). | |
| 18 | +# Le projet Lynk Royale (Trois-Rivières) et Lynk Griffintown | |
| 19 | +# (« bientôt disponible ») sont exclus. | |
| 12 | 20 | # ----------------------------------------------------------------------------- |
| 13 | 21 | from __future__ import annotations |
| 14 | 22 | |
| 15 | 23 | import re |
| 24 | +from urllib.parse import urljoin | |
| 25 | + | |
| 26 | +from bs4 import BeautifulSoup | |
| 16 | 27 | |
| 17 | 28 | from ..schema import Listing |
| 18 | 29 | from .base import BaseConnector |
| 19 | 30 | |
| 20 | 31 | BASE = "https://www.lynk.ca" |
| 21 | 32 | UNITS_URL = f"{BASE}/lynk-dls/units" |
| 33 | +FLOORPLANS_URL = f"{BASE}/lynk-dls/floorplans" | |
| 22 | 34 | DLS_URL = f"{BASE}/lynk-dls" |
| 23 | 35 | |
| 24 | 36 | ADDRESS = "5200, rue De la Savane, Montréal, QC H4P 0E2" |
@@ -26,21 +38,15 @@ SECTOR = "Namur / De la Savane (CDN-NDG)" | ||
| 26 | 38 | |
| 27 | 39 | # « Studio à partir de 1 380 $ par mois », « 3 ½ à partir de 1 700 $ … » |
| 28 | 40 | TYPE_PRICE_RE = re.compile( |
| 29 | − r"(Studio|\d\s*½|\d\s*1/2)\s*à partir de\s*([\d\s ,]+)\s*\$", | |
| 41 | + r"(Studio|\d\s*½|\d\s*1/2)\s*à partir de\s*([\d\s ,]+)\s*\$", | |
| 30 | 42 | re.I) |
| 31 | 43 | |
| 32 | 44 | IMG_RE = re.compile( |
| 33 | 45 | r"https://resource\.rentcafe\.com/image/upload/[^\"'\s\\]+?\.(?:jpg|jpeg)", |
| 34 | 46 | re.I) |
| 35 | 47 | |
| 36 | −AMENITIES = [ | |
| 37 | − "Chauffage, électricité et eau chaude inclus", "Climatisation", | |
| 38 | − "Internet fibre haute vitesse", "6 électroménagers Whirlpool", | |
| 39 | − "Salle de fitness haut de gamme", "Piscine extérieure chauffée", | |
| 40 | − "Terrasse aménagée avec coin lounge", "Concierge sur place", | |
| 41 | − "Surveillance vidéo 24/7", "Détecteurs de fuite d'eau", | |
| 42 | − "Casiers intelligents pour colis", "Accès sans clé (app Lynk)", | |
| 43 | −] | |
| 48 | +# nombre de chambres (data-floorplan-size / nom du plan) -> type Lou-Ka | |
| 49 | +BEDROOMS_TO_TYPE = {0: "Studio", 1: "3½", 2: "4½", 3: "5½"} | |
| 44 | 50 | |
| 45 | 51 | BROWSER_HEADERS = { |
| 46 | 52 | "Accept": ("text/html,application/xhtml+xml,application/xml;q=0.9," |
@@ -54,15 +60,29 @@ BROWSER_HEADERS = { | ||
| 54 | 60 | |
| 55 | 61 | |
| 56 | 62 | def _strip_tags(html: str) -> str: |
| 57 | − txt = re.sub(r"<script.*?</script>|<style.*?</style>", " ", html, | |
| 58 | − flags=re.S | re.I) | |
| 63 | + txt = re.sub(r"<script.*?</script>|<style.*?</style>|<svg.*?</svg>", " ", | |
| 64 | + html, flags=re.S | re.I) | |
| 59 | 65 | txt = re.sub(r"<[^>]+>", " ", txt) |
| 60 | 66 | return re.sub(r"\s+", " ", txt) |
| 61 | 67 | |
| 62 | 68 | |
| 69 | +def _fmt_price(raw: str) -> str: | |
| 70 | + """« 1650 » -> « 1 650 $ » (affichage de la fourchette RentCafe).""" | |
| 71 | + try: | |
| 72 | + n = int(float(raw)) | |
| 73 | + except (TypeError, ValueError): | |
| 74 | + return "" | |
| 75 | + return f"{n:,}".replace(",", " ") + " $" | |
| 76 | + | |
| 77 | + | |
| 63 | 78 | class LynkOlymbecConnector(BaseConnector): |
| 64 | 79 | source_id = "lynk_olymbec" |
| 65 | 80 | request_delay = 0.8 |
| 81 | + max_details = 10 # plafond de VRAIES requêtes de pages plan par synchro | |
| 82 | + | |
| 83 | + def __init__(self) -> None: | |
| 84 | + super().__init__() | |
| 85 | + self._detail_fetches = 0 | |
| 66 | 86 | |
| 67 | 87 | def _get_page(self, url: str) -> str: |
| 68 | 88 | """Essaie l'accès direct (en-têtes navigateur), sinon Firecrawl.""" |
@@ -74,6 +94,42 @@ class LynkOlymbecConnector(BaseConnector): | ||
| 74 | 94 | pass |
| 75 | 95 | return self.get_rendered(url) # Cloudflare -> rendu Firecrawl |
| 76 | 96 | |
| 97 | + # -- sections d'icônes (ysi-icon-widget : libellé + sous-titre) ----------- | |
| 98 | + @staticmethod | |
| 99 | + def _icon_labels(html: str) -> list[str]: | |
| 100 | + out: list[str] = [] | |
| 101 | + soup = BeautifulSoup(html, "html.parser") | |
| 102 | + for w in soup.select(".ysi-icon-widget"): | |
| 103 | + lines = [t for t in w.stripped_strings] | |
| 104 | + if not lines: | |
| 105 | + continue | |
| 106 | + label = lines[0].strip() | |
| 107 | + caption = " ".join(lines[1:]).strip() | |
| 108 | + if caption and len(caption) <= 90: | |
| 109 | + out.append(f"{label} — {caption}") | |
| 110 | + elif label: | |
| 111 | + out.append(label) | |
| 112 | + return out | |
| 113 | + | |
| 114 | + # -- page d'un plan RentCafe : unités disponibles -------------------------- | |
| 115 | + def _fetch_plan(self, url: str) -> dict: | |
| 116 | + if self._detail_fetches >= self.max_details: | |
| 117 | + raise RuntimeError("plafond de requêtes de plans atteint") | |
| 118 | + self._detail_fetches += 1 | |
| 119 | + html = self._get_page(url) | |
| 120 | + text = _strip_tags(html) | |
| 121 | + units = [] | |
| 122 | + # « Appartement : # 923 Disponible maintenant Appelez pour connaître… » | |
| 123 | + for m in re.finditer(r"Appartement\s*:\s*#\s*(\d+)\s+(.*?)\s*" | |
| 124 | + r"(?:Appelez|Contactez|\d[\d\s]*\$)", text): | |
| 125 | + dispo = m.group(2).strip() | |
| 126 | + if len(dispo) > 60: | |
| 127 | + dispo = "" | |
| 128 | + units.append({"no": m.group(1), "dispo": dispo}) | |
| 129 | + images = [u for u in dict.fromkeys(IMG_RE.findall(html)) | |
| 130 | + if not re.search(r"logo|icon|chevron|download|lockup", u, re.I)] | |
| 131 | + return {"units": units, "images": images[:5]} | |
| 132 | + | |
| 77 | 133 | def fetch(self) -> list[Listing]: |
| 78 | 134 | listings: list[Listing] = [] |
| 79 | 135 | try: |
@@ -82,38 +138,146 @@ class LynkOlymbecConnector(BaseConnector): | ||
| 82 | 138 | return listings |
| 83 | 139 | if not units_html: |
| 84 | 140 | return listings |
| 85 | − text = _strip_tags(units_html) | |
| 141 | + units_text = _strip_tags(units_html) | |
| 142 | + units_soup = BeautifulSoup(units_html, "html.parser") | |
| 143 | + | |
| 144 | + # prix marketing « à partir de » par type (Studio, 3½, 4½, 5½) | |
| 145 | + marketing: dict[str, str] = {} | |
| 146 | + for m in TYPE_PRICE_RE.finditer(units_text): | |
| 147 | + raw_type, raw_price = m.group(1), m.group(2) | |
| 148 | + unit_type = ("Studio" if raw_type.lower().startswith("studio") | |
| 149 | + else re.sub(r"\s*(?:½|1/2)", "½", | |
| 150 | + raw_type.replace(" ", ""))) | |
| 151 | + num = re.sub(r"[^\d]", "", raw_price) | |
| 152 | + if num and unit_type not in marketing: | |
| 153 | + marketing[unit_type] = num | |
| 154 | + | |
| 155 | + # commodités de l'unité : icônes « dans mon unité » + liste | |
| 156 | + # « aménagements et matériaux exceptionnels » | |
| 157 | + unit_amen = self._icon_labels(units_html) | |
| 158 | + for li in units_soup.select("ul.pl-3 li"): | |
| 159 | + t = li.get_text(" ", strip=True) | |
| 160 | + if t: | |
| 161 | + unit_amen.append(t) | |
| 86 | 162 | |
| 87 | 163 | # Photos des unités/immeuble (jpg de la galerie RentCafe) |
| 88 | 164 | images = [u for u in dict.fromkeys(IMG_RE.findall(units_html)) |
| 89 | 165 | if not re.search(r"logo|icon|chevron|download|lockup", |
| 90 | 166 | u, re.I)][:25] |
| 91 | 167 | |
| 92 | − # Description : page de présentation du projet (facultative) | |
| 168 | + # page projet : description, services de l'immeuble, téléphone | |
| 93 | 169 | desc = ("Lynk De la Savane (Olymbec) — 303 unités locatives " |
| 94 | 170 | "intelligentes, studio à 5½, au 5200 De la Savane à Montréal.") |
| 171 | + building_amen: list[str] = [] | |
| 172 | + phone = "" | |
| 95 | 173 | try: |
| 96 | 174 | dls_html = self._get_page(DLS_URL) |
| 97 | 175 | m = re.search(r"<p[^>]*>([^<]{80,400})</p>", dls_html) |
| 98 | 176 | if m: |
| 99 | 177 | desc = re.sub(r"\s+", " ", m.group(1)).strip()[:600] |
| 178 | + building_amen = self._icon_labels(dls_html) | |
| 179 | + mt = re.search(r'href="tel:[^"]*?(\d{3})[\s.\-]?(\d{3})[\s.\-]?(\d{4})"', | |
| 180 | + dls_html) | |
| 181 | + if mt: | |
| 182 | + phone = "-".join(mt.groups()) | |
| 100 | 183 | except Exception: |
| 101 | 184 | pass |
| 102 | 185 | |
| 103 | − for m in TYPE_PRICE_RE.finditer(text): | |
| 104 | − raw_type, raw_price = m.group(1), m.group(2) | |
| 105 | − unit_type = ("Studio" if raw_type.lower().startswith("studio") | |
| 106 | − else re.sub(r"\s*(?:½|1/2)", "½", | |
| 107 | − raw_type.replace(" ", ""))) | |
| 108 | − num = re.sub(r"[^\d]", "", raw_price) | |
| 186 | + # plans RentCafe : superficie + fourchette de prix STRUCTURÉES | |
| 187 | + # (data-floorplan-*) et unités disponibles (pages plan, avec cache) | |
| 188 | + plans: dict[str, dict] = {} # type -> données agrégées | |
| 189 | + try: | |
| 190 | + fp_html = self._get_page(FLOORPLANS_URL) | |
| 191 | + seen_slugs: set[str] = set() | |
| 192 | + for a in BeautifulSoup(fp_html, "html.parser").select( | |
| 193 | + "a[data-floorplan-name]"): | |
| 194 | + # seules les ancres pointant vers une page de plan portent les | |
| 195 | + # attributs sqft/price ; chaque plan apparaît 2x (desktop+mobile) | |
| 196 | + href = urljoin(BASE, a.get("href", "")) | |
| 197 | + if "/floorplans/" not in href or "#" in href: | |
| 198 | + continue | |
| 199 | + slug = href.rstrip("/").rsplit("/", 1)[-1] | |
| 200 | + if slug in seen_slugs: | |
| 201 | + continue | |
| 202 | + seen_slugs.add(slug) | |
| 203 | + | |
| 204 | + name = a.get("data-floorplan-name", "") | |
| 205 | + mb = re.match(r"(\d)\s*Bedroom", name, re.I) | |
| 206 | + beds = (0 if name.strip().lower() == "studio" | |
| 207 | + else int(mb.group(1)) if mb else None) | |
| 208 | + unit_type = BEDROOMS_TO_TYPE.get(beds) if beds is not None else None | |
| 209 | + if not unit_type: | |
| 210 | + continue | |
| 211 | + agg = plans.setdefault(unit_type, { | |
| 212 | + "sqft": [], "price": [], "units": [], "images": []}) | |
| 213 | + # superficie « 657 -829 » et prix « 1650 -2293.2 » (attributs) | |
| 214 | + for v in re.findall(r"\d+(?:\.\d+)?", | |
| 215 | + a.get("data-floorplan-sqft", "") or ""): | |
| 216 | + agg["sqft"].append(float(v)) | |
| 217 | + for v in re.findall(r"\d+(?:\.\d+)?", | |
| 218 | + a.get("data-floorplan-price", "") or ""): | |
| 219 | + agg["price"].append(float(v)) | |
| 220 | + # page du plan -> unités disponibles (cache : clé = attributs) | |
| 221 | + key = "v1:" + "|".join([ | |
| 222 | + name, a.get("data-floorplan-sqft", "") or "", | |
| 223 | + a.get("data-floorplan-price", "") or ""]) | |
| 224 | + try: | |
| 225 | + payload = self.detail(f"fp-{slug}", key, | |
| 226 | + lambda u=href: self._fetch_plan(u)) | |
| 227 | + except Exception: | |
| 228 | + payload = {} | |
| 229 | + agg["units"] += payload.get("units", []) | |
| 230 | + agg["images"] += [u for u in payload.get("images", []) | |
| 231 | + if u not in agg["images"]] | |
| 232 | + except Exception: | |
| 233 | + pass | |
| 234 | + | |
| 235 | + # 1 annonce par type (ordre stable), union marketing + plans RentCafe | |
| 236 | + for unit_type in ("Studio", "3½", "4½", "5½"): | |
| 237 | + mk_num = marketing.get(unit_type) | |
| 238 | + plan = plans.get(unit_type) | |
| 239 | + if not mk_num and not plan: | |
| 240 | + continue | |
| 241 | + | |
| 109 | 242 | price = None |
| 110 | − if num: | |
| 111 | − val = float(num) | |
| 243 | + price_label = "" | |
| 244 | + if plan and plan["price"]: | |
| 245 | + lo, hi = min(plan["price"]), max(plan["price"]) | |
| 246 | + if 100 <= lo <= 20000: | |
| 247 | + price = lo | |
| 248 | + price_label = (f"de {_fmt_price(lo)} à {_fmt_price(hi)} par mois" | |
| 249 | + if hi > lo else f"{_fmt_price(lo)} par mois") | |
| 250 | + elif mk_num: | |
| 251 | + val = float(mk_num) | |
| 112 | 252 | if 100 <= val <= 20000: |
| 113 | 253 | price = val |
| 254 | + price_label = f"à partir de {mk_num} $ par mois" | |
| 255 | + | |
| 256 | + area = None | |
| 257 | + amenities = list(unit_amen) | |
| 258 | + if plan and plan["sqft"]: | |
| 259 | + lo_s, hi_s = min(plan["sqft"]), max(plan["sqft"]) | |
| 260 | + if 80 <= lo_s <= 20000: | |
| 261 | + area = lo_s | |
| 262 | + amenities.append( | |
| 263 | + f"Superficie : {int(lo_s)} à {int(hi_s)} pi²" | |
| 264 | + if hi_s > lo_s else f"Superficie : {int(lo_s)} pi²") | |
| 265 | + amenities += [a for a in building_amen if a not in amenities] | |
| 266 | + | |
| 267 | + availability = "" | |
| 268 | + desc_extra = "" | |
| 269 | + if plan and plan["units"]: | |
| 270 | + dispos = [u["dispo"] for u in plan["units"] if u["dispo"]] | |
| 271 | + availability = dispos[0] if dispos else "" | |
| 272 | + nos = ", ".join("#" + u["no"] for u in plan["units"][:12]) | |
| 273 | + desc_extra = (f" — {len(plan['units'])} unité(s) disponible(s)" | |
| 274 | + f" : {nos}") | |
| 275 | + | |
| 276 | + details: dict = {} | |
| 277 | + if phone: | |
| 278 | + details["contact"] = {"phone": phone} | |
| 279 | + | |
| 114 | 280 | ext = f"dls-{unit_type.replace('½', '.5').lower()}" |
| 115 | − if any(l.external_id == ext for l in listings): | |
| 116 | − continue | |
| 117 | 281 | listings.append(Listing( |
| 118 | 282 | source=self.source_id, |
| 119 | 283 | external_id=ext, |
@@ -124,10 +288,12 @@ class LynkOlymbecConnector(BaseConnector): | ||
| 124 | 288 | city="Montréal", |
| 125 | 289 | unit_type=unit_type, |
| 126 | 290 | price=price, |
| 127 | − price_label=f"à partir de {num} $ par mois" if num else "", | |
| 128 | − availability="Disponible", | |
| 129 | − description=desc, | |
| 130 | − amenities=AMENITIES, | |
| 131 | − images=images, | |
| 291 | + price_label=price_label, | |
| 292 | + availability=availability, | |
| 293 | + area_sqft=area, | |
| 294 | + description=(desc + desc_extra)[:700], | |
| 295 | + amenities=list(dict.fromkeys(amenities))[:40], | |
| 296 | + details=details, | |
| 297 | + images=(plan["images"] if plan else []) + images, | |
| 132 | 298 | )) |
| 133 | 299 | return listings |
modified
louka/normalize.py
+11 −7
@@ -51,7 +51,8 @@ def clean_address(raw: str) -> str: | ||
| 51 | 51 | # --------------------------------------------------------------------------- |
| 52 | 52 | |
| 53 | 53 | _PRICE_FROM_RE = re.compile( |
| 54 | − r"a partir|des\s+\d|starting|\bfrom\b|\bdes\b\s*$|\+\s*$", re.I) | |
| 54 | + r"a partir|des\s+\d|starting|\bfrom\b|\bdes\b\s*$|\+\s*$" | |
| 55 | + r"|de\s+\d[\d\s]*\s*\$?\s*a\s+\d", re.I) # fourchette « de X $ à Y $ » | |
| 55 | 56 | |
| 56 | 57 | |
| 57 | 58 | def parse_price(raw: str) -> float | None: |
@@ -297,10 +298,10 @@ def parse_area_sqft(raw: str) -> float | None: | ||
| 297 | 298 | _AMENITY_RULES: dict[str, tuple[str, str | None]] = { |
| 298 | 299 | # inclusions |
| 299 | 300 | "heating": (r"chauffage|chauffe[e]? |chauffe[e]?$|heating|heat included|\bheat\b", |
| 300 | − r"chauffage non inclus|sans chauffage|non chauffe|pas chauffe|heat pump" | |
| 301 | + r"chauffage non inclus|sans chauffage|non[- ]chauffe|pas chauffe|heat pump" | |
| 301 | 302 | r"|chauffage[^|.]{0,60}charge d(?:u|es) locataires?"), |
| 302 | 303 | "electricity": (r"electricite|hydro inclus|electricity|eclaire\b|\bhydro\b", |
| 303 | − r"electricite non incluse?|non eclaire" | |
| 304 | + r"electricite non incluse?|non[- ]eclaire" | |
| 304 | 305 | r"|electricite[^|.]{0,60}charge d(?:u|es) locataires?"), |
| 305 | 306 | "hot_water": (r"eau chaude|hot water", |
| 306 | 307 | r"eau chaude non incluse?|eau chaude[^|.]{0,60}charge d(?:u|es) locataires?"), |
@@ -311,8 +312,9 @@ _AMENITY_RULES: dict[str, tuple[str, str | None]] = { | ||
| 311 | 312 | "stove": (r"cuisiniere|\bstove\b|\bfour\b|plaques? de cuisson", None), |
| 312 | 313 | "dishwasher": (r"lave[- ]vaisselle|dishwasher", r"entrees? (?:pour |de )?lave[- ]vaisselle|dishwasher hookup"), |
| 313 | 314 | "dishwasher_hookup": (r"entrees? (?:pour |de )?lave[- ]vaisselle|dishwasher hookups?", None), |
| 314 | − "washer_dryer": (r"laveuse[- /]secheuse|laveuse et secheuse|\bwasher\b|\bdryer\b", r"entrees? (?:de )?laveuse|entrees? laveuse[- /]secheuse|washer.{0,10}hookup"), | |
| 315 | − "washer_dryer_hookup": (r"entrees? (?:de )?laveuse|entrees? laveuse[- /]secheuse|sorties? laveuse|washer.{0,10}hookups?", None), | |
| 315 | + "washer_dryer": (r"laveuse[- /]secheuse|laveuse et secheuse|\bwasher\b|\bdryer\b", | |
| 316 | + r"entrees?[^|.]{0,35}laveuse|washer.{0,10}hookup"), | |
| 317 | + "washer_dryer_hookup": (r"entrees?[^|.]{0,35}laveuse|sorties? laveuse|washer.{0,10}hookups?", None), | |
| 316 | 318 | "ac": (r"climatis|air climatise|\ba/?c\b|air conditioning|central air|cooling\s*:|thermopompe", None), |
| 317 | 319 | # immeuble |
| 318 | 320 | "elevator": (r"ascen[cs]eur|elevator", None), |
@@ -347,7 +349,8 @@ _PETS_COND_RE = re.compile( | ||
| 347 | 349 | r"|chiens?[^|.]{0,30}(?:pas|non|ne sont pas) (?:permis|admis|acceptes)" |
| 348 | 350 | r"|chiens? interdits?|no dogs?\b" |
| 349 | 351 | r"|animau?x?[^|.]{0,30}\(?\d+\s*(?:lb|livres?|kg)" # limite de poids |
| 350 | − r"|animaux[^|.]{0,20}sur demande") | |
| 352 | + r"|animaux[^|.]{0,20}sur demande" | |
| 353 | + r"|animaux[^|.]{0,20}refuses?[^|.]{0,30}(?:sauf|a l.?exception)") | |
| 351 | 354 | _SMOKING_NO_RE = re.compile(r"non[- ]fumeurs?|sans fumee|smoke[- ]free|no smoking|interdiction de fumer") |
| 352 | 355 | _SMOKING_YES_RE = re.compile(r"fumeurs? (?:accepte|permis|autorise)") |
| 353 | 356 | |
@@ -378,8 +381,9 @@ _NEUTRAL_RE = re.compile( | ||
| 378 | 381 | # stationnement/rangement à VÉLO : pas un stationnement auto |
| 379 | 382 | r"|[^|.]*(?:stationnement|support|rangement|espace)s?[^|.]{0,12}(?:a |pour )?velos?[^|.]*" |
| 380 | 383 | r"|[^|.]*bike (?:parking|storage|racks?)[^|.]*" |
| 381 | − # commodités payantes suffixées « ($) » | |
| 384 | + # commodités payantes « ($) » ou restrictives « (sans utilisation) » | |
| 382 | 385 | r"|[^|.]*\(\s*\$\s*\)[^|.]*" |
| 386 | + r"|[^|.]*\(\s*sans [^)|.]{0,30}\)[^|.]*" | |
| 383 | 387 | # promotions : « Crédit de 1 000 $ Éclaire », « 1 mois gratuit » — un nom |
| 384 | 388 | # de promo ne décrit pas les inclusions du logement |
| 385 | 389 | r"|[^|.]*(?:credit de|rabais|promotion|mois gratuits?|offre speciale)[^|.]*" |
added
reports/connectors/logisbourg.md
+74 −0
@@ -0,0 +1,74 @@ | ||
| 1 | +# logisbourg — Logisbourg | |
| 2 | +- site: https://www.logisbourg.com/appartements-disponibles.asp | |
| 3 | +- méthode: html | |
| 4 | +- annonces: 10 → 10 | |
| 5 | +- couverture après (sur 10 annonces): prix 100%, adresse 100%, dispo 100%, superficie 100%, commodités 100% | |
| 6 | +- fixture: ok · test: ok | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Liste (tableau ASP) : grandeur, date de dispo (attribut TITLE), étage, prix, | |
| 10 | + inclusions (icônes ALT : chauffage, eau chaude, électricité, semi-meublé). | |
| 11 | +- Fiche appartement.asp (mise en cache via `self.detail`, clé = hash de la | |
| 12 | + ligne du tableau, plafond 80 vraies requêtes/sync) : | |
| 13 | + - adresse complète AVEC no d'unité (`nomComplexeAdresse` : « 4855, 6e Avenue | |
| 14 | + Ouest #403 ») — nouveau ; | |
| 15 | + - lat/lng structurés (`google.maps.LatLng(...)`) — nouveau ; | |
| 16 | + - superficie structurée (encadré `#superficie_encadre`) -> `area_sqft` | |
| 17 | + explicite (plus fiable que le 1er « NNN pi » de la page) — nouveau ; | |
| 18 | + - téléphone du bureau de location (lien `tel:` du formulaire de visite) -> | |
| 19 | + `details.contact.phone` — nouveau ; | |
| 20 | + - caractéristiques de l'appartement : ALT des icônes + texte visible | |
| 21 | + (« Balcon 60 pi² », « Entrées laveuse/sécheuse incluses », | |
| 22 | + « Un stationnement extérieur », « Revêtements : … ») ; | |
| 23 | + - caractéristiques de l'immeuble (items `<li>` : Bell Fibe, Intercom, | |
| 24 | + service d'urgence 24/7…) en commodités + texte en description ; | |
| 25 | + - description enrichie : paragraphe de présentation du complexe | |
| 26 | + (`#DescriptionComplexe`) + caractéristiques immeuble + services | |
| 27 | + optionnels (ex. « Stationnement extérieur au coût de 50$/mois » -> | |
| 28 | + parking.price dérivé par finalize) — avant, seule la section | |
| 29 | + « Caractéristiques immeuble » était captée ; | |
| 30 | + - images (galerie de l'immeuble), comme avant. | |
| 31 | + | |
| 32 | +## Champs indisponibles à la source | |
| 33 | +- Animaux (aucune mention sur le site) -> `pets = None`. | |
| 34 | +- Meublé : seul « semi-meublé » (poêle + réfrigérateur inclus) est exposé via | |
| 35 | + l'icône ALT « Poêle et réfrigérateur inclus » ; pas d'unité meublée. | |
| 36 | +- Pas d'API JSON ni de sitemap exploitable (site ASP old-school) ; pas de | |
| 37 | + superficie sur la page liste (fiche seulement). | |
| 38 | + | |
| 39 | +## Fragilités | |
| 40 | +- HTML ASP non structuré : parsing par regex sur les classes de cellules | |
| 41 | + (`Grandeur`, `DateDispo`, `Prix`…) — un changement de gabarit casserait le | |
| 42 | + connecteur (le test fixture le détecterait). | |
| 43 | +- Le serveur n'annonce pas de charset : l'UTF-8 est forcé (`_get_text`). | |
| 44 | +- Adresses en exposants (`6<SUP>e</SUP>`) recousues par `_fix_sup`. | |
| 45 | +- Clé de cache des fiches versionnée (`v3:`) : bump nécessaire si l'extraction | |
| 46 | + de la fiche change, sinon les anciens payloads restent servis. | |
| 47 | + | |
| 48 | +## Améliorations apportées | |
| 49 | +- Fiches désormais servies par `self.detail()` (cache BD) : ~1 requête/sync en | |
| 50 | + régime stable au lieu de 10 fetches systématiques ; plafond `max_details=80` | |
| 51 | + compté DANS `fetch_fn` (les hits de cache ne comptent pas). | |
| 52 | +- Nouveaux champs : lat/lng, `area_sqft` structuré, no d'unité dans l'adresse, | |
| 53 | + `details.contact.phone`, revêtements, items immeuble en commodités, | |
| 54 | + description 3 volets (complexe + immeuble + services optionnels). | |
| 55 | +- Conservation des ALT d'icônes (« Entrées laveuse/sécheuse incluses ») en plus | |
| 56 | + du texte visible : garde la détection `washer_dryer_hookup` de normalize. | |
| 57 | + | |
| 58 | +## Échantillon avant/après | |
| 59 | +- Avant : `4855, 6e Avenue Ouest — 4½ | 1215$ | dispo 2026-09-01 | 990 pi² | |
| 60 | + (dérivé du texte) | pas de lat/lng | pas de contact | desc = caractéristiques | |
| 61 | + immeuble seulement` | |
| 62 | +- Après : `4855, 6e Avenue Ouest #403 — 4½ | 1215$ | dispo 2026-09-01 | | |
| 63 | + 990 pi² (structuré) | lat 46.841064 / lng -71.264786 | contact 418-623-4006 | | |
| 64 | + details : hookup laveuse-sécheuse, balcon, rangement, stationnement ext., | |
| 65 | + étage 3 | desc = présentation du complexe + immeuble + services optionnels` | |
| 66 | + | |
| 67 | +## Lacune générique de normalisation (à traiter dans normalize.py, pas ici) | |
| 68 | +- « Entrée lave-vaisselle incluse » (le branchement, pas l'appareil) est classé | |
| 69 | + `appliances.dishwasher = true` par `_AMENITY_RULES` — il faudrait une règle | |
| 70 | + `dishwasher_hookup` analogue à `washer_dryer_hookup`. | |
| 71 | +- « Entrées lave-vaisselle et laveuse/sécheuse inclus » (formulation combinée) | |
| 72 | + n'est pas reconnu par le motif hookup `entrees? (?:de )?laveuse` — couvert ici | |
| 73 | + uniquement parce que l'ALT séparé « Entrées laveuse/sécheuse incluses » est | |
| 74 | + aussi émis. | |
added
reports/connectors/logisco.md
+65 −0
@@ -0,0 +1,65 @@ | ||
| 1 | +# logisco — Logisco | |
| 2 | +- site: https://logisco.com/fr/appartements-a-louer (+ pages projets et pages unités) | |
| 3 | +- méthode: html | |
| 4 | +- annonces: 163 → 161 (2 unités retirées par la source entre les syncs) | |
| 5 | +- couverture après (sur 161 annonces): prix 100%, adresse 100%, dispo 100%, superficie 100%, commodités 100% | |
| 6 | +- fixture: ok · test: ok | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Cartes projet (.unitCard, comme avant) : titre, adresse, secteur, type | |
| 10 | + d'unité, prix, dispo, services (sr-only), photo de l'unité + photos projet. | |
| 11 | +- NOUVEAU — page unité (mise en cache via `self.detail`, clé = hash du contenu | |
| 12 | + de la carte versionné `v2:`, plafond 150 vraies requêtes/sync) : | |
| 13 | + - JSON-LD `@type: apartment` : adresse complète STRUCTURÉE avec no d'unité | |
| 14 | + et code postal (« 310-931 Rue de l’École, Lévis, G6W 0T4 »), étage | |
| 15 | + (`floorLevel`), téléphone du bureau de location -> `details.contact.phone`, | |
| 16 | + plan de l'unité (image) ajouté aux photos ; | |
| 17 | + - sommaire `.unitHeader-info` : superficie structurée (« 1167 pi² ») -> | |
| 18 | + `area_sqft` explicite, étage -> `details.floor`, disponibilité (repli si la | |
| 19 | + carte n'en avait pas) ; | |
| 20 | + - 4 sections de commodités : Inclusions (dans le prix), Particularités de | |
| 21 | + l'unité, Services offerts (avec marqueurs « ($) » conservés), Espaces | |
| 22 | + communs — jusqu'à 40 items texte fidèles, dédupliqués avec ceux de la carte. | |
| 23 | + | |
| 24 | +## Champs indisponibles à la source | |
| 25 | +- Animaux : aucune mention sur les pages unités ni projets -> `pets = None`. | |
| 26 | +- Meublé : non exposé. | |
| 27 | +- lat/lng : la carte Google des pages unité passe par une URL de recherche | |
| 28 | + (pas de coordonnées dans le HTML). | |
| 29 | +- Chauffage/électricité/eau chaude : pas dans les listes d'inclusions type | |
| 30 | + (les inclusions listées sont p. ex. stationnement, climatisation). | |
| 31 | + | |
| 32 | +## Fragilités | |
| 33 | +- 161 unités > plafond de 150 requêtes : au premier sync (ou après un bump de | |
| 34 | + version de clé), les ~11 dernières unités restent sans enrichissement jusqu'au | |
| 35 | + sync suivant (le cache absorbe ensuite tout : régime stable ≈ 0-10 requêtes). | |
| 36 | +- Cartes d'unités imbriquées sous des <template> Vue : le helper `_text` | |
| 37 | + (types=None) reste indispensable. | |
| 38 | +- Certaines valeurs JSON-LD contiennent des entités HTML (') : désencodées. | |
| 39 | +- Clé de cache versionnée (`v2:`) : à bumper si l'extraction de la page unité | |
| 40 | + change. | |
| 41 | + | |
| 42 | +## Améliorations apportées | |
| 43 | +- Enrichissement par page unité via `self.detail()` (aucune visite avant) : | |
| 44 | + adresse complète avec no d'unité + code postal, `area_sqft` structuré, | |
| 45 | + `details.floor`, `details.contact.phone`, plan de l'unité, ~2x plus de | |
| 46 | + commodités (Inclusions/Particularités/Services/Espaces communs vs seulement | |
| 47 | + les icônes sr-only de la carte). | |
| 48 | +- Budget de requêtes réelles compté DANS `fetch_fn` (les hits de cache ne | |
| 49 | + comptent pas), exception `_DetailBudget` pour ne jamais mettre en cache un | |
| 50 | + payload vide « faute de budget ». | |
| 51 | + | |
| 52 | +## Échantillon avant/après | |
| 53 | +- Avant : `L'AMALGAM — Appartement 310 | 1860$ | 4½ | dispo now | 1167 pi² | |
| 54 | + (dérivé du texte de la carte) | adresse « 931 Rue de l’École, Lévis » | | |
| 55 | + details : ac, parking ext.` | |
| 56 | +- Après : `L'AMALGAM — Appartement 310 | 1860$ | 4½ | dispo now | 1167 pi² | |
| 57 | + (structuré) | adresse « 310-931 Rue de l’École, Lévis, G6W 0T4 » | details : | |
| 58 | + ac, ascenseur, balcon/terrasse, rangement, parking int.+ext., étage 3, | |
| 59 | + hookup laveuse-sécheuse, contact 418-564-4726 | 25+ commodités texte` | |
| 60 | + | |
| 61 | +## Lacune générique de normalisation (à traiter dans normalize.py, pas ici) | |
| 62 | +- « Entrée lave-vaisselle » (branchement) est classé `appliances.dishwasher = | |
| 63 | + true` — il faudrait un `dishwasher_hookup` analogue à `washer_dryer_hookup`. | |
| 64 | +- « Rangement supplémentaire ($) » (payant) donne `storage: true` sans nuance | |
| 65 | + « en option » ; idem « Stationnement intérieur ($) ». | |
added
reports/connectors/logisma.md
+68 −0
@@ -0,0 +1,68 @@ | ||
| 1 | +# logisma — Logisma Gestion Immobilière | |
| 2 | +- site: https://logisma.ca/appartements-a-louer/ | |
| 3 | +- méthode: html | |
| 4 | +- annonces: 18 → 18 | |
| 5 | +- couverture après (sur 18 annonces): prix 100%, adresse 100%, dispo 94%, superficie 0%, commodités 94% | |
| 6 | +- fixture: ok · test: ok | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Cartes de la page de recherche (comme avant) : type d'unité, ville/secteur | |
| 10 | + (filtre Québec/Lévis), adresse, prix. | |
| 11 | +- Pages détail — désormais via `self.detail()` (cache BD, clé = hash de la | |
| 12 | + carte versionné `v3:`, plafond 60 vraies requêtes/sync) : | |
| 13 | + - disponibilité (« Disponible le 1er août 2026 ») ; | |
| 14 | + - liste « Détails : » extraite STRUCTURELLEMENT (items `<li>` du widget | |
| 15 | + Elementor) avec repli sur les puces « • » — corrige 4 annonces qui | |
| 16 | + n'avaient AUCUNE commodité (pages sans puces) ; queue « **Les photos… » | |
| 17 | + coupée du dernier item ; | |
| 18 | + - description : paragraphes de la section « Description » (au lieu du | |
| 19 | + og:description fourre-tout) + promotion (« UN MOIS GRATUIT réparti sur | |
| 20 | + 11 mois. Prix régulier 967$/mois. ») préfixée « Promotion : » ; | |
| 21 | + - téléphone du bureau (lien `tel:`) -> `details.contact.phone` — nouveau ; | |
| 22 | + - images (uploads WP, bruit filtré), prix de secours si absent de la carte. | |
| 23 | +- Dérivés par finalize() : pets (« Animaux refusés… »), fumeur, inclusions, | |
| 24 | + stationnement, borne de recharge en texte. | |
| 25 | + | |
| 26 | +## Champs indisponibles à la source | |
| 27 | +- SUPERFICIE : jamais publiée (ni carte, ni fiche, ni API) -> `area_sqft = None` | |
| 28 | + partout (0 %) — c'est un manque de la source, pas du connecteur. | |
| 29 | +- lat/lng : aucune carte/coordonnées sur les fiches. | |
| 30 | +- L'API REST WordPress (/wp-json/wp/v2/location, 19 posts) a été auditée : | |
| 31 | + `content` vide et `acf: []` -> rien de plus que le HTML. | |
| 32 | + | |
| 33 | +## Fragilités | |
| 34 | +- 1 annonce (« 3 1/2 – 599, avenue de Norvège #12 ») a un lien de fiche MORT à | |
| 35 | + la source : logisma.ca redirige vers la page liste. Garde ajouté (si l'URL | |
| 36 | + finale diffère de l'URL demandée, on garde les données de la carte) -> cette | |
| 37 | + annonce reste sans dispo/commodités (d'où les 94 %). | |
| 38 | +- Contenu Elementor très variable d'une fiche à l'autre (avec/sans puces, | |
| 39 | + spans de styles inline) : double stratégie `<li>` structurel + repli puces. | |
| 40 | +- Clé de cache versionnée (`v3:`) : à bumper si l'extraction des fiches change. | |
| 41 | + | |
| 42 | +## Améliorations apportées | |
| 43 | +- Cache BD des fiches (`self.detail`) : ~1 requête/sync en régime stable au | |
| 44 | + lieu de 18 fetches systématiques ; budget compté dans `fetch_fn`. | |
| 45 | +- Commodités : 14/18 -> 17/18 annonces couvertes (extraction `<li>`). | |
| 46 | +- Description propre (texte réel de la section) + promotions. | |
| 47 | +- `details.contact.phone` structuré (lien tel:). | |
| 48 | +- Garde anti-redirection (liens morts). | |
| 49 | + | |
| 50 | +## Échantillon avant/après | |
| 51 | +- Avant : `2 1/2 – 89 Place de Versailles #02, Lévis | 920$ | dispo 2026-08-01 | |
| 52 | + | amenities [] | details {} | description = og:description fourre-tout` | |
| 53 | +- Après : `2 1/2 – 89 Place de Versailles #02, Lévis | 920$ | dispo 2026-08-01 | |
| 54 | + | amenities [Eau chaude INCLUSE!, 1 stationnement extérieur inclus, Borne de | |
| 55 | + recharge($), Buanderie($), Non chauffé non éclairé, Animaux refusés (sauf un | |
| 56 | + chat), Enquête de crédit] | details {hot_water:true, heating:false, | |
| 57 | + electricity:false, laundry, parking ext. inclus, pets:non, contact | |
| 58 | + 418-652-0377} | description = vraie section Description` | |
| 59 | + | |
| 60 | +## Lacunes génériques de normalisation (à traiter dans normalize.py, pas ici) | |
| 61 | +- « Non-chauffé, non-éclairé » AVEC TRAITS D'UNION : les motifs négatifs | |
| 62 | + (`non chauffe`, `non eclaire`) exigent une espace -> non reconnus, et pire, | |
| 63 | + le positif `eclaire\b` matche à l'intérieur de « non-eclaire » -> | |
| 64 | + `electricity: true` erroné (vu sur « 5 1/2 – 305 rue Laroche #7 »). | |
| 65 | +- « Animaux refusés (à l'exception d'un chat) » / « (sauf un chat) » est classé | |
| 66 | + `pets: "non"` alors que « conditions » (chat accepté) serait plus juste — | |
| 67 | + `_PETS_COND_RE` ne couvre pas la tournure « à l'exception de / sauf ». | |
| 68 | +- « Buanderie dans l'immeuble($) » (payante) donne `laundry: true` sans nuance. | |
added
reports/connectors/lokalia.md
+74 −0
@@ -0,0 +1,74 @@ | ||
| 1 | +# lokalia — Espaces Lokalia | |
| 2 | +- site: https://www.espaceslokalia.ca (AJAX `get_immeubles_map_data` + pages /immeuble/*) | |
| 3 | +- méthode: json-api + html | |
| 4 | +- annonces: 119 → 127 | |
| 5 | +- couverture après (sur 127 annonces): prix 80%, adresse 100%, dispo 0%, superficie 0%, commodités 100% | |
| 6 | +- fixture: ok · test: ok | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- AJAX WordPress (POST admin-ajax, région par région) : URL de chaque immeuble, | |
| 10 | + ville par défaut, et désormais LAT/LNG STRUCTURÉS de la carte -> `lat`/`lng` | |
| 11 | + sur 127/127 annonces (nouveau). | |
| 12 | +- Page immeuble : | |
| 13 | + - adresse STRUCTURÉE : lien Google Maps sous le H1 (`.category-wrapper | |
| 14 | + a.description`) — corrige les 6 adresses manquantes (regex de repli | |
| 15 | + élargie : « 71 Rte 132, Delson » passait entre les mailles) -> 100 % ; | |
| 16 | + - commodités : inclusions (icônes `div.icon-box[title]`) + accordéons | |
| 17 | + « Équipements & sécurité » et « Aires communes » (items `<li>` : | |
| 18 | + ascenseur, borne de recharge, chute à déchets, rangement ($), | |
| 19 | + stationnement intérieur ($), terrasse au toit…) — nouveau ; | |
| 20 | + - description : paragraphes réels de la fiche + « 151 unités • 5 étages » + | |
| 21 | + promotion (« Jusqu'à 3 mois gratuits* + 500 $ de rabais… ») préfixée | |
| 22 | + « Promotion : » (au lieu du seul og:description) ; | |
| 23 | + - téléphone du bureau de location (lien `tel:`) -> `details.contact.phone` ; | |
| 24 | + - grille « Prix et types d'unités » (.square-box) : les VARIANTES de types | |
| 25 | + (« 4 1/2 + DEN », « 3 1/2 (électricité et garage non inclus) ») ont | |
| 26 | + désormais leur propre annonce au lieu d'être avalées par la déduplication | |
| 27 | + sur le type normalisé (+12 annonces, souvent avec un prix distinct) ; | |
| 28 | + - photos (uploads WP, icônes filtrées), comme avant. | |
| 29 | + | |
| 30 | +## Champs indisponibles à la source | |
| 31 | +- DISPONIBILITÉ : jamais publiée (CTA « Inscription - Liste d'attente ») -> 0 %. | |
| 32 | +- SUPERFICIE : jamais publiée (ni grille, ni plans téléchargeables) -> 0 %. | |
| 33 | +- 25 annonces sans prix : immeubles « Projet à venir » ou types en liste | |
| 34 | + d'attente sans prix affiché (rien d'inventé). | |
| 35 | +- Animaux, meublé : non exposés. | |
| 36 | + | |
| 37 | +## Fragilités | |
| 38 | +- Schéma d'external_id conservé (slug immeuble + type normalisé « -4.5 ») ; | |
| 39 | + les variantes reçoivent un suffixe du libellé brut (« -4-1-2-den ») — | |
| 40 | + additif, les ids existants ne bougent pas. NOTE : 4 ids historiques | |
| 41 | + (« -6.5 », « -5 1/5 », « -Chambre », « -MDV ») ont été retirés/renommés par | |
| 42 | + le sync : dérive PRÉEXISTANTE due à l'évolution de `normalize_unit_type` | |
| 43 | + (les ids dépendent de la normalisation au moment de la création), pas au | |
| 44 | + nouveau schéma. | |
| 45 | +- Le nom court de l'immeuble vient du H1 (« … - Le Dézie ») : certaines pages | |
| 46 | + (Châteauguay) n'ont pas de nom après le tiret -> titre générique. | |
| 47 | +- L'endpoint AJAX est non documenté : s'il disparaît, tout le connecteur tombe | |
| 48 | + (le test fixture le détecterait). | |
| 49 | + | |
| 50 | +## Améliorations apportées | |
| 51 | +- lat/lng (127/127), adresse 95 % -> 100 %, commodités enrichies (équipements | |
| 52 | + + aires communes en plus des inclusions), description réelle + promotions, | |
| 53 | + `details.contact.phone`, +12 annonces (variantes de types non dédupliquées | |
| 54 | + à tort), regex d'adresse de repli élargie (« rte »). | |
| 55 | + | |
| 56 | +## Échantillon avant/après | |
| 57 | +- Avant : `Le Dézie — 4½ | 1749$ à partir de | pas de lat/lng | amenities = | |
| 58 | + 5 inclusions | desc = og:description | pas de contact | « 4 1/2 + DEN » | |
| 59 | + (2295$) absent` | |
| 60 | +- Après : `Le Dézie — 4 1/2 | 1749$ à partir de | lat 46.8055 / lng -71.1833 | | |
| 61 | + amenities = inclusions + ascenseur, borne de recharge, caméras, chute à | |
| 62 | + déchets, rangement ($), stationnement intérieur ($), terrasses | desc = | |
| 63 | + Promotion : Jusqu'à 3 mois gratuits… — Au cœur du Vieux-Lévis… — 151 unités | |
| 64 | + • 5 étages | contact 866-411-0949 | + annonce « Le Dézie — 4 1/2 + DEN » | |
| 65 | + (2295$)` | |
| 66 | + | |
| 67 | +## Lacunes génériques de normalisation (à traiter dans normalize.py, pas ici) | |
| 68 | +- « Espace de rangement ($) » / « Stationnement intérieur ($) » (payants) | |
| 69 | + donnent `storage: true` / parking sans nuance « en option ». | |
| 70 | +- « Appareil de climatisation (Sans utilisation) » est classé `ac: true` — | |
| 71 | + la parenthèse restrictive n'est pas comprise. | |
| 72 | +- « 3 1/2 (électricité et garage non inclus) » : le « non inclus » de la | |
| 73 | + parenthèse du TITRE n'influence pas `inclusions.electricity` (ici sans effet | |
| 74 | + car l'immeuble ne liste pas l'électricité, mais motif à surveiller). | |
added
reports/connectors/lynk_olymbec.md
+73 −0
@@ -0,0 +1,73 @@ | ||
| 1 | +# lynk_olymbec — Lynk par Olymbec (Lynk De la Savane) | |
| 2 | +- site: https://www.lynk.ca/lynk-dls/units (+ /floorplans, /floorplans/<plan>, /lynk-dls) | |
| 3 | +- méthode: firecrawl (repli — accès direct avec en-têtes navigateur quand Cloudflare laisse passer) | |
| 4 | +- annonces: 4 → 4 | |
| 5 | +- couverture après (sur 4 annonces): prix 100%, adresse 100%, dispo 75%, superficie 75%, commodités 100% | |
| 6 | +- fixture: ok · test: ok | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- /lynk-dls/units : prix marketing « à partir de » par type (repli), icônes | |
| 10 | + « dans mon unité » (chauffage — thermostat individuel, électricité, eau | |
| 11 | + chaude, climatisation, internet fibre 1,5G, laveuse-sécheuse/lave-vaisselle/ | |
| 12 | + réfrigérateur/micro-ondes Whirlpool, four et cuisinière, luminaires et | |
| 13 | + stores) et liste « aménagements et matériaux » (acoustique, quartz…) — | |
| 14 | + SCRAPÉES au lieu de la liste codée en dur — photos RentCafe. | |
| 15 | +- /lynk-dls/floorplans (RentCafe) — NOUVEAU : attributs STRUCTURÉS | |
| 16 | + `data-floorplan-size/sqft/price` par plan -> `area_sqft` (min de la | |
| 17 | + fourchette + « Superficie : 657 à 829 pi² » en commodité) et PRIX RÉELS | |
| 18 | + (« de 1 650 $ à 2 293 $ par mois » — le marketing affichait 1 700 $ pour le | |
| 19 | + 3½, RentCafe publie 1 650 $). | |
| 20 | +- Pages de plan (via `self.detail`, clé = attributs du plan, plafond 10 | |
| 21 | + vraies requêtes/sync) — NOUVEAU : unités disponibles (« # 923 — Disponible | |
| 22 | + maintenant ») -> disponibilité RÉELLE par type + liste des numéros d'unités | |
| 23 | + dans la description. | |
| 24 | +- /lynk-dls : description du projet, « services et commodités » de l'immeuble | |
| 25 | + (piscine extérieure chauffée, salle de fitness, concierge, salon vip*, | |
| 26 | + stationnement intérieur*, chargeurs VE*…) scrapées, téléphone (lien `tel:`) | |
| 27 | + -> `details.contact.phone` (514-737-5965). | |
| 28 | +- Correspondance plans -> types : Studio→Studio, 1 ch.→3½, 2 ch.→4½, 3 ch.→5½ | |
| 29 | + (les deux plans 3 chambres agrégés sous 5½). | |
| 30 | + | |
| 31 | +## Champs indisponibles à la source | |
| 32 | +- Studio : aucune unité disponible côté RentCafe (bouton « contactez-nous » | |
| 33 | + seulement) -> dispo vide et superficie absente pour ce type (d'où 75 %) ; | |
| 34 | + seul le prix marketing 1 380 $ existe. | |
| 35 | +- lat/lng : aucune coordonnée dans les pages. | |
| 36 | +- Animaux, meublé : non publiés. | |
| 37 | + | |
| 38 | +## Fragilités | |
| 39 | +- Cloudflare : l'accès direct passe par intermittence ; sinon Firecrawl | |
| 40 | + (FIRECRAWL_API_KEY requis). ~4-6 requêtes rendues par sync (pages plan | |
| 41 | + amorties par le cache `self.detail`). | |
| 42 | +- ATTENTION : Firecrawl réécrit les href en ABSOLU alors que l'accès direct | |
| 43 | + les laisse RELATIFS -> `urljoin` systématique (c'était la cause d'un échec | |
| 44 | + silencieux de l'extraction des unités). | |
| 45 | +- Chaque plan apparaît 2x dans le HTML (desktop+mobile) : déduplication par | |
| 46 | + slug pour ne pas doubler les unités. | |
| 47 | +- Granularité conservée : 1 annonce par TYPE (ids `dls-studio`, `dls-3.5`…), | |
| 48 | + pas par unité — schéma d'external_id inchangé. | |
| 49 | + | |
| 50 | +## Améliorations apportées | |
| 51 | +- SUPPRESSION des valeurs semi-inventées : `availability="Disponible"` codé en | |
| 52 | + dur remplacé par la dispo réelle RentCafe (« Disponible maintenant » ou vide | |
| 53 | + si inconnue) ; liste AMENITIES codée en dur remplacée par le scraping des | |
| 54 | + 3 sections réelles du site. | |
| 55 | +- Prix réels par fourchette RentCafe (structurés), superficie structurée, | |
| 56 | + unités disponibles nominatives, contact téléphonique, description réelle. | |
| 57 | + | |
| 58 | +## Échantillon avant/après | |
| 59 | +- Avant : `Lynk De la Savane — 3½ | 1700$ « à partir de 1700 $ » (marketing) | | |
| 60 | + dispo « Disponible » (codée en dur) | superficie None | 12 commodités codées | |
| 61 | + en dur` | |
| 62 | +- Après : `Lynk De la Savane — 3½ | 1650$ « de 1 650 $ à 2 293 $ par mois » | |
| 63 | + (RentCafe) | dispo « Disponible maintenant » (réelle) | 657 pi² (attribut | |
| 64 | + structuré, fourchette 657-829 en commodité) | ~30 commodités scrapées | |
| 65 | + (unité + immeuble) | description + « 7 unité(s) disponible(s) : #923, … » | | |
| 66 | + contact 514-737-5965` | |
| 67 | + | |
| 68 | +## Lacunes génériques de normalisation (à traiter dans normalize.py, pas ici) | |
| 69 | +- Les items marqués « * » (« salon vip* », « stationnement intérieur* » = | |
| 70 | + frais additionnels) sont dérivés sans nuance payant/inclus. | |
| 71 | +- `price_label` en fourchette « de X $ à Y $ » n'active pas `price_from` | |
| 72 | + (le prix affiché est bien le plancher) — `price_is_from` ne reconnaît que | |
| 73 | + « à partir de / from / + ». | |
added
tests/fixtures/logisbourg/0775e0402a875a4f1a49.html
+828 −0
@@ -0,0 +1,828 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Charlesbourg/Lebourgneuf  Le Bourgarde : 4755, 6<SUP>e</SUP> Avenue Ouest # 15 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Charlesbourg/Lebourgneuf, au Le Bourgarde : 4755, 6<SUP>e</SUP> Avenue Ouest # 15 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Charlesbourg / Lebourgneuf : Le Bourgarde<BR> | |
| 342 | + <div class="nomComplexeAdresse">4755, 6<SUP>e</SUP> Avenue Ouest # 15</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_6.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <div class="cycle-pager-relative"></div> | |
| 369 | + </div> | |
| 370 | + | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + <div id="DescriptionComplexe"> | |
| 378 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_1.jpg" id="PhotoComplexePrint"> | |
| 379 | + Érigés par Logisbourg à l'angle des autoroutes Laurentienne et Félix-Leclerc, les 8 immeubles qui forment le complexe le Bourgarde ont des atouts indéniables. Planchers de béton pour une insonorisation supérieure, isolation thermique écoénergétique, nombre limité de logements par étage pour un maximum d'unités de coin, vastes superficies à aire ouverte, beaucoup d'espaces de rangement et des balcons hors normes... Le complexe le Bourgarde a tout pour plaire! | |
| 380 | + </div> | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + <TABLE class="dispos_table"> | |
| 385 | + <TR class="nomComplexePrint"> | |
| 386 | + <TD colspan="6"> | |
| 387 | + Charlesbourg / Lebourgneuf : Le Bourgarde<BR> | |
| 388 | + <div class="nomComplexeAdresse">4755, 6<SUP>e</SUP> Avenue Ouest # 15</div> | |
| 389 | + </TD> | |
| 390 | + </TR> | |
| 391 | + <TR class="tr_header_appart"> | |
| 392 | + <TD>Grandeur</TD> | |
| 393 | + <TD>Disponibilité</TD> | |
| 394 | + <TD>Étage</TD> | |
| 395 | + <TD>Inclus</TD> | |
| 396 | + <TD>Prix</TD> | |
| 397 | + <TD>Favoris</TD> | |
| 398 | + </TR> | |
| 399 | + <TR class="dispos_tr_logement_appart"> | |
| 400 | + | |
| 401 | + <TD>4½</TD> | |
| 402 | + | |
| 403 | + <TD TITLE="Disponible maintenant">maintenant</TD> | |
| 404 | + <TD TITLE="3e étage">3<SUP>e</SUP></TD> | |
| 405 | + <TD class="Inclus"> | |
| 406 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 407 | + </TD> | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
| 411 | + | |
| 412 | + <TD id="prix_td">1240 $</TD> | |
| 413 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('74');" id='LienF_74_' onClick="compteur('LIDClic=74&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 414 | + </TR> | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + </TABLE> | |
| 420 | + | |
| 421 | +</div> | |
| 422 | + | |
| 423 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 424 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 425 | + <div class="bloc_infos_header_fix"> | |
| 426 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 427 | + </div> | |
| 428 | + | |
| 429 | + | |
| 430 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 431 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 432 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 433 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 434 | + Écrivez-nous | |
| 435 | + </A> | |
| 436 | + | |
| 437 | + | |
| 438 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 439 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 440 | + <input type="hidden" name="LogementID" value="74"> | |
| 441 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 442 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 443 | + <br clear="all"> | |
| 444 | + | |
| 445 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 446 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 447 | + <br clear="all"> | |
| 448 | + | |
| 449 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 450 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 451 | + <br clear="all"> | |
| 452 | + | |
| 453 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 454 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 455 | + <br clear="all"> | |
| 456 | + | |
| 457 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 458 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 459 | + <br clear="all"> | |
| 460 | + | |
| 461 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 462 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 463 | + <br clear="all"> | |
| 464 | + | |
| 465 | + | |
| 466 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 467 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 468 | + | |
| 469 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 470 | + | |
| 471 | + <option value="9" style="color:#333;">Facebook</option> | |
| 472 | + | |
| 473 | + <option value="7" style="color:#333;">Référence</option> | |
| 474 | + | |
| 475 | + <option value="1" style="color:#333;">Google</option> | |
| 476 | + | |
| 477 | + <option value="5" style="color:#333;">Radio</option> | |
| 478 | + | |
| 479 | + <option value="8" style="color:#333;">Télévision</option> | |
| 480 | + | |
| 481 | + <option value="6" style="color:#333;">Affiches</option> | |
| 482 | + | |
| 483 | + </select> | |
| 484 | + <br clear="all"> | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 489 | + <br clear="all"> | |
| 490 | + | |
| 491 | + <br clear="all"> | |
| 492 | + <div id="contourCaptcha2" > | |
| 493 | + <div id="recaptcha2" ></div> | |
| 494 | + </div> | |
| 495 | + <br> | |
| 496 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 497 | + | |
| 498 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 499 | + </form> | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + </div> | |
| 506 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 507 | + </div> | |
| 508 | + </div> | |
| 509 | + </div> | |
| 510 | + | |
| 511 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 512 | + <div id="carac_appart" class="bloc_infos"> | |
| 513 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 514 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 515 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 516 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 517 | + </div> | |
| 518 | + | |
| 519 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 520 | + | |
| 521 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 522 | + | |
| 523 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_ap.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement am et pm' TITLE='Ensoleillement am et pm'>Ensoleillement am et pm</div> | |
| 524 | + | |
| 525 | +<div class='carac_icone'><IMG SRC='images/icones/locker2.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='2 espaces de rangement inclus' TITLE='2 espaces de rangement inclus'>2 espaces de rangement inclus</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Balcon' TITLE='Balcon'>Balcon 60 pi<SUP>2</SUP></div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/insono2.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 530 | + | |
| 531 | +<div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/lave-vaisselle.png' BORDER=0 WIDTH=28 HEIGHT=30 ALT='Entrée lave-vaisselle incluse' TITLE='Entrée lave-vaisselle incluse'><IMG SRC='images/icones/laveuse.png' BORDER=0 WIDTH=26 HEIGHT=30 ALT='Entrées laveuse/sécheuse incluses' TITLE='Entrées laveuse/sécheuse incluses'><div class='carac_icone_inclus2'>Entrées lave-vaisselle et<BR>laveuse/sécheuse inclus</div></div> | |
| 532 | + | |
| 533 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/stationnement.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Un stationnement extérieur' TITLE='Un stationnement extérieur'>Un stationnement extérieur</div> | |
| 534 | + | |
| 535 | +<div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>940 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 536 | + | |
| 537 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois flottant, céramique, marqueterie</div> | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + </div> | |
| 544 | + </div> | |
| 545 | + </div> | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + | |
| 551 | + | |
| 552 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 553 | + | |
| 554 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 555 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 556 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 557 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 558 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 559 | + </div> | |
| 560 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 561 | + <img src="./charlesbourg/le_bourgarde/plans/4_et_demi_940_pc.gif" title="Plan appartement 4 1/2 940 pieds carrés" ALT="Plan appartement 4 1/2 940 pieds carrés" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 562 | + </div> | |
| 563 | + </div> | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
| 567 | +</div> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | +<div id="groupe2"> | |
| 572 | + | |
| 573 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 574 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 575 | + <div class="bloc_infos_header_fix"> | |
| 576 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 577 | + </div> | |
| 578 | + | |
| 579 | + <div class="bloc_infos_contenu"> | |
| 580 | + | |
| 581 | + | |
| 582 | + <div class="bloc_contact"> | |
| 583 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 584 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 585 | + Écrivez-nous | |
| 586 | + </A> | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 596 | + <input type="hidden" name="LogementID" value="74"> | |
| 597 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 598 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 599 | + <br clear="all"> | |
| 600 | + | |
| 601 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 602 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 603 | + <br clear="all"> | |
| 604 | + | |
| 605 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 606 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 607 | + <br clear="all"> | |
| 608 | + | |
| 609 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 610 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 611 | + <br clear="all"> | |
| 612 | + | |
| 613 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 614 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 615 | + <br clear="all"> | |
| 616 | + | |
| 617 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 618 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 619 | + | |
| 620 | + <br clear="all"> | |
| 621 | + | |
| 622 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 623 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 624 | + | |
| 625 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 626 | + | |
| 627 | + <option value="9" style="color:#333;">Facebook</option> | |
| 628 | + | |
| 629 | + <option value="7" style="color:#333;">Référence</option> | |
| 630 | + | |
| 631 | + <option value="1" style="color:#333;">Google</option> | |
| 632 | + | |
| 633 | + <option value="5" style="color:#333;">Radio</option> | |
| 634 | + | |
| 635 | + <option value="8" style="color:#333;">Télévision</option> | |
| 636 | + | |
| 637 | + <option value="6" style="color:#333;">Affiches</option> | |
| 638 | + | |
| 639 | + </select> | |
| 640 | + <br clear="all"> | |
| 641 | + | |
| 642 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 643 | + | |
| 644 | + <br clear="all"> | |
| 645 | + <br> | |
| 646 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 647 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 648 | + </div> | |
| 649 | + <br> | |
| 650 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 651 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 652 | + </form> | |
| 653 | + </div> | |
| 654 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 655 | + </div> | |
| 656 | + | |
| 657 | + </div> | |
| 658 | + </div> | |
| 659 | + | |
| 660 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 661 | + <div id="emplacement" class="bloc_infos"> | |
| 662 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 663 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 664 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 665 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 666 | + </div> | |
| 667 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 668 | + | |
| 669 | + | |
| 670 | + | |
| 671 | + <div id="mapDiv"></div> | |
| 672 | + <script> | |
| 673 | + var adr1 = "4755"; | |
| 674 | + var adr2 = "6<SUP>e</SUP> Avenue Ouest"; | |
| 675 | + </script> | |
| 676 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 677 | + | |
| 678 | + <A href="http://maps.apple.com/?q=46.840618,-71.264365&z=15," target="_blank"><img src="images/googlemap.png" ><div>4755, 6<SUP>e</SUP> Avenue Ouest, Charlesbourg / Lebourgneuf</div></A> | |
| 679 | + | |
| 680 | + </div> | |
| 681 | + </div> | |
| 682 | + </div> | |
| 683 | + | |
| 684 | + | |
| 685 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 686 | + <div id="services" class="bloc_infos"> | |
| 687 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 688 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 689 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 690 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 691 | + </div> | |
| 692 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 693 | + <ul> | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
| 697 | + | |
| 698 | + Immeuble de 3 étages | |
| 699 | + <DIV STYLE="padding:2px;"></DIV> | |
| 700 | + 16 logements | |
| 701 | + <DIV STYLE="padding:2px;"></DIV> | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Stationnement extérieur déneigé</li> | |
| 708 | + </ul> | |
| 709 | + | |
| 710 | + | |
| 711 | + </div> | |
| 712 | + </div> | |
| 713 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 714 | +<div id="servicesop" class="bloc_infos"> | |
| 715 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 716 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 717 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 718 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 719 | + </div> | |
| 720 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 721 | + <ul> | |
| 722 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li> | |
| 723 | + </ul> | |
| 724 | + | |
| 725 | + </div> | |
| 726 | + </div> | |
| 727 | + </div > | |
| 728 | + | |
| 729 | + <div id="notePrix"> | |
| 730 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 731 | + </div><BR> | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | +</main> | |
| 736 | + | |
| 737 | + | |
| 738 | + | |
| 739 | + | |
| 740 | +<script> | |
| 741 | + | |
| 742 | + var GoogleLat = "46.840618"; | |
| 743 | + var GoogleLn = "-71.264365"; | |
| 744 | + var adrs = "4755,6<SUP>e</SUP> Avenue Ouest"; | |
| 745 | + var NomComplexe = "Le Bourgarde"; | |
| 746 | + | |
| 747 | +/* | |
| 748 | + function initMap() { | |
| 749 | + var mapOptions = { | |
| 750 | + zoom: 15, | |
| 751 | + center: new google.maps.LatLng(46.840618,-71.264365), | |
| 752 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 753 | + } | |
| 754 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 755 | + var image = 'images/google/marker.png'; | |
| 756 | + var image_on = 'images/google/marker_on.png'; | |
| 757 | + | |
| 758 | + var myLatLng = new google.maps.LatLng(46.840618,-71.264365); | |
| 759 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 760 | + | |
| 761 | + } | |
| 762 | +*/ | |
| 763 | + | |
| 764 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 765 | + | |
| 766 | + | |
| 767 | + function genMap(adr1,adr2){ | |
| 768 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 769 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 770 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 771 | + $("#mapDiv").html(mapadr); | |
| 772 | + } | |
| 773 | + genMap(adr1,adr2); | |
| 774 | +</script> | |
| 775 | + | |
| 776 | + | |
| 777 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 778 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 779 | + | |
| 780 | + | |
| 781 | + | |
| 782 | + </div> | |
| 783 | + | |
| 784 | + <script> | |
| 785 | + | |
| 786 | + updatePageLF(); | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + </script> | |
| 791 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | +<footer class="mainfooter"> | |
| 798 | + <div> | |
| 799 | + | |
| 800 | + <div> | |
| 801 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 802 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 803 | + <a href="notifications.php">Notifications</a> | |
| 804 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 805 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 806 | + <a href="contact.asp">Contact</a> | |
| 807 | + <br> | |
| 808 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 809 | + </div> | |
| 810 | + <div> | |
| 811 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 812 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 813 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 814 | + </div> | |
| 815 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 816 | + </div> | |
| 817 | +</footer> | |
| 818 | + | |
| 819 | + <script> | |
| 820 | + | |
| 821 | + updateLF(); | |
| 822 | + | |
| 823 | + </script> | |
| 824 | + | |
| 825 | + | |
| 826 | + </body> | |
| 827 | + | |
| 828 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/281ef0cdcdc9845367c2.html
+817 −0
@@ -0,0 +1,817 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Cité Limoilou  Le Bourg du Maizerets : 1610, ave Ernest-Lapointe # 4 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Cité Limoilou, au Le Bourg du Maizerets : 1610, ave Ernest-Lapointe # 4 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 342 | + <div class="nomComplexeAdresse">1610, ave Ernest-Lapointe # 4</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_6.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_7.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 369 | + | |
| 370 | + <div class="cycle-pager-relative"></div> | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + </div> | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + <div id="DescriptionComplexe"> | |
| 380 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_1.jpg" id="PhotoComplexePrint"> | |
| 381 | + Le complexe du Bourg du Maizerets, gagnants d'un prix Nobilis lors de sa modernisation extérieur, est situé à l'orée du futur écoquartier d'Estimauville. En voiture, en autobus ou à vélo, accédez à Saint-Roch, à Limoilou ou à la Haute-Ville en quelques instants. Le parc Maizerets, un véritable joyau à Québec, et la piste cyclable menant à la Baie de Beauport, figurent aussi parmi les meilleurs atouts de ce complexe hors du commun. | |
| 382 | + </div> | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + <TABLE class="dispos_table"> | |
| 387 | + <TR class="nomComplexePrint"> | |
| 388 | + <TD colspan="6"> | |
| 389 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 390 | + <div class="nomComplexeAdresse">1610, ave Ernest-Lapointe # 4</div> | |
| 391 | + </TD> | |
| 392 | + </TR> | |
| 393 | + <TR class="tr_header_appart"> | |
| 394 | + <TD>Grandeur</TD> | |
| 395 | + <TD>Disponibilité</TD> | |
| 396 | + <TD>Étage</TD> | |
| 397 | + <TD>Inclus</TD> | |
| 398 | + <TD>Prix</TD> | |
| 399 | + <TD>Favoris</TD> | |
| 400 | + </TR> | |
| 401 | + <TR class="dispos_tr_logement_appart"> | |
| 402 | + | |
| 403 | + <TD>3½</TD> | |
| 404 | + | |
| 405 | + <TD TITLE="Disponible 1er novembre 2026">1<SUP>er</SUP> novembre 2026</TD> | |
| 406 | + <TD TITLE="2e étage">2<SUP>e</SUP></TD> | |
| 407 | + <TD class="Inclus"> | |
| 408 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 409 | + </TD> | |
| 410 | + | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + <TD id="prix_td">990 $</TD> | |
| 415 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('519');" id='LienF_519_' onClick="compteur('LIDClic=519&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 416 | + </TR> | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | + | |
| 421 | + </TABLE> | |
| 422 | + | |
| 423 | +</div> | |
| 424 | + | |
| 425 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 426 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 427 | + <div class="bloc_infos_header_fix"> | |
| 428 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 429 | + </div> | |
| 430 | + | |
| 431 | + | |
| 432 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 433 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 434 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 435 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 436 | + Écrivez-nous | |
| 437 | + </A> | |
| 438 | + | |
| 439 | + | |
| 440 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 441 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 442 | + <input type="hidden" name="LogementID" value="519"> | |
| 443 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 444 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 445 | + <br clear="all"> | |
| 446 | + | |
| 447 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 448 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 449 | + <br clear="all"> | |
| 450 | + | |
| 451 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 452 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 453 | + <br clear="all"> | |
| 454 | + | |
| 455 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 456 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 457 | + <br clear="all"> | |
| 458 | + | |
| 459 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 460 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 461 | + <br clear="all"> | |
| 462 | + | |
| 463 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 464 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 465 | + <br clear="all"> | |
| 466 | + | |
| 467 | + | |
| 468 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 469 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 470 | + | |
| 471 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 472 | + | |
| 473 | + <option value="9" style="color:#333;">Facebook</option> | |
| 474 | + | |
| 475 | + <option value="7" style="color:#333;">Référence</option> | |
| 476 | + | |
| 477 | + <option value="1" style="color:#333;">Google</option> | |
| 478 | + | |
| 479 | + <option value="5" style="color:#333;">Radio</option> | |
| 480 | + | |
| 481 | + <option value="8" style="color:#333;">Télévision</option> | |
| 482 | + | |
| 483 | + <option value="6" style="color:#333;">Affiches</option> | |
| 484 | + | |
| 485 | + </select> | |
| 486 | + <br clear="all"> | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 491 | + <br clear="all"> | |
| 492 | + | |
| 493 | + <br clear="all"> | |
| 494 | + <div id="contourCaptcha2" > | |
| 495 | + <div id="recaptcha2" ></div> | |
| 496 | + </div> | |
| 497 | + <br> | |
| 498 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 499 | + | |
| 500 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 501 | + </form> | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + </div> | |
| 508 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 509 | + </div> | |
| 510 | + </div> | |
| 511 | + </div> | |
| 512 | + | |
| 513 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 514 | + <div id="carac_appart" class="bloc_infos"> | |
| 515 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 516 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 517 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 518 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 519 | + </div> | |
| 520 | + | |
| 521 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 522 | + | |
| 523 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 524 | + | |
| 525 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_pm.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement pm' TITLE='Ensoleillement pm'>Ensoleillement pm</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Balcon' TITLE='Balcon'>Balcon 0 pi<SUP>2</SUP></div> | |
| 530 | + | |
| 531 | +<div class='carac_icone'><IMG SRC='images/icones/insono3.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 532 | + | |
| 533 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/laveuse.png' BORDER=0 WIDTH=26 HEIGHT=30 ALT='Entrées laveuse/sécheuse incluses' TITLE='Entrées laveuse/sécheuse incluses'>Entrées laveuse/sécheuse incluses</div> | |
| 534 | + | |
| 535 | +<div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>460 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 536 | + | |
| 537 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois franc, céramique</div> | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + </div> | |
| 544 | + </div> | |
| 545 | + </div> | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + | |
| 551 | + | |
| 552 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 553 | + | |
| 554 | + | |
| 555 | + | |
| 556 | +</div> | |
| 557 | + | |
| 558 | + | |
| 559 | + | |
| 560 | +<div id="groupe2"> | |
| 561 | + | |
| 562 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 563 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 564 | + <div class="bloc_infos_header_fix"> | |
| 565 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 566 | + </div> | |
| 567 | + | |
| 568 | + <div class="bloc_infos_contenu"> | |
| 569 | + | |
| 570 | + | |
| 571 | + <div class="bloc_contact"> | |
| 572 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 573 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 574 | + Écrivez-nous | |
| 575 | + </A> | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 585 | + <input type="hidden" name="LogementID" value="519"> | |
| 586 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 587 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 588 | + <br clear="all"> | |
| 589 | + | |
| 590 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 591 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 592 | + <br clear="all"> | |
| 593 | + | |
| 594 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 595 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 596 | + <br clear="all"> | |
| 597 | + | |
| 598 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 599 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 600 | + <br clear="all"> | |
| 601 | + | |
| 602 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 603 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 604 | + <br clear="all"> | |
| 605 | + | |
| 606 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 607 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 608 | + | |
| 609 | + <br clear="all"> | |
| 610 | + | |
| 611 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 612 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 613 | + | |
| 614 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 615 | + | |
| 616 | + <option value="9" style="color:#333;">Facebook</option> | |
| 617 | + | |
| 618 | + <option value="7" style="color:#333;">Référence</option> | |
| 619 | + | |
| 620 | + <option value="1" style="color:#333;">Google</option> | |
| 621 | + | |
| 622 | + <option value="5" style="color:#333;">Radio</option> | |
| 623 | + | |
| 624 | + <option value="8" style="color:#333;">Télévision</option> | |
| 625 | + | |
| 626 | + <option value="6" style="color:#333;">Affiches</option> | |
| 627 | + | |
| 628 | + </select> | |
| 629 | + <br clear="all"> | |
| 630 | + | |
| 631 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 632 | + | |
| 633 | + <br clear="all"> | |
| 634 | + <br> | |
| 635 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 636 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 637 | + </div> | |
| 638 | + <br> | |
| 639 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 640 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 641 | + </form> | |
| 642 | + </div> | |
| 643 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 644 | + </div> | |
| 645 | + | |
| 646 | + </div> | |
| 647 | + </div> | |
| 648 | + | |
| 649 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 650 | + <div id="emplacement" class="bloc_infos"> | |
| 651 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 652 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 653 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 654 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 655 | + </div> | |
| 656 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 657 | + | |
| 658 | + | |
| 659 | + | |
| 660 | + <div id="mapDiv"></div> | |
| 661 | + <script> | |
| 662 | + var adr1 = "1610"; | |
| 663 | + var adr2 = "ave Ernest-Lapointe"; | |
| 664 | + </script> | |
| 665 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 666 | + | |
| 667 | + <A href="http://maps.apple.com/?q=46.841011,-71.21501&z=15," target="_blank"><img src="images/googlemap.png" ><div>1610, ave Ernest-Lapointe, Cité Limoilou</div></A> | |
| 668 | + | |
| 669 | + </div> | |
| 670 | + </div> | |
| 671 | + </div> | |
| 672 | + | |
| 673 | + | |
| 674 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 675 | + <div id="services" class="bloc_infos"> | |
| 676 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 677 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 678 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 679 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 680 | + </div> | |
| 681 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 682 | + <ul> | |
| 683 | + | |
| 684 | + | |
| 685 | + | |
| 686 | + | |
| 687 | + Immeuble de 3 étages | |
| 688 | + <DIV STYLE="padding:2px;"></DIV> | |
| 689 | + 30 logements | |
| 690 | + <DIV STYLE="padding:2px;"></DIV> | |
| 691 | + | |
| 692 | + | |
| 693 | + | |
| 694 | + | |
| 695 | + | |
| 696 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Surveillance par caméra</li> | |
| 697 | + </ul> | |
| 698 | + | |
| 699 | + | |
| 700 | + </div> | |
| 701 | + </div> | |
| 702 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 703 | +<div id="servicesop" class="bloc_infos"> | |
| 704 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 705 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 706 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 707 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 708 | + </div> | |
| 709 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 710 | + <ul> | |
| 711 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li><li>Rangement supplémentaire<br>pour 25$ / mois</li> | |
| 712 | + </ul> | |
| 713 | + | |
| 714 | + </div> | |
| 715 | + </div> | |
| 716 | + </div > | |
| 717 | + | |
| 718 | + <div id="notePrix"> | |
| 719 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 720 | + </div><BR> | |
| 721 | + | |
| 722 | + | |
| 723 | + | |
| 724 | +</main> | |
| 725 | + | |
| 726 | + | |
| 727 | + | |
| 728 | + | |
| 729 | +<script> | |
| 730 | + | |
| 731 | + var GoogleLat = "46.841011"; | |
| 732 | + var GoogleLn = "-71.21501"; | |
| 733 | + var adrs = "1610,ave Ernest-Lapointe"; | |
| 734 | + var NomComplexe = "Le Bourg du Maizerets"; | |
| 735 | + | |
| 736 | +/* | |
| 737 | + function initMap() { | |
| 738 | + var mapOptions = { | |
| 739 | + zoom: 15, | |
| 740 | + center: new google.maps.LatLng(46.841011,-71.21501), | |
| 741 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 742 | + } | |
| 743 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 744 | + var image = 'images/google/marker.png'; | |
| 745 | + var image_on = 'images/google/marker_on.png'; | |
| 746 | + | |
| 747 | + var myLatLng = new google.maps.LatLng(46.841011,-71.21501); | |
| 748 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 749 | + | |
| 750 | + } | |
| 751 | +*/ | |
| 752 | + | |
| 753 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 754 | + | |
| 755 | + | |
| 756 | + function genMap(adr1,adr2){ | |
| 757 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 758 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 759 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 760 | + $("#mapDiv").html(mapadr); | |
| 761 | + } | |
| 762 | + genMap(adr1,adr2); | |
| 763 | +</script> | |
| 764 | + | |
| 765 | + | |
| 766 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 767 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 768 | + | |
| 769 | + | |
| 770 | + | |
| 771 | + </div> | |
| 772 | + | |
| 773 | + <script> | |
| 774 | + | |
| 775 | + updatePageLF(); | |
| 776 | + | |
| 777 | + | |
| 778 | + | |
| 779 | + </script> | |
| 780 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 781 | + | |
| 782 | + | |
| 783 | + | |
| 784 | + | |
| 785 | + | |
| 786 | +<footer class="mainfooter"> | |
| 787 | + <div> | |
| 788 | + | |
| 789 | + <div> | |
| 790 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 791 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 792 | + <a href="notifications.php">Notifications</a> | |
| 793 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 794 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 795 | + <a href="contact.asp">Contact</a> | |
| 796 | + <br> | |
| 797 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 798 | + </div> | |
| 799 | + <div> | |
| 800 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 801 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 802 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 803 | + </div> | |
| 804 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 805 | + </div> | |
| 806 | +</footer> | |
| 807 | + | |
| 808 | + <script> | |
| 809 | + | |
| 810 | + updateLF(); | |
| 811 | + | |
| 812 | + </script> | |
| 813 | + | |
| 814 | + | |
| 815 | + </body> | |
| 816 | + | |
| 817 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/661f04def6d5ea43a183.html
+828 −0
@@ -0,0 +1,828 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Beauport  Le Bourg du Fleuve : 14, rue Francheville # 5 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Beauport, au Le Bourg du Fleuve : 14, rue Francheville # 5 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Beauport : Le Bourg du Fleuve<BR> | |
| 342 | + <div class="nomComplexeAdresse">14, rue Francheville # 5</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./beauport/le_bourg_du_fleuve/images/12/12_francheville_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./beauport/le_bourg_du_fleuve/images/12/12_francheville_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./beauport/le_bourg_du_fleuve/images/12/12_francheville_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./beauport/le_bourg_du_fleuve/images/12/12_francheville_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./beauport/le_bourg_du_fleuve/images/12/12_francheville_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./beauport/le_bourg_du_fleuve/images/Le_Bourg_du_Fleuve_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <div class="cycle-pager-relative"></div> | |
| 369 | + </div> | |
| 370 | + | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + <div id="DescriptionComplexe"> | |
| 378 | + <IMG SRC="./beauport/le_bourg_du_fleuve/images/12/12_francheville_1.jpg" id="PhotoComplexePrint"> | |
| 379 | + Perchés sur un plateau surélevé qui connaît un véritable boum de développement, les 4 immeubles du Bourg du Fleuve offrent une vue exceptionnelle sur le fleuve St-Laurent. Avec les Chutes Montmorency à quelques coins de rue et une gamme de services toujours croissante, on y vit presque comme en campagne… avec les avantages de la ville! | |
| 380 | + </div> | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + <TABLE class="dispos_table"> | |
| 385 | + <TR class="nomComplexePrint"> | |
| 386 | + <TD colspan="6"> | |
| 387 | + Beauport : Le Bourg du Fleuve<BR> | |
| 388 | + <div class="nomComplexeAdresse">14, rue Francheville # 5</div> | |
| 389 | + </TD> | |
| 390 | + </TR> | |
| 391 | + <TR class="tr_header_appart"> | |
| 392 | + <TD>Grandeur</TD> | |
| 393 | + <TD>Disponibilité</TD> | |
| 394 | + <TD>Étage</TD> | |
| 395 | + <TD>Inclus</TD> | |
| 396 | + <TD>Prix</TD> | |
| 397 | + <TD>Favoris</TD> | |
| 398 | + </TR> | |
| 399 | + <TR class="dispos_tr_logement_appart"> | |
| 400 | + | |
| 401 | + <TD>3½</TD> | |
| 402 | + | |
| 403 | + <TD TITLE="Disponible 1er octobre 2026">1<SUP>er</SUP> octobre 2026</TD> | |
| 404 | + <TD TITLE="2e étage">2<SUP>e</SUP></TD> | |
| 405 | + <TD class="Inclus"> | |
| 406 | + | |
| 407 | + </TD> | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
| 411 | + | |
| 412 | + <TD id="prix_td">1020 $</TD> | |
| 413 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('680');" id='LienF_680_' onClick="compteur('LIDClic=680&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 414 | + </TR> | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + </TABLE> | |
| 420 | + | |
| 421 | +</div> | |
| 422 | + | |
| 423 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 424 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 425 | + <div class="bloc_infos_header_fix"> | |
| 426 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 427 | + </div> | |
| 428 | + | |
| 429 | + | |
| 430 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 431 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 432 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 433 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 434 | + Écrivez-nous | |
| 435 | + </A> | |
| 436 | + | |
| 437 | + | |
| 438 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 439 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 440 | + <input type="hidden" name="LogementID" value="680"> | |
| 441 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 442 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 443 | + <br clear="all"> | |
| 444 | + | |
| 445 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 446 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 447 | + <br clear="all"> | |
| 448 | + | |
| 449 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 450 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 451 | + <br clear="all"> | |
| 452 | + | |
| 453 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 454 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 455 | + <br clear="all"> | |
| 456 | + | |
| 457 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 458 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 459 | + <br clear="all"> | |
| 460 | + | |
| 461 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 462 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 463 | + <br clear="all"> | |
| 464 | + | |
| 465 | + | |
| 466 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 467 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 468 | + | |
| 469 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 470 | + | |
| 471 | + <option value="9" style="color:#333;">Facebook</option> | |
| 472 | + | |
| 473 | + <option value="7" style="color:#333;">Référence</option> | |
| 474 | + | |
| 475 | + <option value="1" style="color:#333;">Google</option> | |
| 476 | + | |
| 477 | + <option value="5" style="color:#333;">Radio</option> | |
| 478 | + | |
| 479 | + <option value="8" style="color:#333;">Télévision</option> | |
| 480 | + | |
| 481 | + <option value="6" style="color:#333;">Affiches</option> | |
| 482 | + | |
| 483 | + </select> | |
| 484 | + <br clear="all"> | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 489 | + <br clear="all"> | |
| 490 | + | |
| 491 | + <br clear="all"> | |
| 492 | + <div id="contourCaptcha2" > | |
| 493 | + <div id="recaptcha2" ></div> | |
| 494 | + </div> | |
| 495 | + <br> | |
| 496 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 497 | + | |
| 498 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 499 | + </form> | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + </div> | |
| 506 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 507 | + </div> | |
| 508 | + </div> | |
| 509 | + </div> | |
| 510 | + | |
| 511 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 512 | + <div id="carac_appart" class="bloc_infos"> | |
| 513 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 514 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 515 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 516 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 517 | + </div> | |
| 518 | + | |
| 519 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 520 | + | |
| 521 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 522 | + | |
| 523 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_ap.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement am et pm' TITLE='Ensoleillement am et pm'>Ensoleillement am et pm</div> | |
| 524 | + | |
| 525 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Balcon' TITLE='Balcon'>Balcon 50 pi<SUP>2</SUP></div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/insono3.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 530 | + | |
| 531 | +<div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/laveuse.png' BORDER=0 WIDTH=26 HEIGHT=30 ALT='Entrées laveuse/sécheuse incluses' TITLE='Entrées laveuse/sécheuse incluses'>Entrées laveuse/sécheuse incluses</div> | |
| 532 | + | |
| 533 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/stationnement.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Un stationnement extérieur' TITLE='Un stationnement extérieur'>Un stationnement extérieur</div> | |
| 534 | + | |
| 535 | +<div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>570 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 536 | + | |
| 537 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois flottant, céramique</div> | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + </div> | |
| 544 | + </div> | |
| 545 | + </div> | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + | |
| 551 | + | |
| 552 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 553 | + | |
| 554 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 555 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 556 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 557 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 558 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 559 | + </div> | |
| 560 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 561 | + <img src="./beauport/le_bourg_du_fleuve/plans/3_et_demi_570_pc_type_b.gif" title="Plan appartement 3½ 570 pieds carrés type b" ALT="Plan appartement 3½ 570 pieds carrés type b" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 562 | + </div> | |
| 563 | + </div> | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
| 567 | +</div> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | +<div id="groupe2"> | |
| 572 | + | |
| 573 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 574 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 575 | + <div class="bloc_infos_header_fix"> | |
| 576 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 577 | + </div> | |
| 578 | + | |
| 579 | + <div class="bloc_infos_contenu"> | |
| 580 | + | |
| 581 | + | |
| 582 | + <div class="bloc_contact"> | |
| 583 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 584 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 585 | + Écrivez-nous | |
| 586 | + </A> | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 596 | + <input type="hidden" name="LogementID" value="680"> | |
| 597 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 598 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 599 | + <br clear="all"> | |
| 600 | + | |
| 601 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 602 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 603 | + <br clear="all"> | |
| 604 | + | |
| 605 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 606 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 607 | + <br clear="all"> | |
| 608 | + | |
| 609 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 610 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 611 | + <br clear="all"> | |
| 612 | + | |
| 613 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 614 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 615 | + <br clear="all"> | |
| 616 | + | |
| 617 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 618 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 619 | + | |
| 620 | + <br clear="all"> | |
| 621 | + | |
| 622 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 623 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 624 | + | |
| 625 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 626 | + | |
| 627 | + <option value="9" style="color:#333;">Facebook</option> | |
| 628 | + | |
| 629 | + <option value="7" style="color:#333;">Référence</option> | |
| 630 | + | |
| 631 | + <option value="1" style="color:#333;">Google</option> | |
| 632 | + | |
| 633 | + <option value="5" style="color:#333;">Radio</option> | |
| 634 | + | |
| 635 | + <option value="8" style="color:#333;">Télévision</option> | |
| 636 | + | |
| 637 | + <option value="6" style="color:#333;">Affiches</option> | |
| 638 | + | |
| 639 | + </select> | |
| 640 | + <br clear="all"> | |
| 641 | + | |
| 642 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 643 | + | |
| 644 | + <br clear="all"> | |
| 645 | + <br> | |
| 646 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 647 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 648 | + </div> | |
| 649 | + <br> | |
| 650 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 651 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 652 | + </form> | |
| 653 | + </div> | |
| 654 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 655 | + </div> | |
| 656 | + | |
| 657 | + </div> | |
| 658 | + </div> | |
| 659 | + | |
| 660 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 661 | + <div id="emplacement" class="bloc_infos"> | |
| 662 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 663 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 664 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 665 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 666 | + </div> | |
| 667 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 668 | + | |
| 669 | + | |
| 670 | + | |
| 671 | + <div id="mapDiv"></div> | |
| 672 | + <script> | |
| 673 | + var adr1 = "14"; | |
| 674 | + var adr2 = "rue Francheville"; | |
| 675 | + </script> | |
| 676 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 677 | + | |
| 678 | + <A href="http://maps.apple.com/?q=46.87037,-71.17292&z=15," target="_blank"><img src="images/googlemap.png" ><div>14, rue Francheville, Beauport</div></A> | |
| 679 | + | |
| 680 | + </div> | |
| 681 | + </div> | |
| 682 | + </div> | |
| 683 | + | |
| 684 | + | |
| 685 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 686 | + <div id="services" class="bloc_infos"> | |
| 687 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 688 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 689 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 690 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 691 | + </div> | |
| 692 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 693 | + <ul> | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
| 697 | + | |
| 698 | + Immeuble de 3 étages | |
| 699 | + <DIV STYLE="padding:2px;"></DIV> | |
| 700 | + 16 logements | |
| 701 | + <DIV STYLE="padding:2px;"></DIV> | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Stationnement extérieur déneigé</li> | |
| 708 | + </ul> | |
| 709 | + | |
| 710 | + | |
| 711 | + </div> | |
| 712 | + </div> | |
| 713 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 714 | +<div id="servicesop" class="bloc_infos"> | |
| 715 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 716 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 717 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 718 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 719 | + </div> | |
| 720 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 721 | + <ul> | |
| 722 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li> | |
| 723 | + </ul> | |
| 724 | + | |
| 725 | + </div> | |
| 726 | + </div> | |
| 727 | + </div > | |
| 728 | + | |
| 729 | + <div id="notePrix"> | |
| 730 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 731 | + </div><BR> | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | +</main> | |
| 736 | + | |
| 737 | + | |
| 738 | + | |
| 739 | + | |
| 740 | +<script> | |
| 741 | + | |
| 742 | + var GoogleLat = "46.87037"; | |
| 743 | + var GoogleLn = "-71.17292"; | |
| 744 | + var adrs = "14,rue Francheville"; | |
| 745 | + var NomComplexe = "Le Bourg du Fleuve"; | |
| 746 | + | |
| 747 | +/* | |
| 748 | + function initMap() { | |
| 749 | + var mapOptions = { | |
| 750 | + zoom: 15, | |
| 751 | + center: new google.maps.LatLng(46.87037,-71.17292), | |
| 752 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 753 | + } | |
| 754 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 755 | + var image = 'images/google/marker.png'; | |
| 756 | + var image_on = 'images/google/marker_on.png'; | |
| 757 | + | |
| 758 | + var myLatLng = new google.maps.LatLng(46.87037,-71.17292); | |
| 759 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 760 | + | |
| 761 | + } | |
| 762 | +*/ | |
| 763 | + | |
| 764 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 765 | + | |
| 766 | + | |
| 767 | + function genMap(adr1,adr2){ | |
| 768 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 769 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 770 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 771 | + $("#mapDiv").html(mapadr); | |
| 772 | + } | |
| 773 | + genMap(adr1,adr2); | |
| 774 | +</script> | |
| 775 | + | |
| 776 | + | |
| 777 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 778 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 779 | + | |
| 780 | + | |
| 781 | + | |
| 782 | + </div> | |
| 783 | + | |
| 784 | + <script> | |
| 785 | + | |
| 786 | + updatePageLF(); | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + </script> | |
| 791 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | +<footer class="mainfooter"> | |
| 798 | + <div> | |
| 799 | + | |
| 800 | + <div> | |
| 801 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 802 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 803 | + <a href="notifications.php">Notifications</a> | |
| 804 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 805 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 806 | + <a href="contact.asp">Contact</a> | |
| 807 | + <br> | |
| 808 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 809 | + </div> | |
| 810 | + <div> | |
| 811 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 812 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 813 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 814 | + </div> | |
| 815 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 816 | + </div> | |
| 817 | +</footer> | |
| 818 | + | |
| 819 | + <script> | |
| 820 | + | |
| 821 | + updateLF(); | |
| 822 | + | |
| 823 | + </script> | |
| 824 | + | |
| 825 | + | |
| 826 | + </body> | |
| 827 | + | |
| 828 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/740b39f996bf963eef54.html
+828 −0
@@ -0,0 +1,828 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Cité Limoilou  Le Bourg du Maizerets : 1600, ave Ernest-Lapointe # 4 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Cité Limoilou, au Le Bourg du Maizerets : 1600, ave Ernest-Lapointe # 4 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 342 | + <div class="nomComplexeAdresse">1600, ave Ernest-Lapointe # 4</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_6.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_7.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 369 | + | |
| 370 | + <div class="cycle-pager-relative"></div> | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + </div> | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + <div id="DescriptionComplexe"> | |
| 380 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1600/maizerets_1.jpg" id="PhotoComplexePrint"> | |
| 381 | + Le complexe du Bourg du Maizerets, gagnants d'un prix Nobilis lors de sa modernisation extérieur, est situé à l'orée du futur écoquartier d'Estimauville. En voiture, en autobus ou à vélo, accédez à Saint-Roch, à Limoilou ou à la Haute-Ville en quelques instants. Le parc Maizerets, un véritable joyau à Québec, et la piste cyclable menant à la Baie de Beauport, figurent aussi parmi les meilleurs atouts de ce complexe hors du commun. | |
| 382 | + </div> | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + <TABLE class="dispos_table"> | |
| 387 | + <TR class="nomComplexePrint"> | |
| 388 | + <TD colspan="6"> | |
| 389 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 390 | + <div class="nomComplexeAdresse">1600, ave Ernest-Lapointe # 4</div> | |
| 391 | + </TD> | |
| 392 | + </TR> | |
| 393 | + <TR class="tr_header_appart"> | |
| 394 | + <TD>Grandeur</TD> | |
| 395 | + <TD>Disponibilité</TD> | |
| 396 | + <TD>Étage</TD> | |
| 397 | + <TD>Inclus</TD> | |
| 398 | + <TD>Prix</TD> | |
| 399 | + <TD>Favoris</TD> | |
| 400 | + </TR> | |
| 401 | + <TR class="dispos_tr_logement_appart"> | |
| 402 | + | |
| 403 | + <TD>3½</TD> | |
| 404 | + | |
| 405 | + <TD TITLE="Disponible 1er septembre 2026">1<SUP>er</SUP> septembre 2026</TD> | |
| 406 | + <TD TITLE="2e étage">2<SUP>e</SUP></TD> | |
| 407 | + <TD class="Inclus"> | |
| 408 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 409 | + </TD> | |
| 410 | + | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + <TD id="prix_td">990 $</TD> | |
| 415 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('507');" id='LienF_507_' onClick="compteur('LIDClic=507&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 416 | + </TR> | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | + | |
| 421 | + </TABLE> | |
| 422 | + | |
| 423 | +</div> | |
| 424 | + | |
| 425 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 426 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 427 | + <div class="bloc_infos_header_fix"> | |
| 428 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 429 | + </div> | |
| 430 | + | |
| 431 | + | |
| 432 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 433 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 434 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 435 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 436 | + Écrivez-nous | |
| 437 | + </A> | |
| 438 | + | |
| 439 | + | |
| 440 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 441 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 442 | + <input type="hidden" name="LogementID" value="507"> | |
| 443 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 444 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 445 | + <br clear="all"> | |
| 446 | + | |
| 447 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 448 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 449 | + <br clear="all"> | |
| 450 | + | |
| 451 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 452 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 453 | + <br clear="all"> | |
| 454 | + | |
| 455 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 456 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 457 | + <br clear="all"> | |
| 458 | + | |
| 459 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 460 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 461 | + <br clear="all"> | |
| 462 | + | |
| 463 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 464 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 465 | + <br clear="all"> | |
| 466 | + | |
| 467 | + | |
| 468 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 469 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 470 | + | |
| 471 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 472 | + | |
| 473 | + <option value="9" style="color:#333;">Facebook</option> | |
| 474 | + | |
| 475 | + <option value="7" style="color:#333;">Référence</option> | |
| 476 | + | |
| 477 | + <option value="1" style="color:#333;">Google</option> | |
| 478 | + | |
| 479 | + <option value="5" style="color:#333;">Radio</option> | |
| 480 | + | |
| 481 | + <option value="8" style="color:#333;">Télévision</option> | |
| 482 | + | |
| 483 | + <option value="6" style="color:#333;">Affiches</option> | |
| 484 | + | |
| 485 | + </select> | |
| 486 | + <br clear="all"> | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 491 | + <br clear="all"> | |
| 492 | + | |
| 493 | + <br clear="all"> | |
| 494 | + <div id="contourCaptcha2" > | |
| 495 | + <div id="recaptcha2" ></div> | |
| 496 | + </div> | |
| 497 | + <br> | |
| 498 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 499 | + | |
| 500 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 501 | + </form> | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + </div> | |
| 508 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 509 | + </div> | |
| 510 | + </div> | |
| 511 | + </div> | |
| 512 | + | |
| 513 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 514 | + <div id="carac_appart" class="bloc_infos"> | |
| 515 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 516 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 517 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 518 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 519 | + </div> | |
| 520 | + | |
| 521 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 522 | + | |
| 523 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 524 | + | |
| 525 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_pm.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement pm' TITLE='Ensoleillement pm'>Ensoleillement pm</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Balcon' TITLE='Balcon'>Balcon 0 pi<SUP>2</SUP></div> | |
| 530 | + | |
| 531 | +<div class='carac_icone'><IMG SRC='images/icones/insono3.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 532 | + | |
| 533 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/laveuse.png' BORDER=0 WIDTH=26 HEIGHT=30 ALT='Entrées laveuse/sécheuse incluses' TITLE='Entrées laveuse/sécheuse incluses'>Entrées laveuse/sécheuse incluses</div> | |
| 534 | + | |
| 535 | +<div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>460 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 536 | + | |
| 537 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois franc, mosaïque, tuile amiante</div> | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + </div> | |
| 544 | + </div> | |
| 545 | + </div> | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + | |
| 551 | + | |
| 552 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 553 | + | |
| 554 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 555 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 556 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 557 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 558 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 559 | + </div> | |
| 560 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 561 | + <img src="./quebec/le_bourg_du_maizeret/plans/3_et_demi_450_pc_type_hh.gif" title="Plan appartement 3½ 450 pieds carrés type h'" ALT="Plan appartement 3½ 450 pieds carrés type h'" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 562 | + </div> | |
| 563 | + </div> | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
| 567 | +</div> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | +<div id="groupe2"> | |
| 572 | + | |
| 573 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 574 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 575 | + <div class="bloc_infos_header_fix"> | |
| 576 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 577 | + </div> | |
| 578 | + | |
| 579 | + <div class="bloc_infos_contenu"> | |
| 580 | + | |
| 581 | + | |
| 582 | + <div class="bloc_contact"> | |
| 583 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 584 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 585 | + Écrivez-nous | |
| 586 | + </A> | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 596 | + <input type="hidden" name="LogementID" value="507"> | |
| 597 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 598 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 599 | + <br clear="all"> | |
| 600 | + | |
| 601 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 602 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 603 | + <br clear="all"> | |
| 604 | + | |
| 605 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 606 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 607 | + <br clear="all"> | |
| 608 | + | |
| 609 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 610 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 611 | + <br clear="all"> | |
| 612 | + | |
| 613 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 614 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 615 | + <br clear="all"> | |
| 616 | + | |
| 617 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 618 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 619 | + | |
| 620 | + <br clear="all"> | |
| 621 | + | |
| 622 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 623 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 624 | + | |
| 625 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 626 | + | |
| 627 | + <option value="9" style="color:#333;">Facebook</option> | |
| 628 | + | |
| 629 | + <option value="7" style="color:#333;">Référence</option> | |
| 630 | + | |
| 631 | + <option value="1" style="color:#333;">Google</option> | |
| 632 | + | |
| 633 | + <option value="5" style="color:#333;">Radio</option> | |
| 634 | + | |
| 635 | + <option value="8" style="color:#333;">Télévision</option> | |
| 636 | + | |
| 637 | + <option value="6" style="color:#333;">Affiches</option> | |
| 638 | + | |
| 639 | + </select> | |
| 640 | + <br clear="all"> | |
| 641 | + | |
| 642 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 643 | + | |
| 644 | + <br clear="all"> | |
| 645 | + <br> | |
| 646 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 647 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 648 | + </div> | |
| 649 | + <br> | |
| 650 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 651 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 652 | + </form> | |
| 653 | + </div> | |
| 654 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 655 | + </div> | |
| 656 | + | |
| 657 | + </div> | |
| 658 | + </div> | |
| 659 | + | |
| 660 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 661 | + <div id="emplacement" class="bloc_infos"> | |
| 662 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 663 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 664 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 665 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 666 | + </div> | |
| 667 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 668 | + | |
| 669 | + | |
| 670 | + | |
| 671 | + <div id="mapDiv"></div> | |
| 672 | + <script> | |
| 673 | + var adr1 = "1600"; | |
| 674 | + var adr2 = "ave Ernest-Lapointe"; | |
| 675 | + </script> | |
| 676 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 677 | + | |
| 678 | + <A href="http://maps.apple.com/?q=46.841011,-71.21501&z=15," target="_blank"><img src="images/googlemap.png" ><div>1600, ave Ernest-Lapointe, Cité Limoilou</div></A> | |
| 679 | + | |
| 680 | + </div> | |
| 681 | + </div> | |
| 682 | + </div> | |
| 683 | + | |
| 684 | + | |
| 685 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 686 | + <div id="services" class="bloc_infos"> | |
| 687 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 688 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 689 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 690 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 691 | + </div> | |
| 692 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 693 | + <ul> | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
| 697 | + | |
| 698 | + Immeuble de 3 étages | |
| 699 | + <DIV STYLE="padding:2px;"></DIV> | |
| 700 | + 30 logements | |
| 701 | + <DIV STYLE="padding:2px;"></DIV> | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Surveillance par caméra</li> | |
| 708 | + </ul> | |
| 709 | + | |
| 710 | + | |
| 711 | + </div> | |
| 712 | + </div> | |
| 713 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 714 | +<div id="servicesop" class="bloc_infos"> | |
| 715 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 716 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 717 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 718 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 719 | + </div> | |
| 720 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 721 | + <ul> | |
| 722 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li><li>Rangement supplémentaire<br>pour 25$ / mois</li> | |
| 723 | + </ul> | |
| 724 | + | |
| 725 | + </div> | |
| 726 | + </div> | |
| 727 | + </div > | |
| 728 | + | |
| 729 | + <div id="notePrix"> | |
| 730 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 731 | + </div><BR> | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | +</main> | |
| 736 | + | |
| 737 | + | |
| 738 | + | |
| 739 | + | |
| 740 | +<script> | |
| 741 | + | |
| 742 | + var GoogleLat = "46.841011"; | |
| 743 | + var GoogleLn = "-71.21501"; | |
| 744 | + var adrs = "1600,ave Ernest-Lapointe"; | |
| 745 | + var NomComplexe = "Le Bourg du Maizerets"; | |
| 746 | + | |
| 747 | +/* | |
| 748 | + function initMap() { | |
| 749 | + var mapOptions = { | |
| 750 | + zoom: 15, | |
| 751 | + center: new google.maps.LatLng(46.841011,-71.21501), | |
| 752 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 753 | + } | |
| 754 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 755 | + var image = 'images/google/marker.png'; | |
| 756 | + var image_on = 'images/google/marker_on.png'; | |
| 757 | + | |
| 758 | + var myLatLng = new google.maps.LatLng(46.841011,-71.21501); | |
| 759 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 760 | + | |
| 761 | + } | |
| 762 | +*/ | |
| 763 | + | |
| 764 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 765 | + | |
| 766 | + | |
| 767 | + function genMap(adr1,adr2){ | |
| 768 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 769 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 770 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 771 | + $("#mapDiv").html(mapadr); | |
| 772 | + } | |
| 773 | + genMap(adr1,adr2); | |
| 774 | +</script> | |
| 775 | + | |
| 776 | + | |
| 777 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 778 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 779 | + | |
| 780 | + | |
| 781 | + | |
| 782 | + </div> | |
| 783 | + | |
| 784 | + <script> | |
| 785 | + | |
| 786 | + updatePageLF(); | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + </script> | |
| 791 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | +<footer class="mainfooter"> | |
| 798 | + <div> | |
| 799 | + | |
| 800 | + <div> | |
| 801 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 802 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 803 | + <a href="notifications.php">Notifications</a> | |
| 804 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 805 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 806 | + <a href="contact.asp">Contact</a> | |
| 807 | + <br> | |
| 808 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 809 | + </div> | |
| 810 | + <div> | |
| 811 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 812 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 813 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 814 | + </div> | |
| 815 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 816 | + </div> | |
| 817 | +</footer> | |
| 818 | + | |
| 819 | + <script> | |
| 820 | + | |
| 821 | + updateLF(); | |
| 822 | + | |
| 823 | + </script> | |
| 824 | + | |
| 825 | + | |
| 826 | + </body> | |
| 827 | + | |
| 828 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/77243f264c0b9346c89f.html
+600 −0
@@ -0,0 +1,600 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"> | |
| 4 | +<head> | |
| 5 | + | |
| 6 | + | |
| 7 | + <meta charset="UTF-8"> | |
| 8 | + <title>Appartement Logement à louer Québec | Logisbourg</title> | |
| 9 | + | |
| 10 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 11 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 12 | +<script> | |
| 13 | + window.dataLayer = window.dataLayer || []; | |
| 14 | + function gtag(){dataLayer.push(arguments);} | |
| 15 | + gtag('js', new Date()); | |
| 16 | + | |
| 17 | + gtag('config', 'UA-13093975-1'); | |
| 18 | +</script> | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 23 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 24 | + <meta name="description" content="Liste de tous les appartements disponibles à Québec chez Logisbourg."> | |
| 25 | + <meta name="distribution" content="global"> | |
| 26 | + <meta name="robots" content="ALL"> | |
| 27 | + <meta name="subject" content="Immeuble à logements"> | |
| 28 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 29 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 30 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 31 | + <!-- Google Tag Manager --> | |
| 32 | + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 33 | + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 34 | + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 35 | + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
| 36 | + })(window,document,'script','dataLayer','GTM-M5VQDW3');</script> | |
| 37 | + <!-- End Google Tag Manager --> | |
| 38 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 39 | + <link rel="stylesheet" type="text/css" href="css/page_liste.css"> | |
| 40 | + <link rel="stylesheet" type="text/css" href="css/slider_liste.css"> | |
| 41 | + | |
| 42 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 43 | + | |
| 44 | + | |
| 45 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 46 | + | |
| 47 | + <!--[if lt IE 9]> | |
| 48 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 49 | + <![endif]--> | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | +<script> | |
| 54 | + | |
| 55 | +function updateLF() { | |
| 56 | +/* if(typeof (Storage) !== "undefined") { | |
| 57 | + var uri = localStorage.getItem('LF'); | |
| 58 | + if(uri.includes("logisant") === false){ | |
| 59 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 60 | + } | |
| 61 | + } */ | |
| 62 | +} | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + function updatePageLF() { | |
| 67 | + if(typeof(Storage) !== "undefined") { | |
| 68 | + LF = localStorage.getItem("LF"); | |
| 69 | + if (LF!=null) { | |
| 70 | + LFArray=LF.split("|") | |
| 71 | + for (i = 0; i < LFArray.length; i++) { | |
| 72 | + | |
| 73 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 74 | + | |
| 75 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 76 | + } | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + | |
| 81 | + function ajoutLF(LogementID) { | |
| 82 | + if(typeof(Storage) !== "undefined") { | |
| 83 | + LF = localStorage.getItem("LF"); | |
| 84 | + if (LF==null) LF=""; | |
| 85 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 86 | + updateLF(); | |
| 87 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 88 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 89 | + } | |
| 90 | + } | |
| 91 | + function retireLF(LogementID) { | |
| 92 | + if(typeof(Storage) !== "undefined") { | |
| 93 | + LF = localStorage.getItem("LF"); | |
| 94 | + newLF = ""; | |
| 95 | + if (LF!=null) { | |
| 96 | + LFArray=LF.split("|") | |
| 97 | + for (i = 0; i < LFArray.length; i++) { | |
| 98 | + if (LFArray[i] != "") { | |
| 99 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 100 | + else { | |
| 101 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 102 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 103 | + } | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + localStorage.setItem("LF", newLF); | |
| 108 | + updateLF(); | |
| 109 | + | |
| 110 | + } | |
| 111 | + } | |
| 112 | + | |
| 113 | +</script> | |
| 114 | + | |
| 115 | + | |
| 116 | + <script> | |
| 117 | + //CC , LIDClic , Clic | |
| 118 | + function compteur(val) { | |
| 119 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 120 | + } | |
| 121 | + </script> | |
| 122 | + | |
| 123 | + </head> | |
| 124 | + | |
| 125 | +<body> | |
| 126 | + | |
| 127 | + <div id="container"> | |
| 128 | + | |
| 129 | + | |
| 130 | + <header > | |
| 131 | + <div id="header_gauche" ></div> | |
| 132 | + <div id="header_container"> | |
| 133 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 134 | + <nav id="header_liens"> | |
| 135 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 136 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 137 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 138 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 139 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 140 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 141 | + </nav> | |
| 142 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 143 | + <div id="menu_dropdown" > | |
| 144 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 145 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 146 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 147 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 148 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 149 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 150 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 151 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 152 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 153 | + </div> | |
| 154 | + | |
| 155 | + <div id="siteposition"> | |
| 156 | + <nav id="nav_siteposition"> | |
| 157 | + <H1 >Appartements à louer Québec >> Tous ceux disponibles</H1> | |
| 158 | + </nav> | |
| 159 | + </div> | |
| 160 | + </div> | |
| 161 | + <div id="header_facebook" style="z-index:10000;"> | |
| 162 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 163 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 164 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 165 | + | |
| 166 | + </div> | |
| 167 | + | |
| 168 | + </header> | |
| 169 | + | |
| 170 | + <div id="header_print"> | |
| 171 | + <div id="header_print_date">8/8/2026</div> | |
| 172 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 173 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 174 | + <div id="header_print_titre">Appartements à louer Québec >> Tous ceux disponibles</div> | |
| 175 | + | |
| 176 | + </div> | |
| 177 | + | |
| 178 | + <script> | |
| 179 | + img1 = new Image(); | |
| 180 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 181 | + img2 = new Image(); | |
| 182 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 183 | + | |
| 184 | + </script> | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + <main class="fav"> | |
| 189 | + <BR> | |
| 190 | + | |
| 191 | + <CENTER> | |
| 192 | + | |
| 193 | + <TABLE class="dispos_table" style="margin-left:auto;margin-right:auto;"> | |
| 194 | + | |
| 195 | + <TR> | |
| 196 | + <TD colspan="11" style="text-align:center;"> | |
| 197 | + <div id="liens_tri"> | |
| 198 | + <A class="lien_tri" id="lien_tri_secteur" href="appartements-disponibles.asp?Tri=Secteur&SID=0&CID=0&GID=0&Favoris=&Mois=99&Secteur=&Complexe=" onClick="compteur('CC=LienAppartTriSecteur');return true;"> | |
| 199 | + <img src="./images/page/tri_secteur_icone.png"> | |
| 200 | + <div>Par secteur</div> | |
| 201 | + </A> | |
| 202 | + <A class="lien_tri" id="lien_tri_grandeur" href="appartements-disponibles.asp?Tri=Grandeur&SID=0&CID=0&GID=0&Favoris=&Mois=99&Secteur=&Complexe=" onClick="compteur('CC=LienAppartTriGrandeur');return true;"> | |
| 203 | + <img src="./images/page/tri_grandeur_icone.png"> | |
| 204 | + <div>Par grandeur</div> | |
| 205 | + </A> | |
| 206 | + <A class="lien_tri" id="lien_tri_dispo" href="appartements-disponibles.asp?Tri=Date&SID=0&CID=0&GID=0&Favoris=&Mois=99&Secteur=&Complexe=" onClick="compteur('CC=LienAppartTriDispo');return true;"> | |
| 207 | + <img src="./images/page/tri_dispo_icone.png"> | |
| 208 | + <div>Par disponibilité</div> | |
| 209 | + </A> | |
| 210 | + <A class="lien_tri" id="lien_tri_prix" href="appartements-disponibles.asp?Tri=Prix&SID=0&CID=0&GID=0&Favoris=&Mois=99&Secteur=&Complexe=" onClick="compteur('CC=LienAppartTriPrix');return true;"> | |
| 211 | + <img src="./images/page/tri_prix_icone.png"> | |
| 212 | + <div>Par prix</div> | |
| 213 | + </A> | |
| 214 | + </div> | |
| 215 | + | |
| 216 | + <div id="lien_tri_recherche" onClick="compteur('CC=LienAppartRecherche');self.location='appartements-disponibles.asp?CID=0&Recherche=1';"><img src="./images/page/tri_recherche_icone.png" style="vertical-align:middle;padding-right:10px;">Recherche avancée</div> | |
| 217 | + | |
| 218 | + | |
| 219 | + </TD> | |
| 220 | + </TR> | |
| 221 | + | |
| 222 | + <TR> | |
| 223 | + | |
| 224 | + <TR class="4½"><TD colspan="11" class="dispos_td_spacer"></TD></TR> | |
| 225 | + <TR class="4½"> | |
| 226 | + <TD colspan="11" class="dispos_td_complexe" STYLE="background: #CCC url(./charlesbourg/le_bourgarde/header.jpg) no-repeat left center;background-size:auto 100%;" > | |
| 227 | + <div class="nomComplexe"> | |
| 228 | + Charlesbourg / Lebourgneuf : Le Bourgarde<BR> | |
| 229 | + <div class="nomComplexeAdresse">6<SUP>e</SUP> Avenue Ouest</div> | |
| 230 | + </div> | |
| 231 | + </TD> | |
| 232 | + </TR> | |
| 233 | + | |
| 234 | + <TR class="tr_header 4½"> | |
| 235 | + | |
| 236 | + <TD>Grandeur</TD> | |
| 237 | + <TD>Disponibilité</TD> | |
| 238 | + <TD>Étage</TD> | |
| 239 | + <TD>Inclus</TD> | |
| 240 | + | |
| 241 | + <TD>Prix</TD> | |
| 242 | + <TD>Favoris</TD> | |
| 243 | + </TR> | |
| 244 | + | |
| 245 | + <TR id="tr_23_"class="dispos_tr_logement_over dispos_tr_logement secteur_1_ grandeur_4_ prix_1300_ dispo_9_" > | |
| 246 | + | |
| 247 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=1&CID=4&LID=23&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';" >4½</TD> | |
| 248 | + <TD class="DateDispo" TITLE="Disponible 1er septembre 2026" onClick="self.location='appartement.asp?SID=1&CID=4&LID=23&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';">1<SUP>er</SUP> septembre 2026</TD> | |
| 249 | + <TD class="Etage" TITLE="3e étage" onClick="self.location='appartement.asp?SID=1&CID=4&LID=23&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';">3<SUP>e</SUP></TD> | |
| 250 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=1&CID=4&LID=23&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';"> | |
| 251 | + | |
| 252 | + <IMG class="SemiMeuble" SRC="./images/trans.gif" > | |
| 253 | + <IMG class="Chauffage" SRC="images/trans.gif" > | |
| 254 | + <IMG class="EauChaude" SRC="images/trans.gif" > | |
| 255 | + <IMG class="Eclairage" SRC="images/trans.gif" > | |
| 256 | + | |
| 257 | + </TD> | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=1&CID=4&LID=23&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';">1215 $ </TD> | |
| 262 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('23');" id='LienF_23_' onClick="compteur('LIDClic=23&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 263 | + </TR> | |
| 264 | + | |
| 265 | + <TR id="tr_74_"class="dispos_tr_logement_over dispos_tr_logement secteur_1_ grandeur_4_ prix_1300_ dispo_0_" > | |
| 266 | + | |
| 267 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=1&CID=4&LID=74&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';" >4½</TD> | |
| 268 | + <TD class="DateDispo" TITLE="Disponible maintenant" onClick="self.location='appartement.asp?SID=1&CID=4&LID=74&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';">maintenant</TD> | |
| 269 | + <TD class="Etage" TITLE="3e étage" onClick="self.location='appartement.asp?SID=1&CID=4&LID=74&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';">3<SUP>e</SUP></TD> | |
| 270 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=1&CID=4&LID=74&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';"> | |
| 271 | + | |
| 272 | + <IMG class="SemiMeuble" SRC="./images/trans.gif" > | |
| 273 | + <IMG class="Chauffage" SRC="images/trans.gif" > | |
| 274 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 275 | + <IMG class="Eclairage" SRC="images/trans.gif" > | |
| 276 | + | |
| 277 | + </TD> | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=1&CID=4&LID=74&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le Bourgarde';">1240 $ </TD> | |
| 282 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('74');" id='LienF_74_' onClick="compteur('LIDClic=74&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 283 | + </TR> | |
| 284 | + | |
| 285 | + <TR class="3½"><TD colspan="11" class="dispos_td_spacer"></TD></TR> | |
| 286 | + <TR class="3½"> | |
| 287 | + <TD colspan="11" class="dispos_td_complexe" STYLE="background: #CCC url(./charlesbourg/les_terrasses_du_bourg/header.jpg) no-repeat left center;background-size:auto 100%;" > | |
| 288 | + <div class="nomComplexe"> | |
| 289 | + Charlesbourg / Lebourgneuf : Les Terrasses du Bourg<BR> | |
| 290 | + <div class="nomComplexeAdresse">7<SUP>e</SUP> Avenue Ouest</div> | |
| 291 | + </div> | |
| 292 | + </TD> | |
| 293 | + </TR> | |
| 294 | + | |
| 295 | + <TR class="tr_header 3½"> | |
| 296 | + | |
| 297 | + <TD>Grandeur</TD> | |
| 298 | + <TD>Disponibilité</TD> | |
| 299 | + <TD>Étage</TD> | |
| 300 | + <TD>Inclus</TD> | |
| 301 | + | |
| 302 | + <TD>Prix</TD> | |
| 303 | + <TD>Favoris</TD> | |
| 304 | + </TR> | |
| 305 | + | |
| 306 | + <TR id="tr_446_"class="dispos_tr_logement_over dispos_tr_logement secteur_1_ grandeur_3_ prix_1000_ dispo_9_" > | |
| 307 | + | |
| 308 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=1&CID=5&LID=446&Secteur=Charlesbourg/Lebourgneuf&Complexe=Les Terrasses du Bourg';" >3½</TD> | |
| 309 | + <TD class="DateDispo" TITLE="Disponible 1er septembre 2026" onClick="self.location='appartement.asp?SID=1&CID=5&LID=446&Secteur=Charlesbourg/Lebourgneuf&Complexe=Les Terrasses du Bourg';">1<SUP>er</SUP> septembre 2026</TD> | |
| 310 | + <TD class="Etage" TITLE="Rez-de-jardin" onClick="self.location='appartement.asp?SID=1&CID=5&LID=446&Secteur=Charlesbourg/Lebourgneuf&Complexe=Les Terrasses du Bourg';">RDJ</TD> | |
| 311 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=1&CID=5&LID=446&Secteur=Charlesbourg/Lebourgneuf&Complexe=Les Terrasses du Bourg';"> | |
| 312 | + | |
| 313 | + <IMG class="SemiMeuble" SRC="./images/trans.gif" > | |
| 314 | + <IMG class="Chauffage" SRC="images/trans.gif" > | |
| 315 | + <IMG class="EauChaude" SRC="images/trans.gif" > | |
| 316 | + <IMG class="Eclairage" SRC="images/trans.gif" > | |
| 317 | + | |
| 318 | + </TD> | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=1&CID=5&LID=446&Secteur=Charlesbourg/Lebourgneuf&Complexe=Les Terrasses du Bourg';">1000 $ </TD> | |
| 323 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('446');" id='LienF_446_' onClick="compteur('LIDClic=446&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 324 | + </TR> | |
| 325 | + | |
| 326 | + <TR class="3½"><TD colspan="11" class="dispos_td_spacer"></TD></TR> | |
| 327 | + <TR class="3½"> | |
| 328 | + <TD colspan="11" class="dispos_td_complexe" STYLE="background: #CCC url(./quebec/le_bourg_du_maizeret/header.jpg) no-repeat left center;background-size:auto 100%;" > | |
| 329 | + <div class="nomComplexe"> | |
| 330 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 331 | + <div class="nomComplexeAdresse">18<SUP>e</SUP> Rue</div> | |
| 332 | + </div> | |
| 333 | + </TD> | |
| 334 | + </TR> | |
| 335 | + | |
| 336 | + <TR class="tr_header 3½"> | |
| 337 | + | |
| 338 | + <TD>Grandeur</TD> | |
| 339 | + <TD>Disponibilité</TD> | |
| 340 | + <TD>Étage</TD> | |
| 341 | + <TD>Inclus</TD> | |
| 342 | + | |
| 343 | + <TD>Prix</TD> | |
| 344 | + <TD>Favoris</TD> | |
| 345 | + </TR> | |
| 346 | + | |
| 347 | + <TR id="tr_490_"class="dispos_tr_logement_over dispos_tr_logement secteur_2_ grandeur_3_ prix_1000_ dispo_9_" > | |
| 348 | + | |
| 349 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=2&CID=14&LID=490&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';" >3½</TD> | |
| 350 | + <TD class="DateDispo" TITLE="Disponible 1er septembre 2026" onClick="self.location='appartement.asp?SID=2&CID=14&LID=490&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">1<SUP>er</SUP> septembre 2026</TD> | |
| 351 | + <TD class="Etage" TITLE="2e étage" onClick="self.location='appartement.asp?SID=2&CID=14&LID=490&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">2<SUP>e</SUP></TD> | |
| 352 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=2&CID=14&LID=490&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';"> | |
| 353 | + | |
| 354 | + <IMG class="SemiMeuble" SRC="./images/trans.gif" > | |
| 355 | + <IMG class="Chauffage" SRC="images/trans.gif" > | |
| 356 | + <IMG class="EauChaude" SRC="images/trans.gif" > | |
| 357 | + <IMG class="Eclairage" SRC="images/trans.gif" > | |
| 358 | + | |
| 359 | + </TD> | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=2&CID=14&LID=490&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">955 $ </TD> | |
| 364 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('490');" id='LienF_490_' onClick="compteur('LIDClic=490&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 365 | + </TR> | |
| 366 | + | |
| 367 | + <TR id="tr_568_"class="dispos_tr_logement_over dispos_tr_logement secteur_2_ grandeur_3_ prix_1000_ dispo_10_" > | |
| 368 | + | |
| 369 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=2&CID=14&LID=568&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';" >3½</TD> | |
| 370 | + <TD class="DateDispo" TITLE="Disponible 1er octobre 2026" onClick="self.location='appartement.asp?SID=2&CID=14&LID=568&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">1<SUP>er</SUP> octobre 2026</TD> | |
| 371 | + <TD class="Etage" TITLE="Rez-de-jardin" onClick="self.location='appartement.asp?SID=2&CID=14&LID=568&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">RDJ</TD> | |
| 372 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=2&CID=14&LID=568&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';"> | |
| 373 | + | |
| 374 | + <IMG class="SemiMeuble" SRC="./images/icones/semimeuble.png" ALT="Poêle et réfrigérateur inclus" TITLE="Poêle et réfrigérateur inclus"> | |
| 375 | + <IMG class="Chauffage" SRC="images/icones/chauffage.png" ALT="Chauffage inclus" TITLE="Chauffage inclus"> | |
| 376 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 377 | + <IMG class="Eclairage" SRC="images/icones/eclairage.png" ALT="Électricité incluse" TITLE="Électricité incluse"> | |
| 378 | + | |
| 379 | + </TD> | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=2&CID=14&LID=568&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">955 $ </TD> | |
| 384 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('568');" id='LienF_568_' onClick="compteur('LIDClic=568&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 385 | + </TR> | |
| 386 | + | |
| 387 | + <TR id="tr_507_"class="dispos_tr_logement_over dispos_tr_logement secteur_2_ grandeur_3_ prix_1000_ dispo_9_" > | |
| 388 | + | |
| 389 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=2&CID=14&LID=507&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';" >3½</TD> | |
| 390 | + <TD class="DateDispo" TITLE="Disponible 1er septembre 2026" onClick="self.location='appartement.asp?SID=2&CID=14&LID=507&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">1<SUP>er</SUP> septembre 2026</TD> | |
| 391 | + <TD class="Etage" TITLE="2e étage" onClick="self.location='appartement.asp?SID=2&CID=14&LID=507&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">2<SUP>e</SUP></TD> | |
| 392 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=2&CID=14&LID=507&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';"> | |
| 393 | + | |
| 394 | + <IMG class="SemiMeuble" SRC="./images/trans.gif" > | |
| 395 | + <IMG class="Chauffage" SRC="images/trans.gif" > | |
| 396 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 397 | + <IMG class="Eclairage" SRC="images/trans.gif" > | |
| 398 | + | |
| 399 | + </TD> | |
| 400 | + | |
| 401 | + | |
| 402 | + | |
| 403 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=2&CID=14&LID=507&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">990 $ </TD> | |
| 404 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('507');" id='LienF_507_' onClick="compteur('LIDClic=507&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 405 | + </TR> | |
| 406 | + | |
| 407 | + <TR id="tr_519_"class="dispos_tr_logement_over dispos_tr_logement secteur_2_ grandeur_3_ prix_1000_ dispo_11_" > | |
| 408 | + | |
| 409 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=2&CID=14&LID=519&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';" >3½</TD> | |
| 410 | + <TD class="DateDispo" TITLE="Disponible 1er novembre 2026" onClick="self.location='appartement.asp?SID=2&CID=14&LID=519&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">1<SUP>er</SUP> novembre 2026</TD> | |
| 411 | + <TD class="Etage" TITLE="2e étage" onClick="self.location='appartement.asp?SID=2&CID=14&LID=519&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">2<SUP>e</SUP></TD> | |
| 412 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=2&CID=14&LID=519&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';"> | |
| 413 | + | |
| 414 | + <IMG class="SemiMeuble" SRC="./images/trans.gif" > | |
| 415 | + <IMG class="Chauffage" SRC="images/trans.gif" > | |
| 416 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 417 | + <IMG class="Eclairage" SRC="images/trans.gif" > | |
| 418 | + | |
| 419 | + </TD> | |
| 420 | + | |
| 421 | + | |
| 422 | + | |
| 423 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=2&CID=14&LID=519&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">990 $ </TD> | |
| 424 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('519');" id='LienF_519_' onClick="compteur('LIDClic=519&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 425 | + </TR> | |
| 426 | + | |
| 427 | + <TR id="tr_602_"class="dispos_tr_logement_over dispos_tr_logement secteur_2_ grandeur_3_ prix_1000_ dispo_0_" > | |
| 428 | + | |
| 429 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=2&CID=14&LID=602&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';" >3½</TD> | |
| 430 | + <TD class="DateDispo" TITLE="Disponible maintenant" onClick="self.location='appartement.asp?SID=2&CID=14&LID=602&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">maintenant</TD> | |
| 431 | + <TD class="Etage" TITLE="3e étage" onClick="self.location='appartement.asp?SID=2&CID=14&LID=602&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">3<SUP>e</SUP></TD> | |
| 432 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=2&CID=14&LID=602&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';"> | |
| 433 | + | |
| 434 | + <IMG class="SemiMeuble" SRC="./images/icones/semimeuble.png" ALT="Poêle et réfrigérateur inclus" TITLE="Poêle et réfrigérateur inclus"> | |
| 435 | + <IMG class="Chauffage" SRC="images/icones/chauffage.png" ALT="Chauffage inclus" TITLE="Chauffage inclus"> | |
| 436 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 437 | + <IMG class="Eclairage" SRC="images/icones/eclairage.png" ALT="Électricité incluse" TITLE="Électricité incluse"> | |
| 438 | + | |
| 439 | + </TD> | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
| 443 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=2&CID=14&LID=602&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">1000 $ </TD> | |
| 444 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('602');" id='LienF_602_' onClick="compteur('LIDClic=602&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 445 | + </TR> | |
| 446 | + | |
| 447 | + <TR id="tr_597_"class="dispos_tr_logement_over dispos_tr_logement secteur_2_ grandeur_4_ prix_1200_ dispo_0_" > | |
| 448 | + | |
| 449 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=2&CID=14&LID=597&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';" >4½</TD> | |
| 450 | + <TD class="DateDispo" TITLE="Disponible maintenant" onClick="self.location='appartement.asp?SID=2&CID=14&LID=597&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">maintenant</TD> | |
| 451 | + <TD class="Etage" TITLE="3e étage" onClick="self.location='appartement.asp?SID=2&CID=14&LID=597&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">3<SUP>e</SUP></TD> | |
| 452 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=2&CID=14&LID=597&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';"> | |
| 453 | + | |
| 454 | + <IMG class="SemiMeuble" SRC="./images/trans.gif" > | |
| 455 | + <IMG class="Chauffage" SRC="images/icones/chauffage.png" ALT="Chauffage inclus" TITLE="Chauffage inclus"> | |
| 456 | + <IMG class="EauChaude" SRC="images/icones/eau_chaude.png" ALT="Eau chaude incluse" TITLE="Eau chaude incluse"> | |
| 457 | + <IMG class="Eclairage" SRC="images/icones/eclairage.png" ALT="Électricité incluse" TITLE="Électricité incluse"> | |
| 458 | + | |
| 459 | + </TD> | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=2&CID=14&LID=597&Secteur=Cité Limoilou&Complexe=Le Bourg du Maizerets';">1180 $ </TD> | |
| 464 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('597');" id='LienF_597_' onClick="compteur('LIDClic=597&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 465 | + </TR> | |
| 466 | + | |
| 467 | + <TR class="3½"><TD colspan="11" class="dispos_td_spacer"></TD></TR> | |
| 468 | + <TR class="3½"> | |
| 469 | + <TD colspan="11" class="dispos_td_complexe" STYLE="background: #CCC url(./beauport/le_bourg_du_fleuve/header.jpg) no-repeat left center;background-size:auto 100%;" > | |
| 470 | + <div class="nomComplexe"> | |
| 471 | + Beauport : Le Bourg du Fleuve<BR> | |
| 472 | + <div class="nomComplexeAdresse">rue Francheville</div> | |
| 473 | + </div> | |
| 474 | + </TD> | |
| 475 | + </TR> | |
| 476 | + | |
| 477 | + <TR class="tr_header 3½"> | |
| 478 | + | |
| 479 | + <TD>Grandeur</TD> | |
| 480 | + <TD>Disponibilité</TD> | |
| 481 | + <TD>Étage</TD> | |
| 482 | + <TD>Inclus</TD> | |
| 483 | + | |
| 484 | + <TD>Prix</TD> | |
| 485 | + <TD>Favoris</TD> | |
| 486 | + </TR> | |
| 487 | + | |
| 488 | + <TR id="tr_680_"class="dispos_tr_logement_over dispos_tr_logement secteur_3_ grandeur_3_ prix_1100_ dispo_10_" > | |
| 489 | + | |
| 490 | + <TD class="Grandeur" onClick="self.location='appartement.asp?SID=3&CID=15&LID=680&Secteur=Beauport&Complexe=Le Bourg du Fleuve';" >3½</TD> | |
| 491 | + <TD class="DateDispo" TITLE="Disponible 1er octobre 2026" onClick="self.location='appartement.asp?SID=3&CID=15&LID=680&Secteur=Beauport&Complexe=Le Bourg du Fleuve';">1<SUP>er</SUP> octobre 2026</TD> | |
| 492 | + <TD class="Etage" TITLE="2e étage" onClick="self.location='appartement.asp?SID=3&CID=15&LID=680&Secteur=Beauport&Complexe=Le Bourg du Fleuve';">2<SUP>e</SUP></TD> | |
| 493 | + <TD class="Inclus" onClick="self.location='appartement.asp?SID=3&CID=15&LID=680&Secteur=Beauport&Complexe=Le Bourg du Fleuve';"> | |
| 494 | + | |
| 495 | + <IMG class="SemiMeuble" SRC="./images/trans.gif" > | |
| 496 | + <IMG class="Chauffage" SRC="images/trans.gif" > | |
| 497 | + <IMG class="EauChaude" SRC="images/trans.gif" > | |
| 498 | + <IMG class="Eclairage" SRC="images/trans.gif" > | |
| 499 | + | |
| 500 | + </TD> | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + <TD class="Prix" STYLE="background-color:#565656;color:#FFF;" onClick="self.location='appartement.asp?SID=3&CID=15&LID=680&Secteur=Beauport&Complexe=Le Bourg du Fleuve';">1020 $ </TD> | |
| 505 | + <TD class="Favoris" STYLE="border-left:0;"><A href="JavaScript:ajoutLF('680');" id='LienF_680_' onClick="compteur('LIDClic=680&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 506 | + </TR> | |
| 507 | + | |
| 508 | + </TABLE> | |
| 509 | + <BR><BR> | |
| 510 | + <div id="notePrix"> | |
| 511 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 512 | + </div> | |
| 513 | + | |
| 514 | + | |
| 515 | +<br> | |
| 516 | +<br> | |
| 517 | +<br> | |
| 518 | +<br> | |
| 519 | +<br> | |
| 520 | +<br> | |
| 521 | +<br> | |
| 522 | +<br> | |
| 523 | +<br> | |
| 524 | +<br> | |
| 525 | + | |
| 526 | + </main> | |
| 527 | +<br> | |
| 528 | +<br><br> | |
| 529 | +<br> | |
| 530 | +<br> | |
| 531 | + | |
| 532 | +<br> | |
| 533 | +<br> | |
| 534 | +<br> | |
| 535 | +<br> | |
| 536 | +<br> | |
| 537 | +<br> | |
| 538 | +<br> | |
| 539 | +<br> | |
| 540 | +<br> | |
| 541 | +<br> | |
| 542 | +<br> | |
| 543 | +<br> | |
| 544 | +<br> | |
| 545 | + <br> | |
| 546 | +<br> | |
| 547 | +<br> | |
| 548 | +<br> | |
| 549 | +<br> | |
| 550 | +<br> | |
| 551 | +<br> | |
| 552 | +<br> | |
| 553 | + | |
| 554 | + | |
| 555 | + | |
| 556 | + | |
| 557 | +<footer class="mainfooter"> | |
| 558 | + <div> | |
| 559 | + | |
| 560 | + <div> | |
| 561 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 562 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 563 | + <a href="notifications.php">Notifications</a> | |
| 564 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 565 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 566 | + <a href="contact.asp">Contact</a> | |
| 567 | + <br> | |
| 568 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 569 | + </div> | |
| 570 | + <div> | |
| 571 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 572 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 573 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 574 | + </div> | |
| 575 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 576 | + </div> | |
| 577 | +</footer> | |
| 578 | + | |
| 579 | + <script> | |
| 580 | + | |
| 581 | + updateLF(); | |
| 582 | + | |
| 583 | + </script> | |
| 584 | + | |
| 585 | + | |
| 586 | + <script> | |
| 587 | + | |
| 588 | + updatePageLF(); | |
| 589 | + | |
| 590 | + </script> | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + </div> | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + </body> | |
| 600 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/7c25921a2e6877cf2d16.html
+824 −0
@@ -0,0 +1,824 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Cité Limoilou  Le Bourg du Maizerets : 2335, 18<SUP>e</SUP> Rue # 5 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Cité Limoilou, au Le Bourg du Maizerets : 2335, 18<SUP>e</SUP> Rue # 5 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 342 | + <div class="nomComplexeAdresse">2335, 18<SUP>e</SUP> Rue # 5</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/2335/2335_18e_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/2335/2335_18e_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/2335/2335_18e_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/2335/2335_18e_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <div class="cycle-pager-relative"></div> | |
| 365 | + </div> | |
| 366 | + | |
| 367 | + </div> | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + <div id="DescriptionComplexe"> | |
| 374 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/2335/2335_18e_1.jpg" id="PhotoComplexePrint"> | |
| 375 | + Le complexe du Bourg du Maizerets, gagnants d'un prix Nobilis lors de sa modernisation extérieur, est situé à l'orée du futur écoquartier d'Estimauville. En voiture, en autobus ou à vélo, accédez à Saint-Roch, à Limoilou ou à la Haute-Ville en quelques instants. Le parc Maizerets, un véritable joyau à Québec, et la piste cyclable menant à la Baie de Beauport, figurent aussi parmi les meilleurs atouts de ce complexe hors du commun. | |
| 376 | + </div> | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + <TABLE class="dispos_table"> | |
| 381 | + <TR class="nomComplexePrint"> | |
| 382 | + <TD colspan="6"> | |
| 383 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 384 | + <div class="nomComplexeAdresse">2335, 18<SUP>e</SUP> Rue # 5</div> | |
| 385 | + </TD> | |
| 386 | + </TR> | |
| 387 | + <TR class="tr_header_appart"> | |
| 388 | + <TD>Grandeur</TD> | |
| 389 | + <TD>Disponibilité</TD> | |
| 390 | + <TD>Étage</TD> | |
| 391 | + <TD>Inclus</TD> | |
| 392 | + <TD>Prix</TD> | |
| 393 | + <TD>Favoris</TD> | |
| 394 | + </TR> | |
| 395 | + <TR class="dispos_tr_logement_appart"> | |
| 396 | + | |
| 397 | + <TD>3½</TD> | |
| 398 | + | |
| 399 | + <TD TITLE="Disponible 1er septembre 2026">1<SUP>er</SUP> septembre 2026</TD> | |
| 400 | + <TD TITLE="2e étage">2<SUP>e</SUP></TD> | |
| 401 | + <TD class="Inclus"> | |
| 402 | + | |
| 403 | + </TD> | |
| 404 | + | |
| 405 | + | |
| 406 | + | |
| 407 | + | |
| 408 | + <TD id="prix_td">955 $</TD> | |
| 409 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('490');" id='LienF_490_' onClick="compteur('LIDClic=490&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 410 | + </TR> | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + | |
| 415 | + </TABLE> | |
| 416 | + | |
| 417 | +</div> | |
| 418 | + | |
| 419 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 420 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 421 | + <div class="bloc_infos_header_fix"> | |
| 422 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 423 | + </div> | |
| 424 | + | |
| 425 | + | |
| 426 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 427 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 428 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 429 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 430 | + Écrivez-nous | |
| 431 | + </A> | |
| 432 | + | |
| 433 | + | |
| 434 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 435 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 436 | + <input type="hidden" name="LogementID" value="490"> | |
| 437 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 438 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 439 | + <br clear="all"> | |
| 440 | + | |
| 441 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 442 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 443 | + <br clear="all"> | |
| 444 | + | |
| 445 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 446 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 447 | + <br clear="all"> | |
| 448 | + | |
| 449 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 450 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 451 | + <br clear="all"> | |
| 452 | + | |
| 453 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 454 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 455 | + <br clear="all"> | |
| 456 | + | |
| 457 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 458 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 459 | + <br clear="all"> | |
| 460 | + | |
| 461 | + | |
| 462 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 463 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 464 | + | |
| 465 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 466 | + | |
| 467 | + <option value="9" style="color:#333;">Facebook</option> | |
| 468 | + | |
| 469 | + <option value="7" style="color:#333;">Référence</option> | |
| 470 | + | |
| 471 | + <option value="1" style="color:#333;">Google</option> | |
| 472 | + | |
| 473 | + <option value="5" style="color:#333;">Radio</option> | |
| 474 | + | |
| 475 | + <option value="8" style="color:#333;">Télévision</option> | |
| 476 | + | |
| 477 | + <option value="6" style="color:#333;">Affiches</option> | |
| 478 | + | |
| 479 | + </select> | |
| 480 | + <br clear="all"> | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 485 | + <br clear="all"> | |
| 486 | + | |
| 487 | + <br clear="all"> | |
| 488 | + <div id="contourCaptcha2" > | |
| 489 | + <div id="recaptcha2" ></div> | |
| 490 | + </div> | |
| 491 | + <br> | |
| 492 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 493 | + | |
| 494 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 495 | + </form> | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + </div> | |
| 502 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 503 | + </div> | |
| 504 | + </div> | |
| 505 | + </div> | |
| 506 | + | |
| 507 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 508 | + <div id="carac_appart" class="bloc_infos"> | |
| 509 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 510 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 511 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 512 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 513 | + </div> | |
| 514 | + | |
| 515 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 516 | + | |
| 517 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 518 | + | |
| 519 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_pm.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement pm' TITLE='Ensoleillement pm'>Ensoleillement pm</div> | |
| 520 | + | |
| 521 | +<div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/renove.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='100 % rénové' TITLE='100 % rénové'><div class='carac_icone_inclus2'>100 % rénové</div></div> | |
| 522 | + | |
| 523 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 524 | + | |
| 525 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Balcon' TITLE='Balcon'>Balcon 50 pi<SUP>2</SUP></div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/insono3.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 528 | + | |
| 529 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/laveuse.png' BORDER=0 WIDTH=26 HEIGHT=30 ALT='Entrées laveuse/sécheuse incluses' TITLE='Entrées laveuse/sécheuse incluses'>Entrées laveuse/sécheuse incluses</div> | |
| 530 | + | |
| 531 | +<div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>450 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 532 | + | |
| 533 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois franc, céramique</div> | |
| 534 | + | |
| 535 | + | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + </div> | |
| 540 | + </div> | |
| 541 | + </div> | |
| 542 | + | |
| 543 | + | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
| 547 | + | |
| 548 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 549 | + | |
| 550 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 551 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 552 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 553 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 554 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 555 | + </div> | |
| 556 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 557 | + <img src="./quebec/le_bourg_du_maizeret/plans/2335_app_5.png" title="Plan appartement 2335, app 5" ALT="Plan appartement 2335, app 5" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 558 | + </div> | |
| 559 | + </div> | |
| 560 | + | |
| 561 | + | |
| 562 | + | |
| 563 | +</div> | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
| 567 | +<div id="groupe2"> | |
| 568 | + | |
| 569 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 570 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 571 | + <div class="bloc_infos_header_fix"> | |
| 572 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 573 | + </div> | |
| 574 | + | |
| 575 | + <div class="bloc_infos_contenu"> | |
| 576 | + | |
| 577 | + | |
| 578 | + <div class="bloc_contact"> | |
| 579 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 580 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 581 | + Écrivez-nous | |
| 582 | + </A> | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 592 | + <input type="hidden" name="LogementID" value="490"> | |
| 593 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 594 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 595 | + <br clear="all"> | |
| 596 | + | |
| 597 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 598 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 599 | + <br clear="all"> | |
| 600 | + | |
| 601 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 602 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 603 | + <br clear="all"> | |
| 604 | + | |
| 605 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 606 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 607 | + <br clear="all"> | |
| 608 | + | |
| 609 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 610 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 611 | + <br clear="all"> | |
| 612 | + | |
| 613 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 614 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 615 | + | |
| 616 | + <br clear="all"> | |
| 617 | + | |
| 618 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 619 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 620 | + | |
| 621 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 622 | + | |
| 623 | + <option value="9" style="color:#333;">Facebook</option> | |
| 624 | + | |
| 625 | + <option value="7" style="color:#333;">Référence</option> | |
| 626 | + | |
| 627 | + <option value="1" style="color:#333;">Google</option> | |
| 628 | + | |
| 629 | + <option value="5" style="color:#333;">Radio</option> | |
| 630 | + | |
| 631 | + <option value="8" style="color:#333;">Télévision</option> | |
| 632 | + | |
| 633 | + <option value="6" style="color:#333;">Affiches</option> | |
| 634 | + | |
| 635 | + </select> | |
| 636 | + <br clear="all"> | |
| 637 | + | |
| 638 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 639 | + | |
| 640 | + <br clear="all"> | |
| 641 | + <br> | |
| 642 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 643 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 644 | + </div> | |
| 645 | + <br> | |
| 646 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 647 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 648 | + </form> | |
| 649 | + </div> | |
| 650 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 651 | + </div> | |
| 652 | + | |
| 653 | + </div> | |
| 654 | + </div> | |
| 655 | + | |
| 656 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 657 | + <div id="emplacement" class="bloc_infos"> | |
| 658 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 659 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 660 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 661 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 662 | + </div> | |
| 663 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 664 | + | |
| 665 | + | |
| 666 | + | |
| 667 | + <div id="mapDiv"></div> | |
| 668 | + <script> | |
| 669 | + var adr1 = "2335"; | |
| 670 | + var adr2 = "18<SUP>e</SUP> Rue"; | |
| 671 | + </script> | |
| 672 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 673 | + | |
| 674 | + <A href="http://maps.apple.com/?q=46.841908,-71.216944&z=15," target="_blank"><img src="images/googlemap.png" ><div>2335, 18<SUP>e</SUP> Rue, Cité Limoilou</div></A> | |
| 675 | + | |
| 676 | + </div> | |
| 677 | + </div> | |
| 678 | + </div> | |
| 679 | + | |
| 680 | + | |
| 681 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 682 | + <div id="services" class="bloc_infos"> | |
| 683 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 684 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 685 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 686 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 687 | + </div> | |
| 688 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 689 | + <ul> | |
| 690 | + | |
| 691 | + | |
| 692 | + | |
| 693 | + | |
| 694 | + Immeuble de 3 étages | |
| 695 | + <DIV STYLE="padding:2px;"></DIV> | |
| 696 | + 18 logements | |
| 697 | + <DIV STYLE="padding:2px;"></DIV> | |
| 698 | + | |
| 699 | + | |
| 700 | + | |
| 701 | + | |
| 702 | + | |
| 703 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Surveillance par caméra</li> | |
| 704 | + </ul> | |
| 705 | + | |
| 706 | + | |
| 707 | + </div> | |
| 708 | + </div> | |
| 709 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 710 | +<div id="servicesop" class="bloc_infos"> | |
| 711 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 712 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 713 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 714 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 715 | + </div> | |
| 716 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 717 | + <ul> | |
| 718 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li><li>Rangement supplémentaire<br>pour 25$ / mois</li> | |
| 719 | + </ul> | |
| 720 | + | |
| 721 | + </div> | |
| 722 | + </div> | |
| 723 | + </div > | |
| 724 | + | |
| 725 | + <div id="notePrix"> | |
| 726 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 727 | + </div><BR> | |
| 728 | + | |
| 729 | + | |
| 730 | + | |
| 731 | +</main> | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | + | |
| 736 | +<script> | |
| 737 | + | |
| 738 | + var GoogleLat = "46.841908"; | |
| 739 | + var GoogleLn = "-71.216944"; | |
| 740 | + var adrs = "2335,18<SUP>e</SUP> Rue"; | |
| 741 | + var NomComplexe = "Le Bourg du Maizerets"; | |
| 742 | + | |
| 743 | +/* | |
| 744 | + function initMap() { | |
| 745 | + var mapOptions = { | |
| 746 | + zoom: 15, | |
| 747 | + center: new google.maps.LatLng(46.841908,-71.216944), | |
| 748 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 749 | + } | |
| 750 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 751 | + var image = 'images/google/marker.png'; | |
| 752 | + var image_on = 'images/google/marker_on.png'; | |
| 753 | + | |
| 754 | + var myLatLng = new google.maps.LatLng(46.841908,-71.216944); | |
| 755 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 756 | + | |
| 757 | + } | |
| 758 | +*/ | |
| 759 | + | |
| 760 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 761 | + | |
| 762 | + | |
| 763 | + function genMap(adr1,adr2){ | |
| 764 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 765 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 766 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 767 | + $("#mapDiv").html(mapadr); | |
| 768 | + } | |
| 769 | + genMap(adr1,adr2); | |
| 770 | +</script> | |
| 771 | + | |
| 772 | + | |
| 773 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 774 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 775 | + | |
| 776 | + | |
| 777 | + | |
| 778 | + </div> | |
| 779 | + | |
| 780 | + <script> | |
| 781 | + | |
| 782 | + updatePageLF(); | |
| 783 | + | |
| 784 | + | |
| 785 | + | |
| 786 | + </script> | |
| 787 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 788 | + | |
| 789 | + | |
| 790 | + | |
| 791 | + | |
| 792 | + | |
| 793 | +<footer class="mainfooter"> | |
| 794 | + <div> | |
| 795 | + | |
| 796 | + <div> | |
| 797 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 798 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 799 | + <a href="notifications.php">Notifications</a> | |
| 800 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 801 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 802 | + <a href="contact.asp">Contact</a> | |
| 803 | + <br> | |
| 804 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 805 | + </div> | |
| 806 | + <div> | |
| 807 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 808 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 809 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 810 | + </div> | |
| 811 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 812 | + </div> | |
| 813 | +</footer> | |
| 814 | + | |
| 815 | + <script> | |
| 816 | + | |
| 817 | + updateLF(); | |
| 818 | + | |
| 819 | + </script> | |
| 820 | + | |
| 821 | + | |
| 822 | + </body> | |
| 823 | + | |
| 824 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/9f6f8b846e4607e1a966.html
+826 −0
@@ -0,0 +1,826 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Cité Limoilou  Le Bourg du Maizerets : 1700, ave Ernest-Lapointe # 103 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Cité Limoilou, au Le Bourg du Maizerets : 1700, ave Ernest-Lapointe # 103 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 342 | + <div class="nomComplexeAdresse">1700, ave Ernest-Lapointe # 103</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_6.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_7.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 369 | + | |
| 370 | + <div class="cycle-pager-relative"></div> | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + </div> | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + <div id="DescriptionComplexe"> | |
| 380 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_1.jpg" id="PhotoComplexePrint"> | |
| 381 | + Le complexe du Bourg du Maizerets, gagnants d'un prix Nobilis lors de sa modernisation extérieur, est situé à l'orée du futur écoquartier d'Estimauville. En voiture, en autobus ou à vélo, accédez à Saint-Roch, à Limoilou ou à la Haute-Ville en quelques instants. Le parc Maizerets, un véritable joyau à Québec, et la piste cyclable menant à la Baie de Beauport, figurent aussi parmi les meilleurs atouts de ce complexe hors du commun. | |
| 382 | + </div> | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + <TABLE class="dispos_table"> | |
| 387 | + <TR class="nomComplexePrint"> | |
| 388 | + <TD colspan="6"> | |
| 389 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 390 | + <div class="nomComplexeAdresse">1700, ave Ernest-Lapointe # 103</div> | |
| 391 | + </TD> | |
| 392 | + </TR> | |
| 393 | + <TR class="tr_header_appart"> | |
| 394 | + <TD>Grandeur</TD> | |
| 395 | + <TD>Disponibilité</TD> | |
| 396 | + <TD>Étage</TD> | |
| 397 | + <TD>Inclus</TD> | |
| 398 | + <TD>Prix</TD> | |
| 399 | + <TD>Favoris</TD> | |
| 400 | + </TR> | |
| 401 | + <TR class="dispos_tr_logement_appart"> | |
| 402 | + | |
| 403 | + <TD>3½</TD> | |
| 404 | + | |
| 405 | + <TD TITLE="Disponible 1er octobre 2026">1<SUP>er</SUP> octobre 2026</TD> | |
| 406 | + <TD TITLE="Rez-de-jardin">RDJ</TD> | |
| 407 | + <TD class="Inclus"> | |
| 408 | + <IMG class="SemiMeuble" SRC="./images/icones/semimeuble.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Poêle et réfrigérateur inclus" TITLE="Poêle et réfrigérateur inclus"><IMG class="Chauffage" SRC="images/icones/chauffage.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Chauffage inclus" TITLE="Chauffage inclus"><IMG class="EauChaude" SRC="images/icones/eau_chaude.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Eau chaude incluse" TITLE="Eau chaude incluse"><IMG class="Eclairage" SRC="images/icones/eclairage.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Électricité incluse" TITLE="Électricité incluse"> | |
| 409 | + </TD> | |
| 410 | + | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + <TD id="prix_td">955 $</TD> | |
| 415 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('568');" id='LienF_568_' onClick="compteur('LIDClic=568&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 416 | + </TR> | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | + | |
| 421 | + </TABLE> | |
| 422 | + | |
| 423 | +</div> | |
| 424 | + | |
| 425 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 426 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 427 | + <div class="bloc_infos_header_fix"> | |
| 428 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 429 | + </div> | |
| 430 | + | |
| 431 | + | |
| 432 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 433 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 434 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 435 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 436 | + Écrivez-nous | |
| 437 | + </A> | |
| 438 | + | |
| 439 | + | |
| 440 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 441 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 442 | + <input type="hidden" name="LogementID" value="568"> | |
| 443 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 444 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 445 | + <br clear="all"> | |
| 446 | + | |
| 447 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 448 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 449 | + <br clear="all"> | |
| 450 | + | |
| 451 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 452 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 453 | + <br clear="all"> | |
| 454 | + | |
| 455 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 456 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 457 | + <br clear="all"> | |
| 458 | + | |
| 459 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 460 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 461 | + <br clear="all"> | |
| 462 | + | |
| 463 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 464 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 465 | + <br clear="all"> | |
| 466 | + | |
| 467 | + | |
| 468 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 469 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 470 | + | |
| 471 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 472 | + | |
| 473 | + <option value="9" style="color:#333;">Facebook</option> | |
| 474 | + | |
| 475 | + <option value="7" style="color:#333;">Référence</option> | |
| 476 | + | |
| 477 | + <option value="1" style="color:#333;">Google</option> | |
| 478 | + | |
| 479 | + <option value="5" style="color:#333;">Radio</option> | |
| 480 | + | |
| 481 | + <option value="8" style="color:#333;">Télévision</option> | |
| 482 | + | |
| 483 | + <option value="6" style="color:#333;">Affiches</option> | |
| 484 | + | |
| 485 | + </select> | |
| 486 | + <br clear="all"> | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 491 | + <br clear="all"> | |
| 492 | + | |
| 493 | + <br clear="all"> | |
| 494 | + <div id="contourCaptcha2" > | |
| 495 | + <div id="recaptcha2" ></div> | |
| 496 | + </div> | |
| 497 | + <br> | |
| 498 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 499 | + | |
| 500 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 501 | + </form> | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + </div> | |
| 508 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 509 | + </div> | |
| 510 | + </div> | |
| 511 | + </div> | |
| 512 | + | |
| 513 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 514 | + <div id="carac_appart" class="bloc_infos"> | |
| 515 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 516 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 517 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 518 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 519 | + </div> | |
| 520 | + | |
| 521 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 522 | + | |
| 523 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 524 | + | |
| 525 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_am.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement am' TITLE='Ensoleillement am'>Ensoleillement am</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Terrasse' TITLE='Terrasse'>Terrasse</div> | |
| 530 | + | |
| 531 | +<div class='carac_icone'><IMG SRC='images/icones/insono2.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 532 | + | |
| 533 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>400 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 534 | + | |
| 535 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Céramique</div> | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + </div> | |
| 542 | + </div> | |
| 543 | + </div> | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 551 | + | |
| 552 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 553 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 554 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 555 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 556 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 557 | + </div> | |
| 558 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 559 | + <img src="./quebec/le_bourg_du_maizeret/plans/1700_app_103.gif" title="Plan appartement 1700, app 103" ALT="Plan appartement 1700, app 103" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 560 | + </div> | |
| 561 | + </div> | |
| 562 | + | |
| 563 | + | |
| 564 | + | |
| 565 | +</div> | |
| 566 | + | |
| 567 | + | |
| 568 | + | |
| 569 | +<div id="groupe2"> | |
| 570 | + | |
| 571 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 572 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 573 | + <div class="bloc_infos_header_fix"> | |
| 574 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 575 | + </div> | |
| 576 | + | |
| 577 | + <div class="bloc_infos_contenu"> | |
| 578 | + | |
| 579 | + | |
| 580 | + <div class="bloc_contact"> | |
| 581 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 582 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 583 | + Écrivez-nous | |
| 584 | + </A> | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 594 | + <input type="hidden" name="LogementID" value="568"> | |
| 595 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 596 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 597 | + <br clear="all"> | |
| 598 | + | |
| 599 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 600 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 601 | + <br clear="all"> | |
| 602 | + | |
| 603 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 604 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 605 | + <br clear="all"> | |
| 606 | + | |
| 607 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 608 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 609 | + <br clear="all"> | |
| 610 | + | |
| 611 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 612 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 613 | + <br clear="all"> | |
| 614 | + | |
| 615 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 616 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 617 | + | |
| 618 | + <br clear="all"> | |
| 619 | + | |
| 620 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 621 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 622 | + | |
| 623 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 624 | + | |
| 625 | + <option value="9" style="color:#333;">Facebook</option> | |
| 626 | + | |
| 627 | + <option value="7" style="color:#333;">Référence</option> | |
| 628 | + | |
| 629 | + <option value="1" style="color:#333;">Google</option> | |
| 630 | + | |
| 631 | + <option value="5" style="color:#333;">Radio</option> | |
| 632 | + | |
| 633 | + <option value="8" style="color:#333;">Télévision</option> | |
| 634 | + | |
| 635 | + <option value="6" style="color:#333;">Affiches</option> | |
| 636 | + | |
| 637 | + </select> | |
| 638 | + <br clear="all"> | |
| 639 | + | |
| 640 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 641 | + | |
| 642 | + <br clear="all"> | |
| 643 | + <br> | |
| 644 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 645 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 646 | + </div> | |
| 647 | + <br> | |
| 648 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 649 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 650 | + </form> | |
| 651 | + </div> | |
| 652 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 653 | + </div> | |
| 654 | + | |
| 655 | + </div> | |
| 656 | + </div> | |
| 657 | + | |
| 658 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 659 | + <div id="emplacement" class="bloc_infos"> | |
| 660 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 661 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 662 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 663 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 664 | + </div> | |
| 665 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 666 | + | |
| 667 | + | |
| 668 | + | |
| 669 | + <div id="mapDiv"></div> | |
| 670 | + <script> | |
| 671 | + var adr1 = "1700"; | |
| 672 | + var adr2 = "ave Ernest-Lapointe"; | |
| 673 | + </script> | |
| 674 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 675 | + | |
| 676 | + <A href="http://maps.apple.com/?q=46.841726,-71.215989&z=15," target="_blank"><img src="images/googlemap.png" ><div>1700, ave Ernest-Lapointe, Cité Limoilou</div></A> | |
| 677 | + | |
| 678 | + </div> | |
| 679 | + </div> | |
| 680 | + </div> | |
| 681 | + | |
| 682 | + | |
| 683 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 684 | + <div id="services" class="bloc_infos"> | |
| 685 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 686 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 687 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 688 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 689 | + </div> | |
| 690 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 691 | + <ul> | |
| 692 | + | |
| 693 | + | |
| 694 | + | |
| 695 | + | |
| 696 | + Immeuble de 3 étages | |
| 697 | + <DIV STYLE="padding:2px;"></DIV> | |
| 698 | + 41 logements | |
| 699 | + <DIV STYLE="padding:2px;"></DIV> | |
| 700 | + | |
| 701 | + | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Buanderie libre service</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Surveillance par caméra</li> | |
| 706 | + </ul> | |
| 707 | + | |
| 708 | + | |
| 709 | + </div> | |
| 710 | + </div> | |
| 711 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 712 | +<div id="servicesop" class="bloc_infos"> | |
| 713 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 714 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 715 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 716 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 717 | + </div> | |
| 718 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 719 | + <ul> | |
| 720 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li><li>Rangement supplémentaire<br>pour 25$ / mois</li> | |
| 721 | + </ul> | |
| 722 | + | |
| 723 | + </div> | |
| 724 | + </div> | |
| 725 | + </div > | |
| 726 | + | |
| 727 | + <div id="notePrix"> | |
| 728 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 729 | + </div><BR> | |
| 730 | + | |
| 731 | + | |
| 732 | + | |
| 733 | +</main> | |
| 734 | + | |
| 735 | + | |
| 736 | + | |
| 737 | + | |
| 738 | +<script> | |
| 739 | + | |
| 740 | + var GoogleLat = "46.841726"; | |
| 741 | + var GoogleLn = "-71.215989"; | |
| 742 | + var adrs = "1700,ave Ernest-Lapointe"; | |
| 743 | + var NomComplexe = "Le Bourg du Maizerets"; | |
| 744 | + | |
| 745 | +/* | |
| 746 | + function initMap() { | |
| 747 | + var mapOptions = { | |
| 748 | + zoom: 15, | |
| 749 | + center: new google.maps.LatLng(46.841726,-71.215989), | |
| 750 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 751 | + } | |
| 752 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 753 | + var image = 'images/google/marker.png'; | |
| 754 | + var image_on = 'images/google/marker_on.png'; | |
| 755 | + | |
| 756 | + var myLatLng = new google.maps.LatLng(46.841726,-71.215989); | |
| 757 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 758 | + | |
| 759 | + } | |
| 760 | +*/ | |
| 761 | + | |
| 762 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 763 | + | |
| 764 | + | |
| 765 | + function genMap(adr1,adr2){ | |
| 766 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 767 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 768 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 769 | + $("#mapDiv").html(mapadr); | |
| 770 | + } | |
| 771 | + genMap(adr1,adr2); | |
| 772 | +</script> | |
| 773 | + | |
| 774 | + | |
| 775 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 776 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 777 | + | |
| 778 | + | |
| 779 | + | |
| 780 | + </div> | |
| 781 | + | |
| 782 | + <script> | |
| 783 | + | |
| 784 | + updatePageLF(); | |
| 785 | + | |
| 786 | + | |
| 787 | + | |
| 788 | + </script> | |
| 789 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 790 | + | |
| 791 | + | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | +<footer class="mainfooter"> | |
| 796 | + <div> | |
| 797 | + | |
| 798 | + <div> | |
| 799 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 800 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 801 | + <a href="notifications.php">Notifications</a> | |
| 802 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 803 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 804 | + <a href="contact.asp">Contact</a> | |
| 805 | + <br> | |
| 806 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 807 | + </div> | |
| 808 | + <div> | |
| 809 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 810 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 811 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 812 | + </div> | |
| 813 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 814 | + </div> | |
| 815 | +</footer> | |
| 816 | + | |
| 817 | + <script> | |
| 818 | + | |
| 819 | + updateLF(); | |
| 820 | + | |
| 821 | + </script> | |
| 822 | + | |
| 823 | + | |
| 824 | + </body> | |
| 825 | + | |
| 826 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/b8e8755219ab29d0d9e1.html
+830 −0
@@ -0,0 +1,830 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Cité Limoilou  Le Bourg du Maizerets : 1700, ave Ernest-Lapointe # 402 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Cité Limoilou, au Le Bourg du Maizerets : 1700, ave Ernest-Lapointe # 402 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 342 | + <div class="nomComplexeAdresse">1700, ave Ernest-Lapointe # 402</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_6.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_7.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 369 | + | |
| 370 | + <div class="cycle-pager-relative"></div> | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + </div> | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + <div id="DescriptionComplexe"> | |
| 380 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_1.jpg" id="PhotoComplexePrint"> | |
| 381 | + Le complexe du Bourg du Maizerets, gagnants d'un prix Nobilis lors de sa modernisation extérieur, est situé à l'orée du futur écoquartier d'Estimauville. En voiture, en autobus ou à vélo, accédez à Saint-Roch, à Limoilou ou à la Haute-Ville en quelques instants. Le parc Maizerets, un véritable joyau à Québec, et la piste cyclable menant à la Baie de Beauport, figurent aussi parmi les meilleurs atouts de ce complexe hors du commun. | |
| 382 | + </div> | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + <TABLE class="dispos_table"> | |
| 387 | + <TR class="nomComplexePrint"> | |
| 388 | + <TD colspan="6"> | |
| 389 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 390 | + <div class="nomComplexeAdresse">1700, ave Ernest-Lapointe # 402</div> | |
| 391 | + </TD> | |
| 392 | + </TR> | |
| 393 | + <TR class="tr_header_appart"> | |
| 394 | + <TD>Grandeur</TD> | |
| 395 | + <TD>Disponibilité</TD> | |
| 396 | + <TD>Étage</TD> | |
| 397 | + <TD>Inclus</TD> | |
| 398 | + <TD>Prix</TD> | |
| 399 | + <TD>Favoris</TD> | |
| 400 | + </TR> | |
| 401 | + <TR class="dispos_tr_logement_appart"> | |
| 402 | + | |
| 403 | + <TD>4½</TD> | |
| 404 | + | |
| 405 | + <TD TITLE="Disponible maintenant">maintenant</TD> | |
| 406 | + <TD TITLE="3e étage">3<SUP>e</SUP></TD> | |
| 407 | + <TD class="Inclus"> | |
| 408 | + <IMG class="Chauffage" SRC="images/icones/chauffage.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Chauffage inclus" TITLE="Chauffage inclus"><IMG class="EauChaude" SRC="images/icones/eau_chaude.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Eau chaude incluse" TITLE="Eau chaude incluse"><IMG class="Eclairage" SRC="images/icones/eclairage.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Électricité incluse" TITLE="Électricité incluse"> | |
| 409 | + </TD> | |
| 410 | + | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + <TD id="prix_td">1180 $</TD> | |
| 415 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('597');" id='LienF_597_' onClick="compteur('LIDClic=597&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 416 | + </TR> | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | + | |
| 421 | + </TABLE> | |
| 422 | + | |
| 423 | +</div> | |
| 424 | + | |
| 425 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 426 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 427 | + <div class="bloc_infos_header_fix"> | |
| 428 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 429 | + </div> | |
| 430 | + | |
| 431 | + | |
| 432 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 433 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 434 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 435 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 436 | + Écrivez-nous | |
| 437 | + </A> | |
| 438 | + | |
| 439 | + | |
| 440 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 441 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 442 | + <input type="hidden" name="LogementID" value="597"> | |
| 443 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 444 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 445 | + <br clear="all"> | |
| 446 | + | |
| 447 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 448 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 449 | + <br clear="all"> | |
| 450 | + | |
| 451 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 452 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 453 | + <br clear="all"> | |
| 454 | + | |
| 455 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 456 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 457 | + <br clear="all"> | |
| 458 | + | |
| 459 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 460 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 461 | + <br clear="all"> | |
| 462 | + | |
| 463 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 464 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 465 | + <br clear="all"> | |
| 466 | + | |
| 467 | + | |
| 468 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 469 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 470 | + | |
| 471 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 472 | + | |
| 473 | + <option value="9" style="color:#333;">Facebook</option> | |
| 474 | + | |
| 475 | + <option value="7" style="color:#333;">Référence</option> | |
| 476 | + | |
| 477 | + <option value="1" style="color:#333;">Google</option> | |
| 478 | + | |
| 479 | + <option value="5" style="color:#333;">Radio</option> | |
| 480 | + | |
| 481 | + <option value="8" style="color:#333;">Télévision</option> | |
| 482 | + | |
| 483 | + <option value="6" style="color:#333;">Affiches</option> | |
| 484 | + | |
| 485 | + </select> | |
| 486 | + <br clear="all"> | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 491 | + <br clear="all"> | |
| 492 | + | |
| 493 | + <br clear="all"> | |
| 494 | + <div id="contourCaptcha2" > | |
| 495 | + <div id="recaptcha2" ></div> | |
| 496 | + </div> | |
| 497 | + <br> | |
| 498 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 499 | + | |
| 500 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 501 | + </form> | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + </div> | |
| 508 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 509 | + </div> | |
| 510 | + </div> | |
| 511 | + </div> | |
| 512 | + | |
| 513 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 514 | + <div id="carac_appart" class="bloc_infos"> | |
| 515 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 516 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 517 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 518 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 519 | + </div> | |
| 520 | + | |
| 521 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 522 | + | |
| 523 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 524 | + | |
| 525 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_am.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement am' TITLE='Ensoleillement am'>Ensoleillement am</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/renove.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='100 % rénové' TITLE='100 % rénové'><div class='carac_icone_inclus2'>100 % rénové</div></div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 530 | + | |
| 531 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Balcon' TITLE='Balcon'>Balcon 0 pi<SUP>2</SUP></div> | |
| 532 | + | |
| 533 | +<div class='carac_icone'><IMG SRC='images/icones/insono2.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 534 | + | |
| 535 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/laveuse.png' BORDER=0 WIDTH=26 HEIGHT=30 ALT='Entrées laveuse/sécheuse incluses' TITLE='Entrées laveuse/sécheuse incluses'>Entrées laveuse/sécheuse incluses</div> | |
| 536 | + | |
| 537 | +<div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>725 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 538 | + | |
| 539 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois franc, céramique</div> | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + | |
| 544 | + | |
| 545 | + </div> | |
| 546 | + </div> | |
| 547 | + </div> | |
| 548 | + | |
| 549 | + | |
| 550 | + | |
| 551 | + | |
| 552 | + | |
| 553 | + | |
| 554 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 555 | + | |
| 556 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 557 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 558 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 559 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 560 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 561 | + </div> | |
| 562 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 563 | + <img src="./quebec/le_bourg_du_maizeret/plans/4_et_demi_740_pc_type_a.gif" title="Plan appartement 4½ 740 pieds carrés type a" ALT="Plan appartement 4½ 740 pieds carrés type a" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 564 | + </div> | |
| 565 | + </div> | |
| 566 | + | |
| 567 | + | |
| 568 | + | |
| 569 | +</div> | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | +<div id="groupe2"> | |
| 574 | + | |
| 575 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 576 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 577 | + <div class="bloc_infos_header_fix"> | |
| 578 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 579 | + </div> | |
| 580 | + | |
| 581 | + <div class="bloc_infos_contenu"> | |
| 582 | + | |
| 583 | + | |
| 584 | + <div class="bloc_contact"> | |
| 585 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 586 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 587 | + Écrivez-nous | |
| 588 | + </A> | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 593 | + | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 598 | + <input type="hidden" name="LogementID" value="597"> | |
| 599 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 600 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 601 | + <br clear="all"> | |
| 602 | + | |
| 603 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 604 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 605 | + <br clear="all"> | |
| 606 | + | |
| 607 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 608 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 609 | + <br clear="all"> | |
| 610 | + | |
| 611 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 612 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 613 | + <br clear="all"> | |
| 614 | + | |
| 615 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 616 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 617 | + <br clear="all"> | |
| 618 | + | |
| 619 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 620 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 621 | + | |
| 622 | + <br clear="all"> | |
| 623 | + | |
| 624 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 625 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 626 | + | |
| 627 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 628 | + | |
| 629 | + <option value="9" style="color:#333;">Facebook</option> | |
| 630 | + | |
| 631 | + <option value="7" style="color:#333;">Référence</option> | |
| 632 | + | |
| 633 | + <option value="1" style="color:#333;">Google</option> | |
| 634 | + | |
| 635 | + <option value="5" style="color:#333;">Radio</option> | |
| 636 | + | |
| 637 | + <option value="8" style="color:#333;">Télévision</option> | |
| 638 | + | |
| 639 | + <option value="6" style="color:#333;">Affiches</option> | |
| 640 | + | |
| 641 | + </select> | |
| 642 | + <br clear="all"> | |
| 643 | + | |
| 644 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 645 | + | |
| 646 | + <br clear="all"> | |
| 647 | + <br> | |
| 648 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 649 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 650 | + </div> | |
| 651 | + <br> | |
| 652 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 653 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 654 | + </form> | |
| 655 | + </div> | |
| 656 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 657 | + </div> | |
| 658 | + | |
| 659 | + </div> | |
| 660 | + </div> | |
| 661 | + | |
| 662 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 663 | + <div id="emplacement" class="bloc_infos"> | |
| 664 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 665 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 666 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 667 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 668 | + </div> | |
| 669 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 670 | + | |
| 671 | + | |
| 672 | + | |
| 673 | + <div id="mapDiv"></div> | |
| 674 | + <script> | |
| 675 | + var adr1 = "1700"; | |
| 676 | + var adr2 = "ave Ernest-Lapointe"; | |
| 677 | + </script> | |
| 678 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 679 | + | |
| 680 | + <A href="http://maps.apple.com/?q=46.841726,-71.215989&z=15," target="_blank"><img src="images/googlemap.png" ><div>1700, ave Ernest-Lapointe, Cité Limoilou</div></A> | |
| 681 | + | |
| 682 | + </div> | |
| 683 | + </div> | |
| 684 | + </div> | |
| 685 | + | |
| 686 | + | |
| 687 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 688 | + <div id="services" class="bloc_infos"> | |
| 689 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 690 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 691 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 692 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 693 | + </div> | |
| 694 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 695 | + <ul> | |
| 696 | + | |
| 697 | + | |
| 698 | + | |
| 699 | + | |
| 700 | + Immeuble de 3 étages | |
| 701 | + <DIV STYLE="padding:2px;"></DIV> | |
| 702 | + 41 logements | |
| 703 | + <DIV STYLE="padding:2px;"></DIV> | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + | |
| 708 | + | |
| 709 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Buanderie libre service</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Surveillance par caméra</li> | |
| 710 | + </ul> | |
| 711 | + | |
| 712 | + | |
| 713 | + </div> | |
| 714 | + </div> | |
| 715 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 716 | +<div id="servicesop" class="bloc_infos"> | |
| 717 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 718 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 719 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 720 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 721 | + </div> | |
| 722 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 723 | + <ul> | |
| 724 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li><li>Rangement supplémentaire<br>pour 25$ / mois</li> | |
| 725 | + </ul> | |
| 726 | + | |
| 727 | + </div> | |
| 728 | + </div> | |
| 729 | + </div > | |
| 730 | + | |
| 731 | + <div id="notePrix"> | |
| 732 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 733 | + </div><BR> | |
| 734 | + | |
| 735 | + | |
| 736 | + | |
| 737 | +</main> | |
| 738 | + | |
| 739 | + | |
| 740 | + | |
| 741 | + | |
| 742 | +<script> | |
| 743 | + | |
| 744 | + var GoogleLat = "46.841726"; | |
| 745 | + var GoogleLn = "-71.215989"; | |
| 746 | + var adrs = "1700,ave Ernest-Lapointe"; | |
| 747 | + var NomComplexe = "Le Bourg du Maizerets"; | |
| 748 | + | |
| 749 | +/* | |
| 750 | + function initMap() { | |
| 751 | + var mapOptions = { | |
| 752 | + zoom: 15, | |
| 753 | + center: new google.maps.LatLng(46.841726,-71.215989), | |
| 754 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 755 | + } | |
| 756 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 757 | + var image = 'images/google/marker.png'; | |
| 758 | + var image_on = 'images/google/marker_on.png'; | |
| 759 | + | |
| 760 | + var myLatLng = new google.maps.LatLng(46.841726,-71.215989); | |
| 761 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 762 | + | |
| 763 | + } | |
| 764 | +*/ | |
| 765 | + | |
| 766 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 767 | + | |
| 768 | + | |
| 769 | + function genMap(adr1,adr2){ | |
| 770 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 771 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 772 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 773 | + $("#mapDiv").html(mapadr); | |
| 774 | + } | |
| 775 | + genMap(adr1,adr2); | |
| 776 | +</script> | |
| 777 | + | |
| 778 | + | |
| 779 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 780 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 781 | + | |
| 782 | + | |
| 783 | + | |
| 784 | + </div> | |
| 785 | + | |
| 786 | + <script> | |
| 787 | + | |
| 788 | + updatePageLF(); | |
| 789 | + | |
| 790 | + | |
| 791 | + | |
| 792 | + </script> | |
| 793 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | + | |
| 798 | + | |
| 799 | +<footer class="mainfooter"> | |
| 800 | + <div> | |
| 801 | + | |
| 802 | + <div> | |
| 803 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 804 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 805 | + <a href="notifications.php">Notifications</a> | |
| 806 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 807 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 808 | + <a href="contact.asp">Contact</a> | |
| 809 | + <br> | |
| 810 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 811 | + </div> | |
| 812 | + <div> | |
| 813 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 814 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 815 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 816 | + </div> | |
| 817 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 818 | + </div> | |
| 819 | +</footer> | |
| 820 | + | |
| 821 | + <script> | |
| 822 | + | |
| 823 | + updateLF(); | |
| 824 | + | |
| 825 | + </script> | |
| 826 | + | |
| 827 | + | |
| 828 | + </body> | |
| 829 | + | |
| 830 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/d10c2a538d9ee2c28c92.html
+828 −0
@@ -0,0 +1,828 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Charlesbourg/Lebourgneuf  Le Bourgarde : 4855, 6<SUP>e</SUP> Avenue Ouest # 403 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Charlesbourg/Lebourgneuf, au Le Bourgarde : 4855, 6<SUP>e</SUP> Avenue Ouest # 403 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Charlesbourg / Lebourgneuf : Le Bourgarde<BR> | |
| 342 | + <div class="nomComplexeAdresse">4855, 6<SUP>e</SUP> Avenue Ouest # 403</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_6.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <div class="cycle-pager-relative"></div> | |
| 369 | + </div> | |
| 370 | + | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + <div id="DescriptionComplexe"> | |
| 378 | + <IMG SRC="./charlesbourg/le_bourgarde/images/charlesbourg-le_bourgade_1.jpg" id="PhotoComplexePrint"> | |
| 379 | + Érigés par Logisbourg à l'angle des autoroutes Laurentienne et Félix-Leclerc, les 8 immeubles qui forment le complexe le Bourgarde ont des atouts indéniables. Planchers de béton pour une insonorisation supérieure, isolation thermique écoénergétique, nombre limité de logements par étage pour un maximum d'unités de coin, vastes superficies à aire ouverte, beaucoup d'espaces de rangement et des balcons hors normes... Le complexe le Bourgarde a tout pour plaire! | |
| 380 | + </div> | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + <TABLE class="dispos_table"> | |
| 385 | + <TR class="nomComplexePrint"> | |
| 386 | + <TD colspan="6"> | |
| 387 | + Charlesbourg / Lebourgneuf : Le Bourgarde<BR> | |
| 388 | + <div class="nomComplexeAdresse">4855, 6<SUP>e</SUP> Avenue Ouest # 403</div> | |
| 389 | + </TD> | |
| 390 | + </TR> | |
| 391 | + <TR class="tr_header_appart"> | |
| 392 | + <TD>Grandeur</TD> | |
| 393 | + <TD>Disponibilité</TD> | |
| 394 | + <TD>Étage</TD> | |
| 395 | + <TD>Inclus</TD> | |
| 396 | + <TD>Prix</TD> | |
| 397 | + <TD>Favoris</TD> | |
| 398 | + </TR> | |
| 399 | + <TR class="dispos_tr_logement_appart"> | |
| 400 | + | |
| 401 | + <TD>4½</TD> | |
| 402 | + | |
| 403 | + <TD TITLE="Disponible 1er septembre 2026">1<SUP>er</SUP> septembre 2026</TD> | |
| 404 | + <TD TITLE="3e étage">3<SUP>e</SUP></TD> | |
| 405 | + <TD class="Inclus"> | |
| 406 | + | |
| 407 | + </TD> | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
| 411 | + | |
| 412 | + <TD id="prix_td">1215 $</TD> | |
| 413 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('23');" id='LienF_23_' onClick="compteur('LIDClic=23&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 414 | + </TR> | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + </TABLE> | |
| 420 | + | |
| 421 | +</div> | |
| 422 | + | |
| 423 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 424 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 425 | + <div class="bloc_infos_header_fix"> | |
| 426 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 427 | + </div> | |
| 428 | + | |
| 429 | + | |
| 430 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 431 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 432 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 433 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 434 | + Écrivez-nous | |
| 435 | + </A> | |
| 436 | + | |
| 437 | + | |
| 438 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 439 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 440 | + <input type="hidden" name="LogementID" value="23"> | |
| 441 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 442 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 443 | + <br clear="all"> | |
| 444 | + | |
| 445 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 446 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 447 | + <br clear="all"> | |
| 448 | + | |
| 449 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 450 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 451 | + <br clear="all"> | |
| 452 | + | |
| 453 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 454 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 455 | + <br clear="all"> | |
| 456 | + | |
| 457 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 458 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 459 | + <br clear="all"> | |
| 460 | + | |
| 461 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 462 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 463 | + <br clear="all"> | |
| 464 | + | |
| 465 | + | |
| 466 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 467 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 468 | + | |
| 469 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 470 | + | |
| 471 | + <option value="9" style="color:#333;">Facebook</option> | |
| 472 | + | |
| 473 | + <option value="7" style="color:#333;">Référence</option> | |
| 474 | + | |
| 475 | + <option value="1" style="color:#333;">Google</option> | |
| 476 | + | |
| 477 | + <option value="5" style="color:#333;">Radio</option> | |
| 478 | + | |
| 479 | + <option value="8" style="color:#333;">Télévision</option> | |
| 480 | + | |
| 481 | + <option value="6" style="color:#333;">Affiches</option> | |
| 482 | + | |
| 483 | + </select> | |
| 484 | + <br clear="all"> | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 489 | + <br clear="all"> | |
| 490 | + | |
| 491 | + <br clear="all"> | |
| 492 | + <div id="contourCaptcha2" > | |
| 493 | + <div id="recaptcha2" ></div> | |
| 494 | + </div> | |
| 495 | + <br> | |
| 496 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 497 | + | |
| 498 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 499 | + </form> | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + </div> | |
| 506 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 507 | + </div> | |
| 508 | + </div> | |
| 509 | + </div> | |
| 510 | + | |
| 511 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 512 | + <div id="carac_appart" class="bloc_infos"> | |
| 513 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 514 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 515 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 516 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 517 | + </div> | |
| 518 | + | |
| 519 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 520 | + | |
| 521 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 522 | + | |
| 523 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_pm.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement pm' TITLE='Ensoleillement pm'>Ensoleillement pm</div> | |
| 524 | + | |
| 525 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Balcon' TITLE='Balcon'>Balcon 60 pi<SUP>2</SUP></div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/insono2.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 530 | + | |
| 531 | +<div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/lave-vaisselle.png' BORDER=0 WIDTH=28 HEIGHT=30 ALT='Entrée lave-vaisselle incluse' TITLE='Entrée lave-vaisselle incluse'><IMG SRC='images/icones/laveuse.png' BORDER=0 WIDTH=26 HEIGHT=30 ALT='Entrées laveuse/sécheuse incluses' TITLE='Entrées laveuse/sécheuse incluses'><div class='carac_icone_inclus2'>Entrées lave-vaisselle et<BR>laveuse/sécheuse inclus</div></div> | |
| 532 | + | |
| 533 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/stationnement.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Un stationnement extérieur' TITLE='Un stationnement extérieur'>Un stationnement extérieur</div> | |
| 534 | + | |
| 535 | +<div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>990 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 536 | + | |
| 537 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois flottant, céramique, tuile encollée</div> | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + </div> | |
| 544 | + </div> | |
| 545 | + </div> | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + | |
| 551 | + | |
| 552 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 553 | + | |
| 554 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 555 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 556 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 557 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 558 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 559 | + </div> | |
| 560 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 561 | + <img src="./charlesbourg/le_bourgarde/plans/4_et_demi_990_pc_4855.gif" title="Plan appartement 4 1/2 990 pieds carrés (4855)" ALT="Plan appartement 4 1/2 990 pieds carrés (4855)" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 562 | + </div> | |
| 563 | + </div> | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
| 567 | +</div> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | +<div id="groupe2"> | |
| 572 | + | |
| 573 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 574 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 575 | + <div class="bloc_infos_header_fix"> | |
| 576 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 577 | + </div> | |
| 578 | + | |
| 579 | + <div class="bloc_infos_contenu"> | |
| 580 | + | |
| 581 | + | |
| 582 | + <div class="bloc_contact"> | |
| 583 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 584 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 585 | + Écrivez-nous | |
| 586 | + </A> | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 596 | + <input type="hidden" name="LogementID" value="23"> | |
| 597 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 598 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 599 | + <br clear="all"> | |
| 600 | + | |
| 601 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 602 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 603 | + <br clear="all"> | |
| 604 | + | |
| 605 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 606 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 607 | + <br clear="all"> | |
| 608 | + | |
| 609 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 610 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 611 | + <br clear="all"> | |
| 612 | + | |
| 613 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 614 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 615 | + <br clear="all"> | |
| 616 | + | |
| 617 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 618 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 619 | + | |
| 620 | + <br clear="all"> | |
| 621 | + | |
| 622 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 623 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 624 | + | |
| 625 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 626 | + | |
| 627 | + <option value="9" style="color:#333;">Facebook</option> | |
| 628 | + | |
| 629 | + <option value="7" style="color:#333;">Référence</option> | |
| 630 | + | |
| 631 | + <option value="1" style="color:#333;">Google</option> | |
| 632 | + | |
| 633 | + <option value="5" style="color:#333;">Radio</option> | |
| 634 | + | |
| 635 | + <option value="8" style="color:#333;">Télévision</option> | |
| 636 | + | |
| 637 | + <option value="6" style="color:#333;">Affiches</option> | |
| 638 | + | |
| 639 | + </select> | |
| 640 | + <br clear="all"> | |
| 641 | + | |
| 642 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 643 | + | |
| 644 | + <br clear="all"> | |
| 645 | + <br> | |
| 646 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 647 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 648 | + </div> | |
| 649 | + <br> | |
| 650 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 651 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 652 | + </form> | |
| 653 | + </div> | |
| 654 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 655 | + </div> | |
| 656 | + | |
| 657 | + </div> | |
| 658 | + </div> | |
| 659 | + | |
| 660 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 661 | + <div id="emplacement" class="bloc_infos"> | |
| 662 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 663 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 664 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 665 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 666 | + </div> | |
| 667 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 668 | + | |
| 669 | + | |
| 670 | + | |
| 671 | + <div id="mapDiv"></div> | |
| 672 | + <script> | |
| 673 | + var adr1 = "4855"; | |
| 674 | + var adr2 = "6<SUP>e</SUP> Avenue Ouest"; | |
| 675 | + </script> | |
| 676 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 677 | + | |
| 678 | + <A href="http://maps.apple.com/?q=46.841064,-71.264786&z=15," target="_blank"><img src="images/googlemap.png" ><div>4855, 6<SUP>e</SUP> Avenue Ouest, Charlesbourg / Lebourgneuf</div></A> | |
| 679 | + | |
| 680 | + </div> | |
| 681 | + </div> | |
| 682 | + </div> | |
| 683 | + | |
| 684 | + | |
| 685 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 686 | + <div id="services" class="bloc_infos"> | |
| 687 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 688 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 689 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 690 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 691 | + </div> | |
| 692 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 693 | + <ul> | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
| 697 | + | |
| 698 | + Immeuble de 3 étages | |
| 699 | + <DIV STYLE="padding:2px;"></DIV> | |
| 700 | + 24 logements | |
| 701 | + <DIV STYLE="padding:2px;"></DIV> | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Stationnement extérieur déneigé</li> | |
| 708 | + </ul> | |
| 709 | + | |
| 710 | + | |
| 711 | + </div> | |
| 712 | + </div> | |
| 713 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 714 | +<div id="servicesop" class="bloc_infos"> | |
| 715 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 716 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 717 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 718 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 719 | + </div> | |
| 720 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 721 | + <ul> | |
| 722 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li> | |
| 723 | + </ul> | |
| 724 | + | |
| 725 | + </div> | |
| 726 | + </div> | |
| 727 | + </div > | |
| 728 | + | |
| 729 | + <div id="notePrix"> | |
| 730 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 731 | + </div><BR> | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | +</main> | |
| 736 | + | |
| 737 | + | |
| 738 | + | |
| 739 | + | |
| 740 | +<script> | |
| 741 | + | |
| 742 | + var GoogleLat = "46.841064"; | |
| 743 | + var GoogleLn = "-71.264786"; | |
| 744 | + var adrs = "4855,6<SUP>e</SUP> Avenue Ouest"; | |
| 745 | + var NomComplexe = "Le Bourgarde"; | |
| 746 | + | |
| 747 | +/* | |
| 748 | + function initMap() { | |
| 749 | + var mapOptions = { | |
| 750 | + zoom: 15, | |
| 751 | + center: new google.maps.LatLng(46.841064,-71.264786), | |
| 752 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 753 | + } | |
| 754 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 755 | + var image = 'images/google/marker.png'; | |
| 756 | + var image_on = 'images/google/marker_on.png'; | |
| 757 | + | |
| 758 | + var myLatLng = new google.maps.LatLng(46.841064,-71.264786); | |
| 759 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 760 | + | |
| 761 | + } | |
| 762 | +*/ | |
| 763 | + | |
| 764 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 765 | + | |
| 766 | + | |
| 767 | + function genMap(adr1,adr2){ | |
| 768 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 769 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 770 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 771 | + $("#mapDiv").html(mapadr); | |
| 772 | + } | |
| 773 | + genMap(adr1,adr2); | |
| 774 | +</script> | |
| 775 | + | |
| 776 | + | |
| 777 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 778 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 779 | + | |
| 780 | + | |
| 781 | + | |
| 782 | + </div> | |
| 783 | + | |
| 784 | + <script> | |
| 785 | + | |
| 786 | + updatePageLF(); | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + </script> | |
| 791 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | +<footer class="mainfooter"> | |
| 798 | + <div> | |
| 799 | + | |
| 800 | + <div> | |
| 801 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 802 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 803 | + <a href="notifications.php">Notifications</a> | |
| 804 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 805 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 806 | + <a href="contact.asp">Contact</a> | |
| 807 | + <br> | |
| 808 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 809 | + </div> | |
| 810 | + <div> | |
| 811 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 812 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 813 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 814 | + </div> | |
| 815 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 816 | + </div> | |
| 817 | +</footer> | |
| 818 | + | |
| 819 | + <script> | |
| 820 | + | |
| 821 | + updateLF(); | |
| 822 | + | |
| 823 | + </script> | |
| 824 | + | |
| 825 | + | |
| 826 | + </body> | |
| 827 | + | |
| 828 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/e463a2614a108c8f0e19.html
+828 −0
@@ -0,0 +1,828 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Charlesbourg/Lebourgneuf  Les Terrasses du Bourg : 4600, 7<SUP>e</SUP> Avenue Ouest # | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Charlesbourg/Lebourgneuf, au Les Terrasses du Bourg : 4600, 7<SUP>e</SUP> Avenue Ouest # dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Charlesbourg / Lebourgneuf : Les Terrasses du Bourg<BR> | |
| 342 | + <div class="nomComplexeAdresse">4600, 7<SUP>e</SUP> Avenue Ouest</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./charlesbourg/les_terrasses_du_bourg/images/charlesbourg-les_terrasses_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./charlesbourg/les_terrasses_du_bourg/images/charlesbourg-les_terrasses_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./charlesbourg/les_terrasses_du_bourg/images/charlesbourg-les_terrasses_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./charlesbourg/les_terrasses_du_bourg/images/charlesbourg-les_terrasses_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./charlesbourg/les_terrasses_du_bourg/images/charlesbourg-les_terrasses_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./charlesbourg/les_terrasses_du_bourg/images/charlesbourg-les_terrasses_6.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <div class="cycle-pager-relative"></div> | |
| 369 | + </div> | |
| 370 | + | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + <div id="DescriptionComplexe"> | |
| 378 | + <IMG SRC="./charlesbourg/les_terrasses_du_bourg/images/charlesbourg-les_terrasses_1.jpg" id="PhotoComplexePrint"> | |
| 379 | + Carte cachée de l’arrondissement Charlesbourg, les Terrasses du Bourg sont composées de grands logements sur deux étages qui bordent des cours intérieures privées. Et les terrasses? Elles coiffent chaque immeuble, donnant une vue exceptionnelle sur la ville aux résidants des Terrasses du Bourg. Un concept tout à fait novateur, parfait pour de jeunes familles. | |
| 380 | + </div> | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + <TABLE class="dispos_table"> | |
| 385 | + <TR class="nomComplexePrint"> | |
| 386 | + <TD colspan="6"> | |
| 387 | + Charlesbourg / Lebourgneuf : Les Terrasses du Bourg<BR> | |
| 388 | + <div class="nomComplexeAdresse">4600, 7<SUP>e</SUP> Avenue Ouest</div> | |
| 389 | + </TD> | |
| 390 | + </TR> | |
| 391 | + <TR class="tr_header_appart"> | |
| 392 | + <TD>Grandeur</TD> | |
| 393 | + <TD>Disponibilité</TD> | |
| 394 | + <TD>Étage</TD> | |
| 395 | + <TD>Inclus</TD> | |
| 396 | + <TD>Prix</TD> | |
| 397 | + <TD>Favoris</TD> | |
| 398 | + </TR> | |
| 399 | + <TR class="dispos_tr_logement_appart"> | |
| 400 | + | |
| 401 | + <TD>3½</TD> | |
| 402 | + | |
| 403 | + <TD TITLE="Disponible 1er septembre 2026">1<SUP>er</SUP> septembre 2026</TD> | |
| 404 | + <TD TITLE="Rez-de-jardin">RDJ</TD> | |
| 405 | + <TD class="Inclus"> | |
| 406 | + | |
| 407 | + </TD> | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
| 411 | + | |
| 412 | + <TD id="prix_td">1000 $</TD> | |
| 413 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('446');" id='LienF_446_' onClick="compteur('LIDClic=446&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 414 | + </TR> | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + </TABLE> | |
| 420 | + | |
| 421 | +</div> | |
| 422 | + | |
| 423 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 424 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 425 | + <div class="bloc_infos_header_fix"> | |
| 426 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 427 | + </div> | |
| 428 | + | |
| 429 | + | |
| 430 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 431 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 432 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 433 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 434 | + Écrivez-nous | |
| 435 | + </A> | |
| 436 | + | |
| 437 | + | |
| 438 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 439 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 440 | + <input type="hidden" name="LogementID" value="446"> | |
| 441 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 442 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 443 | + <br clear="all"> | |
| 444 | + | |
| 445 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 446 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 447 | + <br clear="all"> | |
| 448 | + | |
| 449 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 450 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 451 | + <br clear="all"> | |
| 452 | + | |
| 453 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 454 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 455 | + <br clear="all"> | |
| 456 | + | |
| 457 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 458 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 459 | + <br clear="all"> | |
| 460 | + | |
| 461 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 462 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 463 | + <br clear="all"> | |
| 464 | + | |
| 465 | + | |
| 466 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 467 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 468 | + | |
| 469 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 470 | + | |
| 471 | + <option value="9" style="color:#333;">Facebook</option> | |
| 472 | + | |
| 473 | + <option value="7" style="color:#333;">Référence</option> | |
| 474 | + | |
| 475 | + <option value="1" style="color:#333;">Google</option> | |
| 476 | + | |
| 477 | + <option value="5" style="color:#333;">Radio</option> | |
| 478 | + | |
| 479 | + <option value="8" style="color:#333;">Télévision</option> | |
| 480 | + | |
| 481 | + <option value="6" style="color:#333;">Affiches</option> | |
| 482 | + | |
| 483 | + </select> | |
| 484 | + <br clear="all"> | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 489 | + <br clear="all"> | |
| 490 | + | |
| 491 | + <br clear="all"> | |
| 492 | + <div id="contourCaptcha2" > | |
| 493 | + <div id="recaptcha2" ></div> | |
| 494 | + </div> | |
| 495 | + <br> | |
| 496 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 497 | + | |
| 498 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 499 | + </form> | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + </div> | |
| 506 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 507 | + </div> | |
| 508 | + </div> | |
| 509 | + </div> | |
| 510 | + | |
| 511 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 512 | + <div id="carac_appart" class="bloc_infos"> | |
| 513 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 514 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 515 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 516 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 517 | + </div> | |
| 518 | + | |
| 519 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 520 | + | |
| 521 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 522 | + | |
| 523 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_pm.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement pm' TITLE='Ensoleillement pm'>Ensoleillement pm</div> | |
| 524 | + | |
| 525 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Terrasse' TITLE='Terrasse'>Terrasse</div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/insono2.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 530 | + | |
| 531 | +<div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/lave-vaisselle.png' BORDER=0 WIDTH=28 HEIGHT=30 ALT='Entrée lave-vaisselle incluse' TITLE='Entrée lave-vaisselle incluse'><IMG SRC='images/icones/laveuse.png' BORDER=0 WIDTH=26 HEIGHT=30 ALT='Entrées laveuse/sécheuse incluses' TITLE='Entrées laveuse/sécheuse incluses'><div class='carac_icone_inclus2'>Entrées lave-vaisselle et<BR>laveuse/sécheuse inclus</div></div> | |
| 532 | + | |
| 533 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div class='carac_icone' style='position:relative;'><IMG SRC='images/icones/stationnement.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Un stationnement extérieur' TITLE='Un stationnement extérieur'>Un stationnement extérieur</div> | |
| 534 | + | |
| 535 | +<div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>575 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 536 | + | |
| 537 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois flottant, céramique</div> | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + </div> | |
| 544 | + </div> | |
| 545 | + </div> | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + | |
| 551 | + | |
| 552 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 553 | + | |
| 554 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 555 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 556 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 557 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 558 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 559 | + </div> | |
| 560 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 561 | + <img src="./charlesbourg/les_terrasses_du_bourg/plans/3_et_demi_575_pc_type_a.gif" title="Plan appartement 3½ 575 pieds carrés type a" ALT="Plan appartement 3½ 575 pieds carrés type a" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 562 | + </div> | |
| 563 | + </div> | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
| 567 | +</div> | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | +<div id="groupe2"> | |
| 572 | + | |
| 573 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 574 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 575 | + <div class="bloc_infos_header_fix"> | |
| 576 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 577 | + </div> | |
| 578 | + | |
| 579 | + <div class="bloc_infos_contenu"> | |
| 580 | + | |
| 581 | + | |
| 582 | + <div class="bloc_contact"> | |
| 583 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 584 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 585 | + Écrivez-nous | |
| 586 | + </A> | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 596 | + <input type="hidden" name="LogementID" value="446"> | |
| 597 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 598 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 599 | + <br clear="all"> | |
| 600 | + | |
| 601 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 602 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 603 | + <br clear="all"> | |
| 604 | + | |
| 605 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 606 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 607 | + <br clear="all"> | |
| 608 | + | |
| 609 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 610 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 611 | + <br clear="all"> | |
| 612 | + | |
| 613 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 614 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 615 | + <br clear="all"> | |
| 616 | + | |
| 617 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 618 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 619 | + | |
| 620 | + <br clear="all"> | |
| 621 | + | |
| 622 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 623 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 624 | + | |
| 625 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 626 | + | |
| 627 | + <option value="9" style="color:#333;">Facebook</option> | |
| 628 | + | |
| 629 | + <option value="7" style="color:#333;">Référence</option> | |
| 630 | + | |
| 631 | + <option value="1" style="color:#333;">Google</option> | |
| 632 | + | |
| 633 | + <option value="5" style="color:#333;">Radio</option> | |
| 634 | + | |
| 635 | + <option value="8" style="color:#333;">Télévision</option> | |
| 636 | + | |
| 637 | + <option value="6" style="color:#333;">Affiches</option> | |
| 638 | + | |
| 639 | + </select> | |
| 640 | + <br clear="all"> | |
| 641 | + | |
| 642 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 643 | + | |
| 644 | + <br clear="all"> | |
| 645 | + <br> | |
| 646 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 647 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 648 | + </div> | |
| 649 | + <br> | |
| 650 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 651 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 652 | + </form> | |
| 653 | + </div> | |
| 654 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 655 | + </div> | |
| 656 | + | |
| 657 | + </div> | |
| 658 | + </div> | |
| 659 | + | |
| 660 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 661 | + <div id="emplacement" class="bloc_infos"> | |
| 662 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 663 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 664 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 665 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 666 | + </div> | |
| 667 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 668 | + | |
| 669 | + | |
| 670 | + | |
| 671 | + <div id="mapDiv"></div> | |
| 672 | + <script> | |
| 673 | + var adr1 = "4600"; | |
| 674 | + var adr2 = "7<SUP>e</SUP> Avenue Ouest"; | |
| 675 | + </script> | |
| 676 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 677 | + | |
| 678 | + <A href="http://maps.apple.com/?q=46.840114,-71.261849&z=15," target="_blank"><img src="images/googlemap.png" ><div>4600, 7<SUP>e</SUP> Avenue Ouest, Charlesbourg / Lebourgneuf</div></A> | |
| 679 | + | |
| 680 | + </div> | |
| 681 | + </div> | |
| 682 | + </div> | |
| 683 | + | |
| 684 | + | |
| 685 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 686 | + <div id="services" class="bloc_infos"> | |
| 687 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 688 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 689 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 690 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 691 | + </div> | |
| 692 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 693 | + <ul> | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
| 697 | + | |
| 698 | + Immeuble de 2 étages | |
| 699 | + <DIV STYLE="padding:2px;"></DIV> | |
| 700 | + 14 logements | |
| 701 | + <DIV STYLE="padding:2px;"></DIV> | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Service d'urgence 24/7</li><li>Stationnement extérieur déneigé</li> | |
| 708 | + </ul> | |
| 709 | + | |
| 710 | + | |
| 711 | + </div> | |
| 712 | + </div> | |
| 713 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 714 | +<div id="servicesop" class="bloc_infos"> | |
| 715 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 716 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 717 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 718 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 719 | + </div> | |
| 720 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 721 | + <ul> | |
| 722 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li><li>Rangement supplémentaire<br>pour 25$ / mois</li> | |
| 723 | + </ul> | |
| 724 | + | |
| 725 | + </div> | |
| 726 | + </div> | |
| 727 | + </div > | |
| 728 | + | |
| 729 | + <div id="notePrix"> | |
| 730 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 731 | + </div><BR> | |
| 732 | + | |
| 733 | + | |
| 734 | + | |
| 735 | +</main> | |
| 736 | + | |
| 737 | + | |
| 738 | + | |
| 739 | + | |
| 740 | +<script> | |
| 741 | + | |
| 742 | + var GoogleLat = "46.840114"; | |
| 743 | + var GoogleLn = "-71.261849"; | |
| 744 | + var adrs = "4600,7<SUP>e</SUP> Avenue Ouest"; | |
| 745 | + var NomComplexe = "Les Terrasses du Bourg"; | |
| 746 | + | |
| 747 | +/* | |
| 748 | + function initMap() { | |
| 749 | + var mapOptions = { | |
| 750 | + zoom: 15, | |
| 751 | + center: new google.maps.LatLng(46.840114,-71.261849), | |
| 752 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 753 | + } | |
| 754 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 755 | + var image = 'images/google/marker.png'; | |
| 756 | + var image_on = 'images/google/marker_on.png'; | |
| 757 | + | |
| 758 | + var myLatLng = new google.maps.LatLng(46.840114,-71.261849); | |
| 759 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 760 | + | |
| 761 | + } | |
| 762 | +*/ | |
| 763 | + | |
| 764 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 765 | + | |
| 766 | + | |
| 767 | + function genMap(adr1,adr2){ | |
| 768 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 769 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 770 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 771 | + $("#mapDiv").html(mapadr); | |
| 772 | + } | |
| 773 | + genMap(adr1,adr2); | |
| 774 | +</script> | |
| 775 | + | |
| 776 | + | |
| 777 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 778 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 779 | + | |
| 780 | + | |
| 781 | + | |
| 782 | + </div> | |
| 783 | + | |
| 784 | + <script> | |
| 785 | + | |
| 786 | + updatePageLF(); | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + </script> | |
| 791 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | +<footer class="mainfooter"> | |
| 798 | + <div> | |
| 799 | + | |
| 800 | + <div> | |
| 801 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 802 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 803 | + <a href="notifications.php">Notifications</a> | |
| 804 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 805 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 806 | + <a href="contact.asp">Contact</a> | |
| 807 | + <br> | |
| 808 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 809 | + </div> | |
| 810 | + <div> | |
| 811 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 812 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 813 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 814 | + </div> | |
| 815 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 816 | + </div> | |
| 817 | +</footer> | |
| 818 | + | |
| 819 | + <script> | |
| 820 | + | |
| 821 | + updateLF(); | |
| 822 | + | |
| 823 | + </script> | |
| 824 | + | |
| 825 | + | |
| 826 | + </body> | |
| 827 | + | |
| 828 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/ef76df46029bde765a3e.html
+826 −0
@@ -0,0 +1,826 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE HTML> | |
| 3 | +<html lang="fr"><head> | |
| 4 | + | |
| 5 | + | |
| 6 | + <meta charset="UTF-8"> | |
| 7 | + <title>Appartement Cité Limoilou  Le Bourg du Maizerets : 1700, ave Ernest-Lapointe # 407 | Logisbourg</title> | |
| 8 | + | |
| 9 | + <!-- Global site tag (gtag.js) - Google Analytics --> | |
| 10 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-13093975-1"></script> | |
| 11 | +<script> | |
| 12 | + window.dataLayer = window.dataLayer || []; | |
| 13 | + function gtag(){dataLayer.push(arguments);} | |
| 14 | + gtag('js', new Date()); | |
| 15 | + | |
| 16 | + gtag('config', 'UA-13093975-1'); | |
| 17 | +</script> | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1"> | |
| 22 | + <meta name="keywords" content="logements à louer, logement a louer, logement, appart, appartements à louer, appartement à louer, logis, se loger, loger, loyer, lofts, loft à louer, studios, studio à louer, studios à louer, Québec, Charlesbourg, Beauport, Vieux-Québec, Limoilou, déménagement, annonces classées, petites annonces, habitation, immobilier, immeuble à revenu, immeubles à revenus, immeuble locatifs, résidentiel, immeuble résidentiel, résidentiels, résidences, société immobilière, gestion immobilière, location, locataires, locataire, propriétaire, propriétaires, propriété, propriétés, gestionnaire, gestionnaires, étudiant, étudiants, co-locataire, co-locataires, co-loc, co-location, chauffé, éclairé, meublé, semi meublé, semi-meublé, bloc appartement, espace à louer, espaces, hébergement, prix compétitifs, outil de recherche, disponible, disponibilités, descriptions, services offerts, carte région"> | |
| 23 | + <meta name="description" content="Appartement disponible à Cité Limoilou, au Le Bourg du Maizerets : 1700, ave Ernest-Lapointe # 407 dans la région de Québec"> | |
| 24 | + <meta name="distribution" content="global"> | |
| 25 | + <meta name="robots" content="ALL"> | |
| 26 | + <meta name="subject" content="Immeuble à logements"> | |
| 27 | + <meta name="classification" content="affaires et économie, immobilier"> | |
| 28 | + <meta name="Identifier-URL" content="http://www.logisbourg.com/"> | |
| 29 | + <meta name="Author" content = "Stéphane Cantin, www.carbonecreation.com"> | |
| 30 | + | |
| 31 | + | |
| 32 | + <script src='includes/swipe/swipe.js' type="text/javascript"></script> | |
| 33 | + <link rel="stylesheet" type="text/css" href="css/page.css"> | |
| 34 | + <link rel="stylesheet" type="text/css" href="css/page_appartement.css"> | |
| 35 | + <link rel="stylesheet" type="text/css" href="css/slider.css"> | |
| 36 | + <link rel="stylesheet" type="text/css" href="css/cycle2.css"> | |
| 37 | + <link rel="stylesheet" type="text/css" href="css/contact.css"> | |
| 38 | + | |
| 39 | + | |
| 40 | + <!--[if lt IE 9]> | |
| 41 | + <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| 42 | + <![endif]--> | |
| 43 | + | |
| 44 | + <script src="includes/jquery-2.1.4.min.js" type="text/javascript"></script> | |
| 45 | + <script src='includes/cycle2/jquery.cycle2.js' type="text/javascript"></script> | |
| 46 | + <script src='includes/cycle2/jquery.cycle2.swipe.js' type="text/javascript"></script> | |
| 47 | + <script src="includes/jquery.maskedinput.min.js" type="text/javascript"></script> | |
| 48 | + <script src="includes/fonctions.js" type="text/javascript"></script> | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | +<script> | |
| 55 | + | |
| 56 | +function updateLF() { | |
| 57 | +/* if(typeof (Storage) !== "undefined") { | |
| 58 | + var uri = localStorage.getItem('LF'); | |
| 59 | + if(uri.includes("logisant") === false){ | |
| 60 | + $('.lienFavoris').attr('href', 'appartements-disponibles.asp?Favoris=1&LF='+localStorage.getItem('LF')); | |
| 61 | + } | |
| 62 | + } */ | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + function updatePageLF() { | |
| 68 | + if(typeof(Storage) !== "undefined") { | |
| 69 | + LF = localStorage.getItem("LF"); | |
| 70 | + if (LF!=null) { | |
| 71 | + LFArray=LF.split("|") | |
| 72 | + for (i = 0; i < LFArray.length; i++) { | |
| 73 | + | |
| 74 | + $('#LienF_'+LFArray[i]+'_').attr('href', 'JavaScript:retireLF('+LFArray[i]+');$(\'#tr_'+LFArray[i]+'_\').css(\'display\', \'none\');'); | |
| 75 | + | |
| 76 | + $('#LienF_'+LFArray[i]+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 77 | + } | |
| 78 | + } | |
| 79 | + } | |
| 80 | + } | |
| 81 | + | |
| 82 | + function ajoutLF(LogementID) { | |
| 83 | + if(typeof(Storage) !== "undefined") { | |
| 84 | + LF = localStorage.getItem("LF"); | |
| 85 | + if (LF==null) LF=""; | |
| 86 | + localStorage.setItem("LF", LF+'|'+LogementID); | |
| 87 | + updateLF(); | |
| 88 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:retireLF('+LogementID+')$(\'#tr_'+LogementID+'_\').css(\'display\', \'none\');'); | |
| 89 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur_on.png'); | |
| 90 | + } | |
| 91 | + } | |
| 92 | + function retireLF(LogementID) { | |
| 93 | + if(typeof(Storage) !== "undefined") { | |
| 94 | + LF = localStorage.getItem("LF"); | |
| 95 | + newLF = ""; | |
| 96 | + if (LF!=null) { | |
| 97 | + LFArray=LF.split("|") | |
| 98 | + for (i = 0; i < LFArray.length; i++) { | |
| 99 | + if (LFArray[i] != "") { | |
| 100 | + if (LFArray[i] != LogementID) newLF = newLF + "|" + LFArray[i]; | |
| 101 | + else { | |
| 102 | + $('#LienF_'+LogementID+'_').attr('href', 'JavaScript:ajoutLF('+LogementID+')'); | |
| 103 | + $('#LienF_'+LogementID+'_ img').attr('src', 'images/icones/coeur.png'); | |
| 104 | + } | |
| 105 | + } | |
| 106 | + } | |
| 107 | + } | |
| 108 | + localStorage.setItem("LF", newLF); | |
| 109 | + updateLF(); | |
| 110 | + | |
| 111 | + } | |
| 112 | + } | |
| 113 | + | |
| 114 | +</script> | |
| 115 | + | |
| 116 | + | |
| 117 | + <script> | |
| 118 | + //CC , LIDClic , Clic | |
| 119 | + function compteur(val) { | |
| 120 | + $.ajax( "compteur_ajax.asp?"+val) | |
| 121 | + } | |
| 122 | + </script> | |
| 123 | + | |
| 124 | + | |
| 125 | +<script> | |
| 126 | + $(document).ready(function(){ | |
| 127 | + $('input.phoneNumber').mask('(999) 999-9999'); | |
| 128 | + $('input.phoneBureau').mask('(999) 999-9999? #99999999'); | |
| 129 | + } ); | |
| 130 | + | |
| 131 | + | |
| 132 | + function ValidateEmail(email) { | |
| 133 | + // Validate email format | |
| 134 | + var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
| 135 | + return expr.test(email); | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + function envoiDemande(val) { | |
| 140 | + tousOk = true; | |
| 141 | + | |
| 142 | + if ($('#Prenom'+val).val()=="") { | |
| 143 | + $('#Prenom'+val).css('border','2px solid #c72929'); | |
| 144 | + $('#PrenomTxt'+val).css('color','#c72929'); | |
| 145 | + $('#PrenomTxt'+val).css('font-weight','bold'); | |
| 146 | + tousOk = false; | |
| 147 | + } | |
| 148 | + else { | |
| 149 | + $('#Prenom'+val).css('border','1px solid #333'); | |
| 150 | + $('#PrenomTxt'+val).css('color','#333'); | |
| 151 | + $('#PrenomTxt'+val).css('font-weight','normal'); | |
| 152 | + } | |
| 153 | + | |
| 154 | + if ($('#Nom'+val).val()=="") { | |
| 155 | + $('#Nom'+val).css('border','2px solid #c72929'); | |
| 156 | + $('#NomTxt'+val).css('color','#c72929'); | |
| 157 | + $('#NomTxt'+val).css('font-weight','bold'); | |
| 158 | + tousOk = false; | |
| 159 | + } | |
| 160 | + else { | |
| 161 | + $('#Nom'+val).css('border','1px solid #333'); | |
| 162 | + $('#NomTxt'+val).css('color','#333'); | |
| 163 | + $('#NomTxt'+val).css('font-weight','normal'); | |
| 164 | + } | |
| 165 | + | |
| 166 | + if ($('#PhoneDomicile'+val).val()=="" && $('#PhoneCellulaire'+val).val()=="" && $('#PhoneTravail'+val).val()=="") { | |
| 167 | + $('#PhoneDomicile'+val).css('border','2px solid #c72929'); | |
| 168 | + $('#PhoneDomicileTxt'+val).css('color','#c72929'); | |
| 169 | + $('#PhoneDomicileTxt'+val).css('font-weight','bold'); | |
| 170 | + tousOk = false; | |
| 171 | + } | |
| 172 | + else { | |
| 173 | + $('#PhoneDomicile'+val).css('border','1px solid #333'); | |
| 174 | + $('#PhoneDomicileTxt'+val).css('color','#333'); | |
| 175 | + $('#PhoneDomicileTxt'+val).css('font-weight','normal'); | |
| 176 | + } | |
| 177 | + | |
| 178 | + if (($('#Email'+val).val()=="") || ($('#Email'+val).val()!="" && !ValidateEmail($('#Email'+val).val()))) { | |
| 179 | + $('#Email'+val).css('border','2px solid #c72929'); | |
| 180 | + $('#EmailTxt'+val).css('color','#c72929'); | |
| 181 | + $('#EmailTxt'+val).css('font-weight','bold'); | |
| 182 | + tousOk = false; | |
| 183 | + } | |
| 184 | + else { | |
| 185 | + $('#Email'+val).css('border','1px solid #333'); | |
| 186 | + $('#EmailTxt'+val).css('color','#333'); | |
| 187 | + $('#EmailTxt'+val).css('font-weight','normal'); | |
| 188 | + } | |
| 189 | + | |
| 190 | + if ($('#ProvenanceID'+val).val()=="0") { | |
| 191 | + $('#ProvenanceID'+val).css('border','2px solid #c72929'); | |
| 192 | + $('#ProvenanceID'+val).css('color','#c72929'); | |
| 193 | + $('#ProvenanceID'+val).css('font-weight','bold'); | |
| 194 | + tousOk = false; | |
| 195 | + } | |
| 196 | + else { | |
| 197 | + $('#ProvenanceID'+val).css('border','1px solid #333'); | |
| 198 | + $('#ProvenanceID'+val).css('color','#333'); | |
| 199 | + $('#ProvenanceID'+val).css('font-weight','normal'); | |
| 200 | + } | |
| 201 | + if ($('#Message'+val).val()=="") { | |
| 202 | + $('#Message'+val).css('border','2px solid #c72929'); | |
| 203 | + tousOk = false; | |
| 204 | + } | |
| 205 | + else { | |
| 206 | + $('#Message'+val).css('border','1px solid #333'); | |
| 207 | + } | |
| 208 | + | |
| 209 | + if ($('#g-recaptcha-response').val() == "") { | |
| 210 | + $('#contourCaptcha'+val).css('border','2px solid #c72929'); | |
| 211 | + tousOk = false; | |
| 212 | + } | |
| 213 | + else { | |
| 214 | + $('#contourCaptcha'+val).css('border','1px solid #333'); | |
| 215 | + } | |
| 216 | + | |
| 217 | + if (val==1) $('#captcha1').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 218 | + else $('#captcha2').val($('#g-recaptcha-response').val());//sinon fonctionnait pu vu que update via ajax | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + if (tousOk) ajaxSubmit('demandeinfo'+val, $('#demande'+val),'appartement_update.asp'); | |
| 224 | + | |
| 225 | + } | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + function toggleEcrivez(val) { | |
| 231 | + if ($('#demandeinfo'+val).css('display')=='none') { | |
| 232 | + $('#demandeinfo'+val).css('display', 'block'); | |
| 233 | + $('#lienEcrivez'+val).css('border-left','1px solid #666'); | |
| 234 | + $('#lienEcrivez'+val).css('border-right','1px solid #666'); | |
| 235 | + } | |
| 236 | + else { | |
| 237 | + $('#demandeinfo'+val).css('display', 'none'); | |
| 238 | + $('#lienEcrivez'+val).css('border-left','1px solid #FFF'); | |
| 239 | + $('#lienEcrivez'+val).css('border-right','1px solid #FFF'); | |
| 240 | + $('#demandeinfo').hide(); | |
| 241 | + } | |
| 242 | + | |
| 243 | + //pour pouvoir avoir 2 recaptcha(iphone et ordi) sur la même page il est affiché juste au besoin | |
| 244 | + recaptcha1 = grecaptcha.render('recaptcha'+val, { | |
| 245 | + 'sitekey' : '6LdD5hMUAAAAADw9qEVsmnzT-MFcjlTtZPliBdfH', | |
| 246 | + 'theme' : 'light' | |
| 247 | + }); | |
| 248 | + | |
| 249 | + } | |
| 250 | + | |
| 251 | + | |
| 252 | +</script> | |
| 253 | + | |
| 254 | + </head> | |
| 255 | + | |
| 256 | +<body> | |
| 257 | + | |
| 258 | + <div id="container"> | |
| 259 | + | |
| 260 | + | |
| 261 | + <header > | |
| 262 | + <div id="header_gauche" ></div> | |
| 263 | + <div id="header_container"> | |
| 264 | + <div id="logo" onClick="self.location='default.asp';"><img src="./images/header/logo_logisbourg2.png" alt="Logisbourg"></div> | |
| 265 | + <nav id="header_liens"> | |
| 266 | + <a href="appartements-disponibles.asp" style="background:#626a6f;"><div>Appartements</div></a> | |
| 267 | + <a href="https://condolocatif.com" ><div>Condos locatifs</div></a> | |
| 268 | + <a href="notifications.php" id="lienmenu_notif" ><div>Notifications</div></a> | |
| 269 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1" ><div>Vos Favoris</div></a> | |
| 270 | + <a target="_blank" href="/carrieres/"><div>Carrières</div></a> | |
| 271 | + <a href="contact.asp" ><div>Contact</div></a> | |
| 272 | + </nav> | |
| 273 | + <div id="bouton_dropdown" onClick="$('#menu_dropdown').slideToggle('fast');"><img src="./images/header/menu_dropdown_icon.png" alt=""></div> | |
| 274 | + <div id="menu_dropdown" > | |
| 275 | + <a href="appartements-disponibles.asp"><img src="images/header/fleche_droite2.png" alt="Appartements">Appartements</a> | |
| 276 | + <a href="https://condolocatif.com"><img src="images/header/fleche_droite2.png" alt="Condos Locatifs">Condos locatifs</a> | |
| 277 | + <a href="notifications.php"><img src="images/header/fleche_droite2.png" alt="Notifications">Notifications</a> | |
| 278 | + <a class='lienFavoris' href="appartements-disponibles.asp?Favoris=1"><img src="images/header/fleche_droite2.png" alt="Vos favoris">Vos Favoris</a> | |
| 279 | + <a target="_blank" href="/carrieres/"><img src="images/header/fleche_droite2.png" alt="Carrières">Carrières</a> | |
| 280 | + <a href="contact.asp"><img src="images/header/fleche_droite2.png" alt="Contact">Contact</a> | |
| 281 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" id="menu_dropdown_linkedin"><img src="images/accueil/logo_linkedin_gris.png" alt="LinkedIn"></a> | |
| 282 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" id="menu_dropdown_facebook"><img src="images/accueil/logo_facebook_gris.png" alt="Facebook"></a> | |
| 283 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" id="menu_dropdown_youtube"><img src="images/accueil/logo_youtube_gris.png" alt="Youtube"></a> | |
| 284 | + </div> | |
| 285 | + | |
| 286 | + <div id="siteposition"> | |
| 287 | + <nav id="nav_siteposition"> | |
| 288 | + <H1 >Appartements à louer à Québec</H1> | |
| 289 | + </nav> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <div id="header_facebook" style="z-index:10000;"> | |
| 293 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank" onMouseOver="$('#imgLI').attr('src','images/accueil/logo_linkedin_on.png');" onMouseOut="$('#imgLI').attr('src','images/accueil/logo_linkedin.png');" style="display:inline-block;"><img id="imgLI" src="images/accueil/logo_linkedin.png" alt="LinkedIn"></a> | |
| 294 | + <a href="https://www.facebook.com/Logisbourg/" target="_blank" onMouseOver="$('#imgFB').attr('src','images/accueil/logo_facebook_on.png');" onMouseOut="$('#imgFB').attr('src','images/accueil/logo_facebook.png');" style="display:inline-block;"><img id="imgFB" src="images/accueil/logo_facebook.png" alt="Facebook"></a> | |
| 295 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank" onMouseOver="$('#imgYT').attr('src','images/accueil/logo_youtube_on.png');" onMouseOut="$('#imgYT').attr('src','images/accueil/logo_youtube.png');" style="display:inline-block;"><img id="imgYT" src="images/accueil/logo_youtube.png" alt="Youtube"></a> | |
| 296 | + | |
| 297 | + </div> | |
| 298 | + | |
| 299 | + </header> | |
| 300 | + | |
| 301 | + <div id="header_print"> | |
| 302 | + <div id="header_print_date">8/8/2026</div> | |
| 303 | + <img src="./images/header/logo_logisbourg_print.png" alt="Logisbourg"> | |
| 304 | + <div id="header_print_adresse">www.logisbourg.com</div> | |
| 305 | + <div id="header_print_titre">Appartements à louer à Québec</div> | |
| 306 | + | |
| 307 | + </div> | |
| 308 | + | |
| 309 | + <script> | |
| 310 | + img1 = new Image(); | |
| 311 | + img1.src = "images/accueil/logo_facebook_on.png"; | |
| 312 | + img2 = new Image(); | |
| 313 | + img2.src = "images/accueil/logo_youtube_on.png"; | |
| 314 | + | |
| 315 | + </script> | |
| 316 | + | |
| 317 | + | |
| 318 | +<main> | |
| 319 | + <div class="tableau_infos_logement_container" > | |
| 320 | + <div id="tableau_infos1" > | |
| 321 | + | |
| 322 | + | |
| 323 | + <div id="bloc_visite_print" class="bloc_visite"> | |
| 324 | + <div style="display:block;text-align:center;padding-top:10px;"> | |
| 325 | + <div style="display:inline-block;text-align:left;"> | |
| 326 | + | |
| 327 | + <A href="tel:+14187816238" style="display:block;"> | |
| 328 | + <img src="images/page/icone_phone_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 329 | + 418-781-6238 | |
| 330 | + </A> | |
| 331 | + | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + <div id="slider_photos_container"> | |
| 339 | + | |
| 340 | + <div class="nomComplexe"> | |
| 341 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 342 | + <div class="nomComplexeAdresse">1700, ave Ernest-Lapointe # 407</div> | |
| 343 | + </div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class="cycle-slideshow" | |
| 347 | + data-cycle-pause-on-hover="true" | |
| 348 | + data-cycle-speed="3000" | |
| 349 | + data-cycle-manual-speed="300" | |
| 350 | + data-cycle-swipe=true | |
| 351 | + data-cycle-pager=".cycle-pager-relative" | |
| 352 | + > | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_1.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 357 | + | |
| 358 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_2.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 359 | + | |
| 360 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_3.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 361 | + | |
| 362 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_4.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 363 | + | |
| 364 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_5.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 365 | + | |
| 366 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_6.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 367 | + | |
| 368 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_7.jpg" style="-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #333;"> | |
| 369 | + | |
| 370 | + <div class="cycle-pager-relative"></div> | |
| 371 | + </div> | |
| 372 | + | |
| 373 | + </div> | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + <div id="DescriptionComplexe"> | |
| 380 | + <IMG SRC="./quebec/le_bourg_du_maizeret/images/1700/maizerets_1.jpg" id="PhotoComplexePrint"> | |
| 381 | + Le complexe du Bourg du Maizerets, gagnants d'un prix Nobilis lors de sa modernisation extérieur, est situé à l'orée du futur écoquartier d'Estimauville. En voiture, en autobus ou à vélo, accédez à Saint-Roch, à Limoilou ou à la Haute-Ville en quelques instants. Le parc Maizerets, un véritable joyau à Québec, et la piste cyclable menant à la Baie de Beauport, figurent aussi parmi les meilleurs atouts de ce complexe hors du commun. | |
| 382 | + </div> | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + <TABLE class="dispos_table"> | |
| 387 | + <TR class="nomComplexePrint"> | |
| 388 | + <TD colspan="6"> | |
| 389 | + Cité Limoilou : Le Bourg du Maizerets<BR> | |
| 390 | + <div class="nomComplexeAdresse">1700, ave Ernest-Lapointe # 407</div> | |
| 391 | + </TD> | |
| 392 | + </TR> | |
| 393 | + <TR class="tr_header_appart"> | |
| 394 | + <TD>Grandeur</TD> | |
| 395 | + <TD>Disponibilité</TD> | |
| 396 | + <TD>Étage</TD> | |
| 397 | + <TD>Inclus</TD> | |
| 398 | + <TD>Prix</TD> | |
| 399 | + <TD>Favoris</TD> | |
| 400 | + </TR> | |
| 401 | + <TR class="dispos_tr_logement_appart"> | |
| 402 | + | |
| 403 | + <TD>3½</TD> | |
| 404 | + | |
| 405 | + <TD TITLE="Disponible maintenant">maintenant</TD> | |
| 406 | + <TD TITLE="3e étage">3<SUP>e</SUP></TD> | |
| 407 | + <TD class="Inclus"> | |
| 408 | + <IMG class="SemiMeuble" SRC="./images/icones/semimeuble.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Poêle et réfrigérateur inclus" TITLE="Poêle et réfrigérateur inclus"><IMG class="Chauffage" SRC="images/icones/chauffage.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Chauffage inclus" TITLE="Chauffage inclus"><IMG class="EauChaude" SRC="images/icones/eau_chaude.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Eau chaude incluse" TITLE="Eau chaude incluse"><IMG class="Eclairage" SRC="images/icones/eclairage.png" BORDER=0 WIDTH=30 HEIGHT=30 ALT="Électricité incluse" TITLE="Électricité incluse"> | |
| 409 | + </TD> | |
| 410 | + | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + <TD id="prix_td">1000 $</TD> | |
| 415 | + <TD class="favoris_td"><A href="JavaScript:ajoutLF('602');" id='LienF_602_' onClick="compteur('LIDClic=602&Clic=Favoris');return true;"><IMG SRC="images/icones/coeur.png" ALT="Ajouter ce logement à vos favoris" TITLE="Ajouter ce logement à vos favoris" class="favoris_img"></A></TD> | |
| 416 | + </TR> | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | + | |
| 421 | + </TABLE> | |
| 422 | + | |
| 423 | +</div> | |
| 424 | + | |
| 425 | +<!-- Téléphone et email Mode iphone -------------------------------------------------------------------> | |
| 426 | + <div id="bloc_visite2" class="bloc_visite"> | |
| 427 | + <div class="bloc_infos_header_fix"> | |
| 428 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 429 | + </div> | |
| 430 | + | |
| 431 | + | |
| 432 | + <div style="display:block;text-align:center;margin-top:4px;"> | |
| 433 | + <div class="bloc_contact" style="display:inline-block;"> | |
| 434 | + <A href="JavaScript:void(0);" id="lienEcrivez2" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('2');compteur('CC=LienLogementEmail');return true;"> | |
| 435 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 436 | + Écrivez-nous | |
| 437 | + </A> | |
| 438 | + | |
| 439 | + | |
| 440 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo2"> | |
| 441 | + <form onSubmit="envoiDemande(2);return false;" id="demande2" name="demande2"> | |
| 442 | + <input type="hidden" name="LogementID" value="602"> | |
| 443 | + <div class="titreInput3 font_gras" id="PrenomTxt2">Prénom</div> | |
| 444 | + <input type="text" value="" class="form_input" id="Prenom2" name="Prenom" style="width:140px;"> | |
| 445 | + <br clear="all"> | |
| 446 | + | |
| 447 | + <div class="titreInput3 font_gras" id="NomTxt2">Nom</div> | |
| 448 | + <input type="text" value="" class="form_input" id="Nom2" name="Nom" style="width:140px;"> | |
| 449 | + <br clear="all"> | |
| 450 | + | |
| 451 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt2">Tél. domicile</div> | |
| 452 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile2" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 453 | + <br clear="all"> | |
| 454 | + | |
| 455 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 456 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire2" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:140px;"> | |
| 457 | + <br clear="all"> | |
| 458 | + | |
| 459 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 460 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail2" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:140px;"> | |
| 461 | + <br clear="all"> | |
| 462 | + | |
| 463 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt2">Courriel</div> | |
| 464 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email2" name="Email" style="width:170px;"> | |
| 465 | + <br clear="all"> | |
| 466 | + | |
| 467 | + | |
| 468 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID2" style="width:258px;font-size:12px;"> | |
| 469 | + <option value="0" SELECTED id="ProvenanceIDTxt2">Où avez-vous entendu parler de nous?</option> | |
| 470 | + | |
| 471 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 472 | + | |
| 473 | + <option value="9" style="color:#333;">Facebook</option> | |
| 474 | + | |
| 475 | + <option value="7" style="color:#333;">Référence</option> | |
| 476 | + | |
| 477 | + <option value="1" style="color:#333;">Google</option> | |
| 478 | + | |
| 479 | + <option value="5" style="color:#333;">Radio</option> | |
| 480 | + | |
| 481 | + <option value="8" style="color:#333;">Télévision</option> | |
| 482 | + | |
| 483 | + <option value="6" style="color:#333;">Affiches</option> | |
| 484 | + | |
| 485 | + </select> | |
| 486 | + <br clear="all"> | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + <textarea id="Message2" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 491 | + <br clear="all"> | |
| 492 | + | |
| 493 | + <br clear="all"> | |
| 494 | + <div id="contourCaptcha2" > | |
| 495 | + <div id="recaptcha2" ></div> | |
| 496 | + </div> | |
| 497 | + <br> | |
| 498 | + <input type="hidden" name="captcha" id="captcha2" value=""> | |
| 499 | + | |
| 500 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 501 | + </form> | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + </div> | |
| 508 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 509 | + </div> | |
| 510 | + </div> | |
| 511 | + </div> | |
| 512 | + | |
| 513 | +<!-- Caractéristiques de l'appartement ---------------------------------------------------------> | |
| 514 | + <div id="carac_appart" class="bloc_infos"> | |
| 515 | + <div id="carac_appart_header" class="bloc_infos_header" onClick="$('#carac_appart_contenu').toggle();if( $('#carac_appart_contenu').css('display') != 'none' ) {$('#carac_appart_fleche_up').css('display','none');$('#carac_appart_fleche_down').css('display','inline-block');} else {$('#carac_appart_fleche_up').css('display','inline-block');$('#carac_appart_fleche_down').css('display','none');}"> | |
| 516 | + <div id="carac_appart_titre" class="bloc_infos_titre">Caractéristiques de l'appartement</div> | |
| 517 | + <div id="carac_appart_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 518 | + <div id="carac_appart_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 519 | + </div> | |
| 520 | + | |
| 521 | + <div id="carac_appart_contenu" class="bloc_infos_contenu"> | |
| 522 | + | |
| 523 | + <div id="carac_appart_1" class="carac_appart_contenu"> | |
| 524 | + | |
| 525 | + <div class='carac_icone'><IMG SRC='images/icones/soleil_am.png' WIDTH=40 HEIGHT=30 ALT='Ensoleillement am' TITLE='Ensoleillement am'>Ensoleillement am</div> | |
| 526 | + | |
| 527 | +<div class='carac_icone'><IMG SRC='images/icones/locker1.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Espace de rangement inclus' TITLE='Espace de rangement inclus'>Espace de rangement inclus</div> | |
| 528 | + | |
| 529 | +<div class='carac_icone'><IMG SRC='images/icones/balcon.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Balcon' TITLE='Balcon'>Balcon 54 pi<SUP>2</SUP></div> | |
| 530 | + | |
| 531 | +<div class='carac_icone'><IMG SRC='images/icones/insono2.png' BORDER=0 WIDTH=30 HEIGHT=30 ALT='Insonorisation standard' TITLE='Insonorisation standard'>Insonorisation standard</div> | |
| 532 | + | |
| 533 | +</div><div id="carac_appart_2" class="carac_appart_contenu"><div style='margin-top:10px;margin-bottom:10px;'><div id='superficie_encadre'>500 pi<SUP>2</SUP></div><div class='carac_icone' style='display:inline;'>Superficie</div></div> | |
| 534 | + | |
| 535 | +<br><div style='font-weight:bold;font-size:14px;'>Revêtements :</div><div style='padding-left:0px;padding-top:2px;font-size:12px;line-height:20px;'><img src='images/icones/revetement.png' border=0 width=40 style='margin:0;margin-right:4px;vertical-align:top;'>Bois franc, mosaïque, tuile vinyle</div> | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + </div> | |
| 542 | + </div> | |
| 543 | + </div> | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + <!-- Plan ---------------------------------------------------------------------------> | |
| 551 | + | |
| 552 | + <div id="plan" class="bloc_infos" style="page-break-before:always;"> | |
| 553 | + <div id="plan_header" class="bloc_infos_header" onClick="$('#plan_contenu').toggle();if( $('#plan_contenu').css('display') != 'none' ) {$('#plan_fleche_up').css('display','none');$('#plan_fleche_down').css('display','inline-block');} else {$('#plan_fleche_up').css('display','inline-block');$('#plan_fleche_down').css('display','none');}"> | |
| 554 | + <div id="plan_titre" class="bloc_infos_titre">Plan de l'appartement</div> | |
| 555 | + <div id="plan_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 556 | + <div id="plan_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 557 | + </div> | |
| 558 | + <div id="plan_contenu" class="bloc_infos_contenu"> | |
| 559 | + <img src="./quebec/le_bourg_du_maizeret/plans/1700_app_407.png" title="Plan appartement 1700, app 407" ALT="Plan appartement 1700, app 407" style="page-break-before:always; width:inherit; max-width: 90%; height:auto"> | |
| 560 | + </div> | |
| 561 | + </div> | |
| 562 | + | |
| 563 | + | |
| 564 | + | |
| 565 | +</div> | |
| 566 | + | |
| 567 | + | |
| 568 | + | |
| 569 | +<div id="groupe2"> | |
| 570 | + | |
| 571 | +<!-- Téléphone et email -------------------------------------------------------------------> | |
| 572 | + <div id="bloc_visite1" class="bloc_infos"> | |
| 573 | + <div class="bloc_infos_header_fix"> | |
| 574 | + <div class="bloc_infos_titre">Pour une visite ou plus d'information</div> | |
| 575 | + </div> | |
| 576 | + | |
| 577 | + <div class="bloc_infos_contenu"> | |
| 578 | + | |
| 579 | + | |
| 580 | + <div class="bloc_contact"> | |
| 581 | + <A href="JavaScript:void(0);" id="lienEcrivez1" style="display:block;border-right:1px solid #FFF;border-left:1px solid #FFF;cursor:pointer;" onClick="toggleEcrivez('1');compteur('CC=LienLogementEmail');return true;"> | |
| 582 | + <img src="images/page/icone_courriel_gris.png" style="margin-right:6px;vertical-align:middle;"> | |
| 583 | + Écrivez-nous | |
| 584 | + </A> | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + <div style="display:none;border-left:1px solid #666;border-right:1px solid #666;border-bottom:1px solid #666;background-color:#F6F6F6;padding:5px;" id="demandeinfo1"> | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | + <form onSubmit="envoiDemande(1);return false;" id="demande1" name="demande1"> | |
| 594 | + <input type="hidden" name="LogementID" value="602"> | |
| 595 | + <div class="titreInput3 font_gras" id="PrenomTxt1">Prénom</div> | |
| 596 | + <input type="text" value="" class="form_input" id="Prenom1" name="Prenom" style="width:136px;"> | |
| 597 | + <br clear="all"> | |
| 598 | + | |
| 599 | + <div class="titreInput3 font_gras" id="NomTxt1">Nom</div> | |
| 600 | + <input type="text" value="" class="form_input" id="Nom1" name="Nom" style="width:136px;"> | |
| 601 | + <br clear="all"> | |
| 602 | + | |
| 603 | + <div class="titreInput3 font_gras" id="PhoneDomicileTxt1">Tél. domicile</div> | |
| 604 | + <div class="asterisk">*</div><input class="form_input phoneNumber" type="tel" id="PhoneDomicile1" name="PhoneDomicile" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 605 | + <br clear="all"> | |
| 606 | + | |
| 607 | + <div class="titreInput3 font_gras">Tél. cellulaire</div> | |
| 608 | + <input class="form_input phoneNumber" type="tel" id="PhoneCellulaire1" name="PhoneCellulaire" value="" placeholder="(___) ___-____" style="width:136px;"> | |
| 609 | + <br clear="all"> | |
| 610 | + | |
| 611 | + <div class="titreInput3 font_gras">Tél. travail</div> | |
| 612 | + <input class="form_input phoneBureau" type="tel" id="PhoneTravail1" name="PhoneTravail" value="" placeholder="(___) ___-____#________" style="width:136px;"> | |
| 613 | + <br clear="all"> | |
| 614 | + | |
| 615 | + <div class="titreInput3 font_gras" style="width:60px;" id="EmailTxt1">Courriel</div> | |
| 616 | + <div class="asterisk">*</div><input type="text" value="" class="form_input" id="Email1" name="Email" style="width:136px;"> | |
| 617 | + | |
| 618 | + <br clear="all"> | |
| 619 | + | |
| 620 | + <select class="form_input" name="ProvenanceID" id="ProvenanceID1" style="width:100% max-width:270px;color:#333;font-size:12px;"> | |
| 621 | + <option value="0" SELECTED id="ProvenanceIDTxt1" style="font-weight:bold;">Où avez-vous entendu parler de nous?</option> | |
| 622 | + | |
| 623 | + <option value="2" style="color:#333;">Kijiji</option> | |
| 624 | + | |
| 625 | + <option value="9" style="color:#333;">Facebook</option> | |
| 626 | + | |
| 627 | + <option value="7" style="color:#333;">Référence</option> | |
| 628 | + | |
| 629 | + <option value="1" style="color:#333;">Google</option> | |
| 630 | + | |
| 631 | + <option value="5" style="color:#333;">Radio</option> | |
| 632 | + | |
| 633 | + <option value="8" style="color:#333;">Télévision</option> | |
| 634 | + | |
| 635 | + <option value="6" style="color:#333;">Affiches</option> | |
| 636 | + | |
| 637 | + </select> | |
| 638 | + <br clear="all"> | |
| 639 | + | |
| 640 | + <textarea id="Message1" name="Message" class="form_question" style="width:248px;height:60px;"></textarea> | |
| 641 | + | |
| 642 | + <br clear="all"> | |
| 643 | + <br> | |
| 644 | + <div id="contourCaptcha1" style="padding:0;margin-top:4px;"> | |
| 645 | + <div id="recaptcha1" style="transform:scale(0.84);-webkit-transform:scale(0.84);transform-origin:0 0;-webkit-transform-origin:0 0;margin:0;"></div> | |
| 646 | + </div> | |
| 647 | + <br> | |
| 648 | + <input type="hidden" name="captcha" id="captcha1" value=""> | |
| 649 | + <input type="submit" value="Envoyer la demande" style="margin-left:54px;"> | |
| 650 | + </form> | |
| 651 | + </div> | |
| 652 | + <a href="tel:+14186234006"><img src="images/page/icone_phone_gris.png">418-623-4006<img src="images/accueil/icone_24-7.png" style="height:43px;padding-left:14px;"></a> | |
| 653 | + </div> | |
| 654 | + | |
| 655 | + </div> | |
| 656 | + </div> | |
| 657 | + | |
| 658 | +<!-- Emplacement ----------------------------------------------------------------> | |
| 659 | + <div id="emplacement" class="bloc_infos"> | |
| 660 | + <div id="emplacement_header" class="bloc_infos_header" onClick="$('#emplacement_contenu').toggle();if( $('#emplacement_contenu').css('display') != 'none' ) {$('#emplacement_fleche_up').css('display','none');$('#emplacement_fleche_down').css('display','inline-block');} else {$('#emplacement_fleche_up').css('display','inline-block');$('#emplacement_fleche_down').css('display','none');}"> | |
| 661 | + <div id="emplacement_titre" class="bloc_infos_titre">emplacement de l'appartement</div> | |
| 662 | + <div id="emplacement_fleche_up" class="bloc_infos_fleche_up"></div> | |
| 663 | + <div id="emplacement_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 664 | + </div> | |
| 665 | + <div id="emplacement_contenu" class="bloc_infos_contenu"> | |
| 666 | + | |
| 667 | + | |
| 668 | + | |
| 669 | + <div id="mapDiv"></div> | |
| 670 | + <script> | |
| 671 | + var adr1 = "1700"; | |
| 672 | + var adr2 = "ave Ernest-Lapointe"; | |
| 673 | + </script> | |
| 674 | + <div class="bloc_infos_lien_map" style="height:34px;"> | |
| 675 | + | |
| 676 | + <A href="http://maps.apple.com/?q=46.841726,-71.215989&z=15," target="_blank"><img src="images/googlemap.png" ><div>1700, ave Ernest-Lapointe, Cité Limoilou</div></A> | |
| 677 | + | |
| 678 | + </div> | |
| 679 | + </div> | |
| 680 | + </div> | |
| 681 | + | |
| 682 | + | |
| 683 | +<!-- Caractéristiques immeuble ----------------------------------------------------------> | |
| 684 | + <div id="services" class="bloc_infos"> | |
| 685 | + <div id="services_header" class="bloc_infos_header" onClick="$('#services_contenu').toggle();if( $('#services_contenu').css('display') != 'none' ) {$('#services_fleche_up').css('display','none');$('#services_fleche_down').css('display','inline-block');} else {$('#services_fleche_up').css('display','inline-block');$('#services_fleche_down').css('display','none');}"> | |
| 686 | + <div id="services_titre" class="bloc_infos_titre">Caractéristiques immeuble</div> | |
| 687 | + <div id="services_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 688 | + <div id="services_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 689 | + </div> | |
| 690 | + <div id="services_contenu" class="bloc_infos_contenu"> | |
| 691 | + <ul> | |
| 692 | + | |
| 693 | + | |
| 694 | + | |
| 695 | + | |
| 696 | + Immeuble de 3 étages | |
| 697 | + <DIV STYLE="padding:2px;"></DIV> | |
| 698 | + 41 logements | |
| 699 | + <DIV STYLE="padding:2px;"></DIV> | |
| 700 | + | |
| 701 | + | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + <li>Accès Bell Fibe</li><li>Accès Vidéotron</li><li>Buanderie libre service</li><li>Intercom</li><li>Service d'urgence 24/7</li><li>Surveillance par caméra</li> | |
| 706 | + </ul> | |
| 707 | + | |
| 708 | + | |
| 709 | + </div> | |
| 710 | + </div> | |
| 711 | +<!-- Services optionnels ----------------------------------------------------------> | |
| 712 | +<div id="servicesop" class="bloc_infos"> | |
| 713 | + <div id="servicesop_header" class="bloc_infos_header" onClick="$('#servicesop_contenu').toggle();if( $('#servicesop_contenu').css('display') != 'none' ) {$('#servicesop_fleche_up').css('display','none');$('#servicesop_fleche_down').css('display','inline-block');} else {$('#servicesop_fleche_up').css('display','inline-block');$('#servicesop_fleche_down').css('display','none');}"> | |
| 714 | + <div id="servicesop_titre" class="bloc_infos_titre">Services optionnels</div> | |
| 715 | + <div id="servicesop_fleche_up" class="bloc_infos_fleche_up" ></div> | |
| 716 | + <div id="servicesop_fleche_down" class="bloc_infos_fleche_down"></div> | |
| 717 | + </div> | |
| 718 | + <div id="servicesop_contenu" class="bloc_infos_contenu"> | |
| 719 | + <ul> | |
| 720 | +<li>Stationnement extérieur<br>au coût de 50$ / mois</li><li>Rangement supplémentaire<br>pour 25$ / mois</li> | |
| 721 | + </ul> | |
| 722 | + | |
| 723 | + </div> | |
| 724 | + </div> | |
| 725 | + </div > | |
| 726 | + | |
| 727 | + <div id="notePrix"> | |
| 728 | + Les informations et les prix sont sujets à changements sans préavis. | |
| 729 | + </div><BR> | |
| 730 | + | |
| 731 | + | |
| 732 | + | |
| 733 | +</main> | |
| 734 | + | |
| 735 | + | |
| 736 | + | |
| 737 | + | |
| 738 | +<script> | |
| 739 | + | |
| 740 | + var GoogleLat = "46.841726"; | |
| 741 | + var GoogleLn = "-71.215989"; | |
| 742 | + var adrs = "1700,ave Ernest-Lapointe"; | |
| 743 | + var NomComplexe = "Le Bourg du Maizerets"; | |
| 744 | + | |
| 745 | +/* | |
| 746 | + function initMap() { | |
| 747 | + var mapOptions = { | |
| 748 | + zoom: 15, | |
| 749 | + center: new google.maps.LatLng(46.841726,-71.215989), | |
| 750 | + mapTypeId: google.maps.MapTypeId.ROADMAP | |
| 751 | + } | |
| 752 | + var map = new google.maps.Map(document.getElementById('mapDiv'), mapOptions); | |
| 753 | + var image = 'images/google/marker.png'; | |
| 754 | + var image_on = 'images/google/marker_on.png'; | |
| 755 | + | |
| 756 | + var myLatLng = new google.maps.LatLng(46.841726,-71.215989); | |
| 757 | + var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: image_on }); | |
| 758 | + | |
| 759 | + } | |
| 760 | +*/ | |
| 761 | + | |
| 762 | +var img_url = $(".cycle-slideshow").find("img").attr('src'); | |
| 763 | + | |
| 764 | + | |
| 765 | + function genMap(adr1,adr2){ | |
| 766 | + var adr2 = adr2.replace(/<\/?sup>/gi, ''); | |
| 767 | + var urlencoded = encodeURIComponent(adr1+', '+adr2+', Québec, QC'); | |
| 768 | + var mapadr = '<iframe width="100%" height="100%" src="https://maps.google.com/maps?q='+urlencoded+'&t=&z=15&hl=fr&ie=UTF8&iwloc=&output=embed&draggable=true" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>'; | |
| 769 | + $("#mapDiv").html(mapadr); | |
| 770 | + } | |
| 771 | + genMap(adr1,adr2); | |
| 772 | +</script> | |
| 773 | + | |
| 774 | + | |
| 775 | +<!-- <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyAuFZi-w4gn23I81Olz65VPpkW2OCmtPeU&callback=initMap"></script> --> | |
| 776 | + <!-- <script src="js/map.js?v=2" type="text/javascript"></script> --> | |
| 777 | + | |
| 778 | + | |
| 779 | + | |
| 780 | + </div> | |
| 781 | + | |
| 782 | + <script> | |
| 783 | + | |
| 784 | + updatePageLF(); | |
| 785 | + | |
| 786 | + | |
| 787 | + | |
| 788 | + </script> | |
| 789 | + <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script> | |
| 790 | + | |
| 791 | + | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | +<footer class="mainfooter"> | |
| 796 | + <div> | |
| 797 | + | |
| 798 | + <div> | |
| 799 | + <a href="appartements-disponibles.asp">Appartements</a> | |
| 800 | + <a href="luxenbourg-condos-locatifs.asp">Condos locatifs</a> | |
| 801 | + <a href="notifications.php">Notifications</a> | |
| 802 | + <a href="appartements-disponibles.asp?Favoris=1&LF=null">Vos favoris</a> | |
| 803 | + <a href="/carrieres/" target="_blank">Carrières</a> | |
| 804 | + <a href="contact.asp">Contact</a> | |
| 805 | + <br> | |
| 806 | + <a href="politique_confid.asp">Politique de confidentialité</a> | |
| 807 | + </div> | |
| 808 | + <div> | |
| 809 | + <a href="https://linkedin.com/company/logisbourg/" target="_blank"><div class="icon_linkedin" title="LinkedIn"></div></a> | |
| 810 | + <a href="https://www.facebook.com/Logisbourg-inc-689523987917988/" target="_blank"><div class="icon_facebook" title="Facebook"></div></a> | |
| 811 | + <a href="https://www.youtube.com/channel/UClE0TIIlHeTY0rLgo2i8ZTA/" target="_blank"><div class="icon_youtube" title="Youtube"></div></a> | |
| 812 | + </div> | |
| 813 | + <div>Tous droits réservés © Logisbourg Inc – <script>var dt = new Date(); document.write(dt.getFullYear());</script></div> | |
| 814 | + </div> | |
| 815 | +</footer> | |
| 816 | + | |
| 817 | + <script> | |
| 818 | + | |
| 819 | + updateLF(); | |
| 820 | + | |
| 821 | + </script> | |
| 822 | + | |
| 823 | + | |
| 824 | + </body> | |
| 825 | + | |
| 826 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/expected.json
+145 −0
@@ -0,0 +1,145 @@ | ||
| 1 | +{ | |
| 2 | + "count": 10, | |
| 3 | + "listings": [ | |
| 4 | + { | |
| 5 | + "uid": "logisbourg:23", | |
| 6 | + "url": "https://www.logisbourg.com/appartement.asp?SID=1&CID=4&LID=23&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le%20Bourgarde", | |
| 7 | + "title": "4855, 6e Avenue Ouest #403 — 4½", | |
| 8 | + "address": "4855, 6e Avenue Ouest #403", | |
| 9 | + "sector": "Charlesbourg / Lebourgneuf", | |
| 10 | + "city": "Québec", | |
| 11 | + "unit_type": "4½", | |
| 12 | + "price": 1215.0, | |
| 13 | + "availability": "Disponible 1er septembre 2026", | |
| 14 | + "area_sqft": 990.0, | |
| 15 | + "n_images": 6, | |
| 16 | + "n_amenities": 15 | |
| 17 | + }, | |
| 18 | + { | |
| 19 | + "uid": "logisbourg:446", | |
| 20 | + "url": "https://www.logisbourg.com/appartement.asp?SID=1&CID=5&LID=446&Secteur=Charlesbourg/Lebourgneuf&Complexe=Les%20Terrasses%20du%20Bourg", | |
| 21 | + "title": "4600, 7e Avenue Ouest — 3½", | |
| 22 | + "address": "4600, 7e Avenue Ouest", | |
| 23 | + "sector": "Charlesbourg / Lebourgneuf", | |
| 24 | + "city": "Québec", | |
| 25 | + "unit_type": "3½", | |
| 26 | + "price": 1000.0, | |
| 27 | + "availability": "Disponible 1er septembre 2026", | |
| 28 | + "area_sqft": 575.0, | |
| 29 | + "n_images": 6, | |
| 30 | + "n_amenities": 13 | |
| 31 | + }, | |
| 32 | + { | |
| 33 | + "uid": "logisbourg:490", | |
| 34 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=490&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 35 | + "title": "2335, 18e Rue #5 — 3½", | |
| 36 | + "address": "2335, 18e Rue #5", | |
| 37 | + "sector": "Cité Limoilou", | |
| 38 | + "city": "Québec", | |
| 39 | + "unit_type": "3½", | |
| 40 | + "price": 955.0, | |
| 41 | + "availability": "Disponible 1er septembre 2026", | |
| 42 | + "area_sqft": 450.0, | |
| 43 | + "n_images": 4, | |
| 44 | + "n_amenities": 14 | |
| 45 | + }, | |
| 46 | + { | |
| 47 | + "uid": "logisbourg:507", | |
| 48 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=507&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 49 | + "title": "1600, ave Ernest-Lapointe #4 — 3½", | |
| 50 | + "address": "1600, ave Ernest-Lapointe #4", | |
| 51 | + "sector": "Cité Limoilou", | |
| 52 | + "city": "Québec", | |
| 53 | + "unit_type": "3½", | |
| 54 | + "price": 990.0, | |
| 55 | + "availability": "Disponible 1er septembre 2026", | |
| 56 | + "area_sqft": 460.0, | |
| 57 | + "n_images": 7, | |
| 58 | + "n_amenities": 13 | |
| 59 | + }, | |
| 60 | + { | |
| 61 | + "uid": "logisbourg:519", | |
| 62 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=519&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 63 | + "title": "1610, ave Ernest-Lapointe #4 — 3½", | |
| 64 | + "address": "1610, ave Ernest-Lapointe #4", | |
| 65 | + "sector": "Cité Limoilou", | |
| 66 | + "city": "Québec", | |
| 67 | + "unit_type": "3½", | |
| 68 | + "price": 990.0, | |
| 69 | + "availability": "Disponible 1er novembre 2026", | |
| 70 | + "area_sqft": 460.0, | |
| 71 | + "n_images": 7, | |
| 72 | + "n_amenities": 13 | |
| 73 | + }, | |
| 74 | + { | |
| 75 | + "uid": "logisbourg:568", | |
| 76 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=568&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 77 | + "title": "1700, ave Ernest-Lapointe #103 — 3½", | |
| 78 | + "address": "1700, ave Ernest-Lapointe #103", | |
| 79 | + "sector": "Cité Limoilou", | |
| 80 | + "city": "Québec", | |
| 81 | + "unit_type": "3½", | |
| 82 | + "price": 955.0, | |
| 83 | + "availability": "Disponible 1er octobre 2026", | |
| 84 | + "area_sqft": 400.0, | |
| 85 | + "n_images": 7, | |
| 86 | + "n_amenities": 15 | |
| 87 | + }, | |
| 88 | + { | |
| 89 | + "uid": "logisbourg:597", | |
| 90 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=597&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 91 | + "title": "1700, ave Ernest-Lapointe #402 — 4½", | |
| 92 | + "address": "1700, ave Ernest-Lapointe #402", | |
| 93 | + "sector": "Cité Limoilou", | |
| 94 | + "city": "Québec", | |
| 95 | + "unit_type": "4½", | |
| 96 | + "price": 1180.0, | |
| 97 | + "availability": "Disponible maintenant", | |
| 98 | + "area_sqft": 725.0, | |
| 99 | + "n_images": 7, | |
| 100 | + "n_amenities": 18 | |
| 101 | + }, | |
| 102 | + { | |
| 103 | + "uid": "logisbourg:602", | |
| 104 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=602&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 105 | + "title": "1700, ave Ernest-Lapointe #407 — 3½", | |
| 106 | + "address": "1700, ave Ernest-Lapointe #407", | |
| 107 | + "sector": "Cité Limoilou", | |
| 108 | + "city": "Québec", | |
| 109 | + "unit_type": "3½", | |
| 110 | + "price": 1000.0, | |
| 111 | + "availability": "Disponible maintenant", | |
| 112 | + "area_sqft": 500.0, | |
| 113 | + "n_images": 7, | |
| 114 | + "n_amenities": 16 | |
| 115 | + }, | |
| 116 | + { | |
| 117 | + "uid": "logisbourg:680", | |
| 118 | + "url": "https://www.logisbourg.com/appartement.asp?SID=3&CID=15&LID=680&Secteur=Beauport&Complexe=Le%20Bourg%20du%20Fleuve", | |
| 119 | + "title": "14, rue Francheville #5 — 3½", | |
| 120 | + "address": "14, rue Francheville #5", | |
| 121 | + "sector": "Beauport", | |
| 122 | + "city": "Québec", | |
| 123 | + "unit_type": "3½", | |
| 124 | + "price": 1020.0, | |
| 125 | + "availability": "Disponible 1er octobre 2026", | |
| 126 | + "area_sqft": 570.0, | |
| 127 | + "n_images": 6, | |
| 128 | + "n_amenities": 13 | |
| 129 | + }, | |
| 130 | + { | |
| 131 | + "uid": "logisbourg:74", | |
| 132 | + "url": "https://www.logisbourg.com/appartement.asp?SID=1&CID=4&LID=74&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le%20Bourgarde", | |
| 133 | + "title": "4755, 6e Avenue Ouest #15 — 4½", | |
| 134 | + "address": "4755, 6e Avenue Ouest #15", | |
| 135 | + "sector": "Charlesbourg / Lebourgneuf", | |
| 136 | + "city": "Québec", | |
| 137 | + "unit_type": "4½", | |
| 138 | + "price": 1240.0, | |
| 139 | + "availability": "Disponible maintenant", | |
| 140 | + "area_sqft": 940.0, | |
| 141 | + "n_images": 6, | |
| 142 | + "n_amenities": 16 | |
| 143 | + } | |
| 144 | + ] | |
| 145 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/logisbourg/index.json
+79 −0
@@ -0,0 +1,79 @@ | ||
| 1 | +{ | |
| 2 | + "77243f264c0b9346c89f": { | |
| 3 | + "method": "GET", | |
| 4 | + "url": "https://www.logisbourg.com/appartements-disponibles.asp", | |
| 5 | + "status": 200, | |
| 6 | + "content_type": "text/html", | |
| 7 | + "file": "77243f264c0b9346c89f.html" | |
| 8 | + }, | |
| 9 | + "d10c2a538d9ee2c28c92": { | |
| 10 | + "method": "GET", | |
| 11 | + "url": "https://www.logisbourg.com/appartement.asp?SID=1&CID=4&LID=23&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le%20Bourgarde", | |
| 12 | + "status": 200, | |
| 13 | + "content_type": "text/html", | |
| 14 | + "file": "d10c2a538d9ee2c28c92.html" | |
| 15 | + }, | |
| 16 | + "0775e0402a875a4f1a49": { | |
| 17 | + "method": "GET", | |
| 18 | + "url": "https://www.logisbourg.com/appartement.asp?SID=1&CID=4&LID=74&Secteur=Charlesbourg/Lebourgneuf&Complexe=Le%20Bourgarde", | |
| 19 | + "status": 200, | |
| 20 | + "content_type": "text/html", | |
| 21 | + "file": "0775e0402a875a4f1a49.html" | |
| 22 | + }, | |
| 23 | + "e463a2614a108c8f0e19": { | |
| 24 | + "method": "GET", | |
| 25 | + "url": "https://www.logisbourg.com/appartement.asp?SID=1&CID=5&LID=446&Secteur=Charlesbourg/Lebourgneuf&Complexe=Les%20Terrasses%20du%20Bourg", | |
| 26 | + "status": 200, | |
| 27 | + "content_type": "text/html", | |
| 28 | + "file": "e463a2614a108c8f0e19.html" | |
| 29 | + }, | |
| 30 | + "7c25921a2e6877cf2d16": { | |
| 31 | + "method": "GET", | |
| 32 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=490&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 33 | + "status": 200, | |
| 34 | + "content_type": "text/html", | |
| 35 | + "file": "7c25921a2e6877cf2d16.html" | |
| 36 | + }, | |
| 37 | + "9f6f8b846e4607e1a966": { | |
| 38 | + "method": "GET", | |
| 39 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=568&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 40 | + "status": 200, | |
| 41 | + "content_type": "text/html", | |
| 42 | + "file": "9f6f8b846e4607e1a966.html" | |
| 43 | + }, | |
| 44 | + "740b39f996bf963eef54": { | |
| 45 | + "method": "GET", | |
| 46 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=507&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 47 | + "status": 200, | |
| 48 | + "content_type": "text/html", | |
| 49 | + "file": "740b39f996bf963eef54.html" | |
| 50 | + }, | |
| 51 | + "281ef0cdcdc9845367c2": { | |
| 52 | + "method": "GET", | |
| 53 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=519&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 54 | + "status": 200, | |
| 55 | + "content_type": "text/html", | |
| 56 | + "file": "281ef0cdcdc9845367c2.html" | |
| 57 | + }, | |
| 58 | + "ef76df46029bde765a3e": { | |
| 59 | + "method": "GET", | |
| 60 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=602&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 61 | + "status": 200, | |
| 62 | + "content_type": "text/html", | |
| 63 | + "file": "ef76df46029bde765a3e.html" | |
| 64 | + }, | |
| 65 | + "b8e8755219ab29d0d9e1": { | |
| 66 | + "method": "GET", | |
| 67 | + "url": "https://www.logisbourg.com/appartement.asp?SID=2&CID=14&LID=597&Secteur=Cit%C3%A9%20Limoilou&Complexe=Le%20Bourg%20du%20Maizerets", | |
| 68 | + "status": 200, | |
| 69 | + "content_type": "text/html", | |
| 70 | + "file": "b8e8755219ab29d0d9e1.html" | |
| 71 | + }, | |
| 72 | + "661f04def6d5ea43a183": { | |
| 73 | + "method": "GET", | |
| 74 | + "url": "https://www.logisbourg.com/appartement.asp?SID=3&CID=15&LID=680&Secteur=Beauport&Complexe=Le%20Bourg%20du%20Fleuve", | |
| 75 | + "status": 200, | |
| 76 | + "content_type": "text/html", | |
| 77 | + "file": "661f04def6d5ea43a183.html" | |
| 78 | + } | |
| 79 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/logisco/020a2ff275eb9071360c.html
+2093 −0
@@ -0,0 +1,2093 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + <script nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs"> | |
| 5 | + window.dataLayer = [] | |
| 6 | +</script> | |
| 7 | + <!-- Google Tag Manager --> | |
| 8 | + <script nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 9 | + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 10 | + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 11 | + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;var n=d.querySelector('[nonce]'); | |
| 12 | + n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f); | |
| 13 | + })(window,document,'script','dataLayer','GTM-PR75X6VZ');</script> | |
| 14 | + <!-- End Google Tag Manager --> | |
| 15 | + <meta name="csrf-token" content="RcK0g54Vsq52dUtLxz6zGOlBZlnXZoocezFO9jj4"> | |
| 16 | + <meta charset="utf-8"> | |
| 17 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 18 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes"> | |
| 19 | + | |
| 20 | + <style nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs">@charset "UTF-8";:root{--vs-colors--lightest: rgba(60, 60, 60, .26);--vs-colors--light: rgba(60, 60, 60, .5);--vs-colors--dark: #333;--vs-colors--darkest: rgba(0, 0, 0, .15);--vs-search-input-color: inherit;--vs-search-input-placeholder-color: inherit;--vs-font-size: 1rem;--vs-line-height: 1.4;--vs-state-disabled-bg: rgb(248, 248, 248);--vs-state-disabled-color: var(--vs-colors--light);--vs-state-disabled-controls-color: var(--vs-colors--light);--vs-border-color: var(--vs-colors--lightest);--vs-border-width: 1px;--vs-border-style: solid;--vs-border-radius: 4px;--vs-actions-padding: 4px 6px 0 3px;--vs-controls-color: var(--vs-colors--light);--vs-controls-size: 1;--vs-controls--deselect-text-shadow: 0 1px 0 #fff;--vs-selected-bg: #f0f0f0;--vs-selected-color: var(--vs-colors--dark);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: #fff;--vs-dropdown-color: inherit;--vs-dropdown-z-index: 1000;--vs-dropdown-min-width: 160px;--vs-dropdown-max-height: 350px;--vs-dropdown-box-shadow: 0px 3px 6px 0px var(--vs-colors--darkest);--vs-dropdown-option-bg: #000;--vs-dropdown-option-color: var(--vs-dropdown-color);--vs-dropdown-option-padding: 3px 20px;--vs-dropdown-option--active-bg: #5897fb;--vs-dropdown-option--active-color: #fff;--vs-dropdown-option--deselect-bg: #fb5858;--vs-dropdown-option--deselect-color: #fff}:root{--vs-disabled-bg: var(--vs-state-disabled-bg);--vs-disabled-color: var(--vs-state-disabled-color)}html,body,p,ul,li,h1,h2,h3{margin:0;padding:0}h1,h2,h3{font-size:100%;font-weight:400}ul{list-style:none}input{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img{height:auto;max-width:100%}html{line-height:normal;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2rem}a{text-decoration:none;background-color:transparent}strong{font-weight:bolder}img{border-style:none}input{margin:0;font-family:inherit}input{overflow:visible}[type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner{padding:0;border-style:none}[type=button]:-moz-focusring{outline:1px dotted ButtonText}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}:root{--base-font: $base-font;--spacing-0x: 0;--spacing-0_25x: 1.6em;--spacing-0_5x: 3.2em;--spacing-1x: 6.4em;--spacing-1_25x: 8em;--spacing-1_5x: 9.6em;--spacing-2x: 12em;--border-radius-none: 0;--border-radius-sm: 2rem;--border-radius-md: 4rem;--border-radius-lg: 6rem}@media (max-width:750px){:root{--spacing-0x: 0;--spacing-0_5x: .8em;--spacing-1x: 1.6em;--spacing-2x: 4em}}html{font-size:.7320644217vw}body{line-height:normal}h1,h2,h3{font-weight:400;font-size:1em}a{color:currentColor}img{display:block;width:100%;height:100%}html{font-size:.6944444444vw}@media (max-width:750px){html{font-size:2.7777777778vw}}html{scroll-behavior:smooth}.alertTop-close{color:#363636;font-family:Macan}.alertTop-close{font-weight:400;font-size:2rem}@media (max-width:750px){.alertTop-close{font-weight:400;font-size:1.8rem}}.projectServices-title{font-family:Macan;font-weight:400;font-size:2.2rem;line-height:1.3}@media (max-width:750px){.projectServices-title{font-size:2.1rem;line-height:1.4}}.projectServices-listItem,.alertTop-content{font-family:Macan;font-weight:300;font-size:1.6rem;line-height:1.4}.breadcrumb-item{font-family:Macan;font-weight:400;font-size:1.2rem;line-height:1.3}.unitHeader-address{font-family:Macan;font-weight:400;font-size:1.5rem;line-height:1.5}.mainMenu-elementLink{font-family:Macan;font-weight:500;font-size:1.7rem;line-height:1}.tooltip-subtitle{font-family:Macan;font-weight:500;font-size:1.3rem;line-height:1}.unitHeader-label{font-family:Macan;font-weight:300;font-size:4.4rem;line-height:1.3}@media (max-width:750px){.unitHeader-label{font-size:3.2rem;line-height:1.2}}@font-face{font-family:icon-cms;src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4);src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-cms-DWd4ei5T.woff2?39a3p4) format("woff2"),url(/theme/build/assets/icomoon-cms-DQc2SeWf.ttf?39a3p4) format("truetype"),url(/theme/build/assets/icomoon-cms-PZ9bTWPn.woff?39a3p4) format("woff"),url(/theme/build/assets/icomoon-cms-B-zWZdiB.svg?39a3p4#icomoon-cms) format("svg");font-weight:400;font-style:normal;font-display:block}[class^=icon-cms-],[class*=" icon-cms-"]{font-family:icon-cms!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-cms-]:after,[class*=" icon-cms-"]:after{position:absolute;top:0;left:0}.icon-cms-close:before{content:""}.icon-cms-social-share:before{content:""}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Semibold-P894naFN.woff2) format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Book-BKtKbQB6.woff2) format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Regular-Tnze7Wf6.woff2) format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Light-D0XdM3nR.woff2) format("woff2");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Thin-D8KRJN3P.woff2) format("woff2");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:icomoon-logisco;src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j);src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-logisco-3ELZv8tI.ttf?u4aq2j) format("truetype"),url(/theme/build/assets/icomoon-logisco-DAB2sWOk.woff?u4aq2j) format("woff"),url(/theme/build/assets/icomoon-logisco-CJnwMfM_.svg?u4aq2j#icomoon) format("svg");font-weight:400;font-style:normal;font-display:swap}[class^=icon-logisco-],[class*=" icon-logisco-"]{font-weight:400;font-family:icomoon-logisco!important;font-style:normal;font-variant:normal;line-height:1;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-logisco-]:after,[class*=" icon-logisco-"]:after{position:absolute;top:0;left:0}.icon-logisco-service--dishwasher_connection:before{content:""}.icon-logisco-service--fridge_waterline:before{content:""}.icon-logisco-service--high_ceilings:before{content:""}.icon-logisco-service--visible_concrete_columns:before{content:""}.icon-logisco-service--storage:before{content:""}.icon-logisco-service--secure_bike_rack:before{content:""}.icon-logisco-service--recycling_chute:before{content:""}.icon-logisco-service--secure_entrance:before{content:""}.icon-logisco-service--car_wash:before{content:""}.icon-logisco-service--bike_rack:before{content:""}.icon-logisco-service--moto_parking:before{content:""}.icon-logisco-service--bike_repair_station:before{content:""}.icon-logisco-service--intercom:before{content:""}.icon-logisco-service--garbage_chute:before{content:""}.icon-logisco-service--secure_post_office_locker:before{content:""}.icon-logisco-service--security_cam:before{content:""}.icon-logisco-service--charging_station:before{content:""}.icon-logisco-service--elevator:before{content:""}.icon-logisco-service--wifi:before{content:""}.icon-logisco-service--indoor_parking:before{content:""}.icon-logisco-service--washer_dryer:before{content:""}.icon-logisco-service--electricity:before{content:""}.icon-logisco-service--hot_water:before{content:""}.icon-logisco-service--heating:before{content:""}.icon-logisco-service--cable_distribution:before{content:""}.icon-logisco-service--ac:before{content:""}.icon-logisco-phone:before{content:""}.icon-logisco-information:before{content:""}.icon-logisco-3d:before{content:""}.icon-cms-close{font-family:icomoon-logisco!important}.icon-cms-close:before{content:""}.icon-cms-social-share{font-family:icomoon-logisco!important}.icon-cms-social-share:before{content:""}.alertTop{position:fixed;top:0;z-index:100;display:flex;align-items:center;justify-content:center;width:100%;height:4.8em;padding-top:1em;padding-bottom:1em;color:#fff;font-family:Macan}@media (max-width:750px){.alertTop{justify-content:space-between}}.alertTop-on .alertTop-placeholder{height:4.8em}.alertTop--main{background-color:#0385d4}.alertTop--main .alertTop-close{color:#fff}@media (min-width:751px){.alertTop-text--mobile{display:none}}@media (max-width:750px){.alertTop-text--desktop{display:none}}.alertTop-close{position:absolute;right:1em;font-size:1.2em!important;font-style:normal}@media (max-width:750px){.alertTop-close{right:1.5em}}.alertTop{padding-top:1.2em;padding-bottom:1.2em}.alertTop-close{position:absolute;font-size:3em!important}.alertTop-content a{text-decoration:underline;text-underline-offset:.1em}@media (max-width:750px){.alertTop{padding:.8em 4em .8em 1.6em}.alertTop-close{right:.5rem}.alertTop-content{font-size:1.2em}}.breadcrumb-list{display:flex;gap:1.2rem;margin-bottom:4em;padding-bottom:4em;border-bottom:.1rem solid #0F1223}.breadcrumb-item{display:flex;color:#0f1223}.breadcrumb-item:not(:last-child):after{display:block;padding-left:1.2rem;content:"|"}@media (max-width:750px){.breadcrumb-list{padding:1rem 0;margin:0 0 .6rem;border-bottom:none;overflow-x:scroll}.breadcrumb-item{white-space:nowrap}}.mainMenu{display:flex;gap:3em;align-items:center;justify-content:flex-end}.mainMenu-item{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;width:100%}.mainMenu-element{display:flex;align-items:center}.mainMenu-elementLink{display:flex;flex-direction:row;gap:.25em;align-items:center;padding:.3571428571em;color:#000;font-weight:500;font-size:1.4em;font-family:Macan;line-height:1.2142857143em;letter-spacing:.0642857143em;white-space:nowrap}.mainMenu-list{display:flex;gap:4.4em}@media (max-width:750px){.mainMenu{gap:1em}.mainMenu-list{display:none}}.mainMenu{gap:0;width:100%;justify-content:space-between;padding:0 6.4em}.mainMenu-list{margin-right:auto;margin-left:auto;gap:3.2em}.mainMenu-item{white-space:nowrap}.mainMenu-item:last-child{display:flex;flex-direction:row;align-items:center;gap:3.2em}.mainMenu-item:last-child:before{content:"";background-color:#c9d5dc;width:.1em;height:2.4em}.mainMenu-elementLink{font-size:1.7rem;letter-spacing:0}@media (max-width:750px){.mainMenu{padding:0 1.6em}}.mainHeader{position:fixed;top:0;left:0;z-index:100;width:100%;background-color:#fff}.mainHeader-placeholder{height:5.5em}@media (max-width:750px){.mainHeader-placeholder{height:5em}}.mainHeader-shadow{opacity:0}.mainHeader-bg{position:absolute;left:0;display:block;width:100%;height:5.5em;background-color:#fff;transform:translateY(-100%)}.mainHeader-nav{position:relative;display:flex;align-items:center;justify-content:space-between;height:5.5em;padding:1.5em 6.4em}.mainHeader-brand{display:flex;align-items:center}.mainHeader-logo{display:flex;width:70%;height:100%}.mainHeader-logo.mainHeader-logo--white{display:none}@media (max-width:750px){.mainHeader-bg{height:5em;transform:translateY(0)}.mainHeader-brand{font-size:.15em}.mainHeader-logo{width:85em}.mainHeader-nav{height:5em;padding:0 4em}}.mainHeader-nav{padding:0;border-bottom:.1em solid #C9D5DC}.mainHeader-logo{width:13.7em}.mainHeader-linksList{display:flex;gap:.8em;align-items:center}.mainHeader-listItem{display:flex;align-items:center;justify-content:center;height:max-content}@media (min-width:751px){.mainHeader-listItem{min-width:6.3rem;min-height:4.5rem;padding-right:.8rem;padding-left:.8rem;border:.2rem solid transparent;border-radius:8rem}}.icon-logisco-phone{display:flex;align-items:center;justify-content:center;padding:0;color:#000;font-size:2em;background-color:transparent;border:none;aspect-ratio:1}@supports not (aspect-ratio:1){.icon-logisco-phone{position:relative}.icon-logisco-phone:after{display:block;content:"";width:100%;padding-top:100%}}.icon-logisco-phone{font-size:2.3em}@media (max-width:750px){.mainHeader-nav{padding:0}.mainHeader-brand{margin-right:auto}.mainHeader-logo{width:70em}.mainHeader-linksList{gap:2.2rem}}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}:root{--dp-font-family: Macan !important;--dp-input-padding: 1em 3em 1em 1.2em !important;--dp-font-size: 1.6rem !important;--dp-preview-font-size: 1.3rem !important;--dp-border-radius: .8rem !important;--dp-cell-size: 1.8em !important}.logisco-unit .projectServices-list{grid-template-columns:repeat(2,1fr)}@media (max-width:750px){.logisco-unit .projectServices-list{grid-template-columns:repeat(1,1fr)}}.unitHeader{position:relative;display:flex;flex-direction:column;gap:3.2em;padding-top:4em;padding-right:12.9rem;padding-bottom:8em;padding-left:12.9rem;background-color:#f3f8ff}.unitHeader .breadcrumb-list{margin-bottom:1em;padding-bottom:0;border-bottom:none}.unitHeader-background{position:absolute;top:75em;right:0;bottom:0;left:0;background-color:#fff}.unitHeader-topContainer{display:flex;align-items:center;justify-content:space-between}.unitHeader-bottomContainer{z-index:20;display:flex;gap:1.6em;justify-content:space-between}.unitHeader-imageWrapper--mobile{display:none}.unitHeader-label{display:inline-block;align-items:center}.unitHeader-labelDivider{margin-right:.3em}.unitHeader-address{color:#0385d4;text-decoration:underline}.unitHeader-callToActions{position:absolute;top:1.5em;right:1.5em;z-index:20;display:flex;gap:.8em;justify-content:flex-end;width:100%}.unitHeader-callToActions .icon-cms-social-share{color:#0f1223!important;font-size:1.3em}.unitHeader-link{display:block;height:max-content;margin-top:1.6em}.unitHeader-imageWrapper{position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;background-color:#fff;border-radius:.8em;aspect-ratio:1.5068226121}@supports not (aspect-ratio:calc(773 / 513)){.unitHeader-imageWrapper{position:relative}.unitHeader-imageWrapper:after{display:block;content:"";width:100%;padding-top:66.3648124191%}.unitHeader-imageWrapper>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper img{width:unset;max-width:100%;height:100%;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-bottomLeft{position:relative;display:flex;flex-direction:column;width:65%;height:100%}.unitHeader-bottomLeft .projectServices{margin:0}.unitHeader-imageOverlay{display:none}@media (max-width:750px){.unitHeader-labelDivider{display:none}.unitHeader-imageWrapper--mobile{position:relative;display:block;aspect-ratio:1.3333333333}@supports not (aspect-ratio:calc(360 / 270)){.unitHeader-imageWrapper--mobile{position:relative}.unitHeader-imageWrapper--mobile:after{display:block;content:"";width:100%;padding-top:75%}.unitHeader-imageWrapper--mobile>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper--mobile img{width:unset;max-width:100%;height:unset;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-imageWrapper--mobile .unitHeader-callToActions{display:flex}.unitHeader-imageWrapper--mobile .unitHeader-callToActions .icon-cms-social-share{font-size:1.5em}.unitHeader-callToActions,.unitHeader-imageWrapper{display:none}.unitHeader{padding:0;background-color:#fff}.unitHeader .projectServices{padding:3.2em 1.6em}.unitHeader-background{display:none}.unitHeader-imageWrapper{border-radius:0}.unitHeader-imageOverlay{position:absolute;z-index:10;display:block;background:linear-gradient(180deg,#02002405,#02002405),linear-gradient(180deg,#02002466,#00d4ff00 35%);top:0;right:0;bottom:0;left:0}.unitHeader-topContainer .breadcrumb-list{margin:0;padding:1rem 0 1rem 1.6em}.unitHeader-text{width:100%}.unitHeader-label{display:flex;flex-direction:column;align-items:flex-start;margin-top:1.6rem}.unitHeader-label--small{font-size:2.8rem}.unitHeader-label,.unitHeader-link{padding-right:1.6rem;padding-left:1.6rem}.unitHeader-bottomContainer{flex-direction:column}.unitHeader-bottomLeft{width:100%}}.tooltip-container{display:none}.tooltip-subtitle{margin-bottom:1.6em}.projectServices-title .tooltip-subtitle{margin-bottom:0;font-size:1.3rem}.projectServices{display:flex;flex-direction:column;margin-right:14.4em;margin-left:14.4em;padding-top:12em;padding-bottom:0;gap:4em}.unitHeader-bottomLeft .projectServices{padding-top:8em}.unitHeader-bottomLeft .projectServices+.projectServices{padding-top:2.4em}.projectServices-title{position:relative;display:flex;gap:.4em}.projectServices-title .icon-logisco-information{color:#0385d4;margin-top:.2em}.projectServices-list{display:grid;padding-top:2.4em;padding-bottom:4em;border-bottom:.1em solid #EEF0F2;grid-template-columns:repeat(3,1fr);column-gap:3.2em;row-gap:1.6em}.unitHeader-bottomLeft .projectServices-list{padding-bottom:2.4em}.projectServices-itemContainer{display:flex;gap:.8em;align-items:center}.projectServices-icon{font-size:3em}.projectServices-listItem{display:flex;gap:.8em;align-items:center}@media (max-width:750px){.projectServices{margin-right:1.6em;margin-left:1.6em}.projectServices-list{grid-template-columns:repeat(1,1fr);gap:2em 1em}}</style> | |
| 21 | + <script | |
| 22 | + id="locallogic-sdk" | |
| 23 | + nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" | |
| 24 | + async | |
| 25 | + src="https://sdk.locallogic.co/sdks-js/1.23.32/index.umd.js" | |
| 26 | +></script> | |
| 27 | + | |
| 28 | +<script nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs"> | |
| 29 | + (function() { | |
| 30 | + let sdkLoaded = false; | |
| 31 | + let domReady = false; | |
| 32 | + | |
| 33 | + const globalOptions = { | |
| 34 | + locale: "fr", | |
| 35 | + appearance: { | |
| 36 | + theme: "day", | |
| 37 | + variables: { | |
| 38 | + "--ll-color-primary": "#002d5c", | |
| 39 | + "--ll-color-primary-variant1": "#219cd7", | |
| 40 | + "--ll-font-family": "Macan, sans-serif" | |
| 41 | + } | |
| 42 | + } | |
| 43 | + }; | |
| 44 | + | |
| 45 | + function tryInitialize() { | |
| 46 | + if (!sdkLoaded || !domReady) { | |
| 47 | + return; | |
| 48 | + } | |
| 49 | + | |
| 50 | + const sdkContainer = document.getElementById("local-content-widget"); | |
| 51 | + | |
| 52 | + if (!sdkContainer) { | |
| 53 | + return; | |
| 54 | + } | |
| 55 | + | |
| 56 | + const rect = sdkContainer.getBoundingClientRect(); | |
| 57 | + if (rect.width === 0 || rect.height === 0) { | |
| 58 | + setTimeout(tryInitialize, 100); | |
| 59 | + return; | |
| 60 | + } | |
| 61 | + | |
| 62 | + const lat = parseFloat(sdkContainer.dataset.localLogicLat); | |
| 63 | + const lng = parseFloat(sdkContainer.dataset.localLogicLng); | |
| 64 | + | |
| 65 | + const ll = LLSDKsJS("420d1d42c48e9186122576db04e678af.41a932d2-2a53-461a-b85f-b5dd90355bce", globalOptions); | |
| 66 | + | |
| 67 | + const sdkOptions = { | |
| 68 | + lat: lat, | |
| 69 | + lng: lng, | |
| 70 | + marker: { | |
| 71 | + lat: lat, | |
| 72 | + lng: lng | |
| 73 | + }, | |
| 74 | + mapProvider: { | |
| 75 | + name: "google", | |
| 76 | + key: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q" | |
| 77 | + }, | |
| 78 | + scoresMenu: { | |
| 79 | + categories: { | |
| 80 | + transport: { | |
| 81 | + hide: JSON.parse(sdkContainer.dataset.localLogicTransport || 'false'), | |
| 82 | + scores: { | |
| 83 | + pedestrian_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportPedestrianFriendly || 'false') }, | |
| 84 | + cycling_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCyclingFriendly || 'false') }, | |
| 85 | + transit_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportTransitFriendly || 'false') }, | |
| 86 | + car_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCarFriendly || 'false') } | |
| 87 | + } | |
| 88 | + }, | |
| 89 | + education: { | |
| 90 | + hide: JSON.parse(sdkContainer.dataset.localLogicEducation || 'false'), | |
| 91 | + scores: { | |
| 92 | + daycares: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationDaycares || 'false') }, | |
| 93 | + primary_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationPrimarySchools || 'false') }, | |
| 94 | + high_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationHighSchools || 'false') } | |
| 95 | + } | |
| 96 | + }, | |
| 97 | + amenities: { | |
| 98 | + hide: JSON.parse(sdkContainer.dataset.localLogicAmenities || 'false'), | |
| 99 | + scores: { | |
| 100 | + shopping: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesShopping || 'false') }, | |
| 101 | + groceries: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesGroceries || 'false') }, | |
| 102 | + restaurants: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesRestaurants || 'false') }, | |
| 103 | + cafes: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesCafes || 'false') } | |
| 104 | + } | |
| 105 | + }, | |
| 106 | + character: { | |
| 107 | + hide: JSON.parse(sdkContainer.dataset.localLogicCharacter || 'false'), | |
| 108 | + scores: { | |
| 109 | + nightlife: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterNightlife || 'false') }, | |
| 110 | + vibrant: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterVibrant || 'false') }, | |
| 111 | + historic: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterHistoric || 'false') }, | |
| 112 | + quiet: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterQuiet || 'false') } | |
| 113 | + } | |
| 114 | + }, | |
| 115 | + nature: { | |
| 116 | + hide: JSON.parse(sdkContainer.dataset.localLogicNature || 'false'), | |
| 117 | + scores: { | |
| 118 | + parks: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureParks || 'false') }, | |
| 119 | + greenery: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureGreenery || 'false') } | |
| 120 | + } | |
| 121 | + }, | |
| 122 | + wellness: { hide: JSON.parse(sdkContainer.dataset.localLogicWellness || 'false') }, | |
| 123 | + health: { hide: JSON.parse(sdkContainer.dataset.localLogicHealth || 'false') } | |
| 124 | + } | |
| 125 | + } | |
| 126 | + }; | |
| 127 | + | |
| 128 | + ll.create("local-content", sdkContainer, sdkOptions); | |
| 129 | + } | |
| 130 | + | |
| 131 | + document.getElementById('locallogic-sdk').addEventListener('load', function() { | |
| 132 | + sdkLoaded = true; | |
| 133 | + tryInitialize(); | |
| 134 | + }); | |
| 135 | + | |
| 136 | + if (document.readyState === 'loading') { | |
| 137 | + document.addEventListener('DOMContentLoaded', function() { | |
| 138 | + domReady = true; | |
| 139 | + tryInitialize(); | |
| 140 | + }); | |
| 141 | + } else { | |
| 142 | + domReady = true; | |
| 143 | + tryInitialize(); | |
| 144 | + } | |
| 145 | + })(); | |
| 146 | +</script> | |
| 147 | + | |
| 148 | + <script async src="https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="f89f0a00-9a89-4d45-9a32-8a86321619f9"></script> | |
| 149 | + <script type="text/javascript" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs"> | |
| 150 | + function OptanonWrapper() {} | |
| 151 | + </script> | |
| 152 | + | |
| 153 | + <link rel="icon" type="image/png" href="https://logisco.com/theme/images/favicon_logisco-57x57.png" sizes="57x57" /> | |
| 154 | + | |
| 155 | + <!-- TODO this is blocking.... revert to old script --> | |
| 156 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /> <script nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs"> | |
| 157 | + window.Cheetah = { | |
| 158 | + locale: 'fr', | |
| 159 | + themeDir: "theme", | |
| 160 | + gMapKey: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q", | |
| 161 | + isMobile: false, | |
| 162 | + chatbotBaseUrl: "https:\/\/chatbot-api.logisco.com\/v1", | |
| 163 | + form: { | |
| 164 | + maxFileSize: parseInt("4"), | |
| 165 | + maxFileCount: parseInt("5"), | |
| 166 | + fileExtensions: ["jpg","jpeg","png","docx","doc","pdf","txt"] }, | |
| 167 | + formSecurity: { | |
| 168 | + default: 'turnstile', | |
| 169 | + isDisabled: false, | |
| 170 | + config: {"fallback":["turnstile","captcha"],"captcha":{"key":""},"turnstile":{"key":"0x4AAAAAAAc7m33H9T6pSzmR"}} }, | |
| 171 | + reservation: { | |
| 172 | + locationUrl: "https:\/\/logisco.com\/fr\/appartements-a-louer" } | |
| 173 | + } | |
| 174 | + </script> | |
| 175 | + | |
| 176 | + | |
| 177 | + <noscript> | |
| 178 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /> </noscript> | |
| 179 | + <style nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs"> .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } @media (max-width: 750px) { .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr 3fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 .carousel-wrapper { grid-template-columns: 1fr 1fr 1fr; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { grid-template-columns: ; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr; } } .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } @media (max-width: 750px) { .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } } .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } @media (max-width: 750px) { .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } } .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } @media (max-width: 750px) { .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } } .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } @media (max-width: 750px) { .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr; } } .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } @media (max-width: 750px) { .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } } .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 100%; } @media (max-width: 750px) { .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 80%; } } </style> | |
| 180 | + <!-- SEO --> | |
| 181 | + <title>Appartement 506 | District GC LOGISCO</title> | |
| 182 | +<meta name="description" content=""> | |
| 183 | +<meta property="og:title" content="Appartement 506 | District GC LOGISCO"> | |
| 184 | +<meta property="og:url" content="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506"> | |
| 185 | + <meta property="og:image" content="https://logisco.com/static/vb/6523-1200/appartement-506-district-gc-logisco.webp"> | |
| 186 | +<meta property="og:description" content=""> | |
| 187 | + | |
| 188 | +<meta id="gtm-page-info" data-gtm-page-type="Unité" data-gtm-page-name="Appartement 506" data-gtm-project-id="1728" data-gtm-unit-id="11634" data-gtm-unit-type="APARTMENT" data-gtm-available="1" data-gtm-tag="Projet neuf" data-gtm-is-in-wishlist="" data-gtm-is-in-reservation="" data-gtm-unit-price="163.7" data-gtm-nom-liste="unites_du_projet_district_gc"> | |
| 189 | + | |
| 190 | + | |
| 191 | + <link rel="canonical" href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506"/> | |
| 192 | + | |
| 193 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506" | |
| 194 | + hreflang="x-default"> | |
| 195 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506" | |
| 196 | + hreflang="fr"> | |
| 197 | + <meta id="gtm-additional-page-info" data-gtm-wishlist-count="0" data-gtm-reservation-count="0" data-gtm-device_type="desktop"> | |
| 198 | + | |
| 199 | + <meta id="mobile_menu_preload" href="https://logisco.com/mobile_menu.json" /> | |
| 200 | + <!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET--> | |
| 201 | + <script type='text/javascript' nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs"> | |
| 202 | + (function(){var g=function(e,h,f,g){ | |
| 203 | + this.get=function(a){for(var a=a+"=",c=document.cookie.split(";"),b=0,e=c.length;b<e;b++){for(var d=c[b];" "==d.charAt(0);)d=d.substring(1,d.length);if(0==d.indexOf(a))return d.substring(a.length,d.length)}return null}; | |
| 204 | + this.set=function(a,c){var b="",b=new Date;b.setTime(b.getTime()+6048E5);b="; expires="+b.toGMTString();document.cookie=a+"="+c+b+"; path=/; "}; | |
| 205 | + this.check=function(){var a=this.get(f);if(a)a=a.split(":");else if(100!=e)"v"==h&&(e=Math.random()>=e/100?0:100),a=[h,e,0],this.set(f,a.join(":"));else return!0;var c=a[1];if(100==c)return!0;switch(a[0]){case "v":return!1;case "r":return c=a[2]%Math.floor(100/c),a[2]++,this.set(f,a.join(":")),!c}return!0}; | |
| 206 | + this.go=function(){if(this.check()){var a=document.createElement("script");a.type="text/javascript";a.src=g;document.body&&document.body.appendChild(a)}}; | |
| 207 | + this.start=function(){var t=this;"complete"!==document.readyState?window.addEventListener?window.addEventListener("load",function(){t.go()},!1):window.attachEvent&&window.attachEvent("onload",function(){t.go()}):t.go()};}; | |
| 208 | + try{(new g(100,"r","QSI_S_ZN_9H0SsDLTgAxOu1M","https://zn9h0ssdltgaxou1m-logisco.siteintercept.qualtrics.com/SIE/?Q_ZID=ZN_9H0SsDLTgAxOu1M")).start()}catch(i){}})(); | |
| 209 | + </script><div id='ZN_9H0SsDLTgAxOu1M'><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div> | |
| 210 | + <!--END WEBSITE FEEDBACK SNIPPET--> | |
| 211 | + | |
| 212 | + <script type="text/javascript" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs"> | |
| 213 | + !function(e,t){ | |
| 214 | + (e=t.createElement("script")).src="https://cdn.convertbox.com/convertbox/js/embed.js", | |
| 215 | + e.id="app-convertbox-script", | |
| 216 | + e.async=true, | |
| 217 | + e.dataset.uuid="a2c68abb-6a6e-496a-a1ca-455b6413a4c4", | |
| 218 | + document.getElementsByTagName("head")[0].appendChild(e) | |
| 219 | + }(window,document); | |
| 220 | + </script> | |
| 221 | +</head> | |
| 222 | +<body class="logisco-unit alertTop-on "> | |
| 223 | + | |
| 224 | +<noscript> | |
| 225 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PR75X6VZ" height="0" width="0" | |
| 226 | + style="display:none; visibility:hidden"></iframe> | |
| 227 | + </noscript> | |
| 228 | + | |
| 229 | +<div id="app"> | |
| 230 | + | |
| 231 | + <header class="mainHeader not_searchable" data-gtm-creative-slot="entete"> | |
| 232 | + | |
| 233 | + <div id="alertTop--650b259e98957" class="alertTop alertTop--main js-promotion-viewed" data-gtm-creative-slot="alertTop" data-gtm-creative-name="AlertTop" data-gtm-promotion-name="Nouveau site web - Centre d'aide"> | |
| 234 | +<div class="alertTop-container"> | |
| 235 | + <p class="alertTop-content alertTop-text--desktop">Trouvez votre prochain appartement à Québec et Lévis où <i><strong>vous </strong></i>serez bien chez vous– <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 236 | + <p class="alertTop-content alertTop-text--mobile">Trouvez votre prochain appartement à Québec et Lévis – <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 237 | + </div> | |
| 238 | +<i class="alertTop-close js-alertTop-close icon-cms-close"></i> | |
| 239 | +</div> | |
| 240 | + | |
| 241 | +<div class="alertTop-placeholder"></div> | |
| 242 | + | |
| 243 | + <div class="mainHeader-bg"></div> | |
| 244 | + <nav class="mainHeader-nav"> | |
| 245 | + <div class="mainMenu"> | |
| 246 | + <sliding-panel class="topMenu" context="topMenu"> | |
| 247 | + <template #button> | |
| 248 | + <button class="topMenu-button" data-gtm-event="clicEntete-menuHamburger"> | |
| 249 | + <i class="topMenu-toggle icon-cms-burger" | |
| 250 | + aria-label="Ouvrir le menu secondaire"> | |
| 251 | + </i> | |
| 252 | + </button> | |
| 253 | + </template> | |
| 254 | + <template #close> | |
| 255 | + <button class="hamburger-close" type="button" aria-label="Fermer le menu secondaire"> | |
| 256 | + <i class="icon-cms-close"></i> | |
| 257 | + </button> | |
| 258 | + <img class="mobileMenu-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 259 | + </template> | |
| 260 | + <template #content> | |
| 261 | + <ul class="slidingPanel-utilsMenuList slidingPanel-level-0"> | |
| 262 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 263 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 264 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 265 | + data-gtm-event="clicMenu" | |
| 266 | + data-gtm-label="Appartements" | |
| 267 | + > | |
| 268 | + Appartements | |
| 269 | + </a> | |
| 270 | + </li> | |
| 271 | + | |
| 272 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 273 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 274 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 275 | + data-gtm-event="clicMenu" | |
| 276 | + data-gtm-label="Espaces commerciaux" | |
| 277 | + > | |
| 278 | + Espaces commerciaux | |
| 279 | + </a> | |
| 280 | + </li> | |
| 281 | + | |
| 282 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 283 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 284 | + href="https://logisco.com/fr/futurs-projets-immobiliers" | |
| 285 | + data-gtm-event="clicMenu" | |
| 286 | + data-gtm-label="Futurs projets immobiliers" | |
| 287 | + > | |
| 288 | + Futurs projets immobiliers | |
| 289 | + </a> | |
| 290 | + </li> | |
| 291 | + | |
| 292 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 293 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 294 | + href="https://logisco.com/fr/hotels" | |
| 295 | + data-gtm-event="clicMenu" | |
| 296 | + data-gtm-label="Hôtels" | |
| 297 | + > | |
| 298 | + Hôtels | |
| 299 | + </a> | |
| 300 | + </li> | |
| 301 | + | |
| 302 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 303 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 304 | + href="https://logisco.com/fr/emplois" | |
| 305 | + data-gtm-event="clicMenu" | |
| 306 | + data-gtm-label="Emplois" | |
| 307 | + > | |
| 308 | + Emplois | |
| 309 | + </a> | |
| 310 | + </li> | |
| 311 | + | |
| 312 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 313 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 314 | + href="https://logisco.com/fr/nouvel-arrivant" | |
| 315 | + data-gtm-event="clicMenu" | |
| 316 | + data-gtm-label="Nouvel arrivant" | |
| 317 | + > | |
| 318 | + Nouvel arrivant | |
| 319 | + </a> | |
| 320 | + </li> | |
| 321 | + | |
| 322 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 323 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 324 | + href="https://logisco.com/fr/a-propos" | |
| 325 | + data-gtm-event="clicMenu" | |
| 326 | + data-gtm-label="Qui est LOGISCO" | |
| 327 | + > | |
| 328 | + Qui est LOGISCO | |
| 329 | + </a> | |
| 330 | + </li> | |
| 331 | + | |
| 332 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 333 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 334 | + href="https://logisco.com/fr/blogue" | |
| 335 | + data-gtm-event="clicMenu" | |
| 336 | + data-gtm-label="Blogue" | |
| 337 | + > | |
| 338 | + Blogue | |
| 339 | + </a> | |
| 340 | + </li> | |
| 341 | + | |
| 342 | + </ul> | |
| 343 | + </template> | |
| 344 | + <template #footer> | |
| 345 | + <div class="slidingPanel-c2a"> | |
| 346 | + <a | |
| 347 | + data-gtm-event="clickButton" data-gtm-id="centre-daide" | |
| 348 | + | |
| 349 | + href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="c2a c2a-text c2a--tertiary" | |
| 350 | + aria-label="Centre d'aide" | |
| 351 | +> | |
| 352 | + <span class="c2a-name"> | |
| 353 | + Centre d’aide | |
| 354 | + </span> | |
| 355 | + <i class="icon-cms-arrow-right"></i> | |
| 356 | + </a> | |
| 357 | + | |
| 358 | + </div> | |
| 359 | + <div class="slidingPanel-c2a"> | |
| 360 | + <a | |
| 361 | + data-gtm-event="clickButton" data-gtm-id="nous-joindre" | |
| 362 | + | |
| 363 | + href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="c2a c2a-text c2a--tertiary" | |
| 364 | + aria-label="Nous joindre" | |
| 365 | +> | |
| 366 | + <span class="c2a-name"> | |
| 367 | + Nous joindre | |
| 368 | + </span> | |
| 369 | + <i class="icon-cms-arrow-right"></i> | |
| 370 | + </a> | |
| 371 | + | |
| 372 | + </div> | |
| 373 | + </template> | |
| 374 | + </sliding-panel> | |
| 375 | + <div class="mainHeader-brand"> | |
| 376 | + <a class="mainHeader-logoLink" href="https://logisco.com/fr"> | |
| 377 | + <img class="mainHeader-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 378 | +<img class="mainHeader-logo mainHeader-logo--white" src="https://logisco.com/theme/images/logo-white.svg" height="49" width="193" alt="Logisco"> </a> | |
| 379 | + </div> | |
| 380 | + <ul class="mainMenu-list"> | |
| 381 | + | |
| 382 | +<li class="mainMenu-item "> | |
| 383 | + <div class="mainMenu-element"> | |
| 384 | + <a class="mainMenu-elementLink" | |
| 385 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 386 | + data-gtm-event="clicMenu" | |
| 387 | + data-gtm-label="Appartements" | |
| 388 | + > | |
| 389 | + Appartements | |
| 390 | + </a> | |
| 391 | + </div> | |
| 392 | + </li> | |
| 393 | + | |
| 394 | + | |
| 395 | +<li class="mainMenu-item "> | |
| 396 | + <div class="mainMenu-element"> | |
| 397 | + <a class="mainMenu-elementLink" | |
| 398 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 399 | + data-gtm-event="clicMenu" | |
| 400 | + data-gtm-label="Espaces commerciaux" | |
| 401 | + > | |
| 402 | + Espaces commerciaux | |
| 403 | + </a> | |
| 404 | + </div> | |
| 405 | + </li> | |
| 406 | + | |
| 407 | + | |
| 408 | +<li class="mainMenu-item "> | |
| 409 | + <div class="mainMenu-element"> | |
| 410 | + <a class="mainMenu-elementLink" | |
| 411 | + href="https://logisco.com/fr/hotels" | |
| 412 | + data-gtm-event="clicMenu" | |
| 413 | + data-gtm-label="Hôtels" | |
| 414 | + > | |
| 415 | + Hôtels | |
| 416 | + </a> | |
| 417 | + </div> | |
| 418 | + </li> | |
| 419 | + | |
| 420 | + | |
| 421 | +<li class="mainMenu-item "> | |
| 422 | + <div class="mainMenu-element"> | |
| 423 | + <a class="mainMenu-elementLink" | |
| 424 | + href="https://logisco.com/fr/centre-daide" | |
| 425 | + data-gtm-event="clicMenu" | |
| 426 | + data-gtm-label="Centre d'aide" | |
| 427 | + > | |
| 428 | + Centre d'aide | |
| 429 | + </a> | |
| 430 | + </div> | |
| 431 | + </li> | |
| 432 | + | |
| 433 | + </ul> | |
| 434 | + <div class="mainHeader-links"> | |
| 435 | + <ul class="mainHeader-linksList"> | |
| 436 | + <li class="mainHeader-listItem"> | |
| 437 | + <a id="mainHeader-contact" | |
| 438 | + href="https://logisco.com/fr/nous-joindre" | |
| 439 | + class="icon-logisco-phone" | |
| 440 | + type="button" | |
| 441 | + aria-label="vanilla::header.phone" | |
| 442 | + data-gtm-event="clicEntete-appelLogisco" | |
| 443 | + data-contact-cp="https://logisco.com/fr/nous-joindre" | |
| 444 | + ></a> | |
| 445 | + </li> | |
| 446 | + <li class="mainHeader-listItem"> | |
| 447 | + <wishlist-redirect-icon | |
| 448 | + :href-url="'https://logisco.com/fr/favoris'" | |
| 449 | + :default-count="0" | |
| 450 | + label="Vers page 'Favoris'" | |
| 451 | + > | |
| 452 | + </wishlist-redirect-icon> | |
| 453 | + </li> | |
| 454 | + <li class="mainHeader-listItem"> | |
| 455 | + <reservation-panel | |
| 456 | + :default-count="0" | |
| 457 | + label="Vers le 'Planificateur de visites'" | |
| 458 | + > | |
| 459 | + </reservation-panel> | |
| 460 | + </li> | |
| 461 | + </ul> | |
| 462 | +</div> | |
| 463 | +</div> | |
| 464 | + </nav> | |
| 465 | + <div class="mainHeader-shadow"></div> | |
| 466 | +</header> | |
| 467 | + | |
| 468 | +<div class="alertTop-placeholder"></div> | |
| 469 | +<div class="mainHeader-placeholder"></div> | |
| 470 | + | |
| 471 | + <input id="currentId" type="hidden" value="9ba07ed9-c481-4134-aa8e-c6a1c2efadc9"> | |
| 472 | + <input id="ancestors" type="hidden" value="["99c9a187-9f29-4895-a92e-5d01818e748d","990a9815-0c2d-41ed-be1a-0aea582d0ccf","9a745905-98da-4c55-928f-3921c5b2e1f3","9a858ae7-db87-477b-b49b-2f397beb3882","99c9a9cc-9604-4ecd-a7ec-4ec93d0e4c44","9ba07ed9-c481-4134-aa8e-c6a1c2efadc9"]"> | |
| 473 | + <nav class="left-nav"> | |
| 474 | + </nav> | |
| 475 | + | |
| 476 | + <main id="main" class="vb js-vb" data-gtm-creative-slot="mainContent"> | |
| 477 | + <div class="unitHeader js-zoom"> | |
| 478 | + <div class="unitHeader-background"></div> | |
| 479 | + <div class="unitHeader-topContainer"> | |
| 480 | + <div class="unitHeader-text"> | |
| 481 | + <div class="breadcrumb-list"> | |
| 482 | + <a class="breadcrumb-item" href="https://logisco.com/fr">Accueil</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer">Appartements à louer</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/levis">Lévis</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/levis/desjardins">Desjardins</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc">District GC</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506">Appartement 506</a> </div> | |
| 483 | + <div class="unitHeader-imageWrapper--mobile"> | |
| 484 | + <i-frame-modal-button | |
| 485 | + iframe-link="https://my.matterport.com/show/?m=SBE58bHTGLx" | |
| 486 | + class-names="unitCard-imageTag" | |
| 487 | + modal-title="Appartement 506 • District GC • Visite virtuelle" | |
| 488 | + aria-label="Bouton modal" | |
| 489 | + unit-or-project="Unit" | |
| 490 | + breakpoint="750"> | |
| 491 | + <span>Visite</span> | |
| 492 | + <i class="icon-logisco-3d"></i> | |
| 493 | + </i-frame-modal-button> | |
| 494 | + <div class="unitHeader-callToActions"> | |
| 495 | + <share-button | |
| 496 | + class="unitHeader-shareButton" | |
| 497 | + url="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506" | |
| 498 | + data-gtm-event="pageUnite-partager" | |
| 499 | + :classes="'c2a c2a-text c2a--secondary c2a-style--secondary'"> | |
| 500 | + <i class="icon-cms-social-share"></i> | |
| 501 | + <span class="c2a-name"> | |
| 502 | + Partager | |
| 503 | + </span> | |
| 504 | + </share-button> | |
| 505 | + <wishlist-toggle-icon :is-button="false" page-id="9ba07ed9-c481-4134-aa8e-c6a1c2efadc9" | |
| 506 | + :exist="false"/> | |
| 507 | + </div> | |
| 508 | + <div class="unitHeader-imageOverlay"></div> | |
| 509 | + <img class="js-zoomMobileImage" width="1200" height="1350" src="https://logisco.com/static/vb/6523-1200/plan-1728-271-planlocation-506.webp" | |
| 510 | + alt="Plan Appartement 506"> | |
| 511 | + </div> | |
| 512 | + <h1 class="unitHeader-label">Appartement 506 | |
| 513 | + <span class="unitHeader-labelDivider">•</span> | |
| 514 | + <span class="unitHeader-label--small">District GC</span> | |
| 515 | + </h1> | |
| 516 | + <a class="unitHeader-link" href="https://www.google.com/maps?q=506-5350+Boulevard+Guillaume-Couture%2C+L%C3%A9vis%2C+Qu%C3%A9bec%2C+G6V+4Z2" target="_blank" | |
| 517 | + data-gtm-event="pageUnite-lienAdresse"> | |
| 518 | + <h2 class="unitHeader-address">506-5350 Boulevard Guillaume-Couture, Lévis, Québec, G6V 4Z2</h2> | |
| 519 | + </a> | |
| 520 | + </div> | |
| 521 | + </div> | |
| 522 | + <div class="unitHeader-bottomContainer"> | |
| 523 | + <div class="unitHeader-bottomLeft"> | |
| 524 | + <div class="unitHeader-callToActions"> | |
| 525 | + <share-button | |
| 526 | + class="unitHeader-shareButton" | |
| 527 | + url="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506" | |
| 528 | + data-gtm-event="pageUnite-partager" | |
| 529 | + :classes="'c2a c2a-text c2a--secondary c2a-style--secondary'" | |
| 530 | + data-gtm-page-type="Unité" data-gtm-page-name="Appartement 506" data-gtm-project-id="1728" data-gtm-unit-id="11634" data-gtm-unit-type="APARTMENT" data-gtm-available="1" data-gtm-tag="Projet neuf" data-gtm-is-in-wishlist="" data-gtm-is-in-reservation="" data-gtm-unit-price="163.7" data-gtm-nom-liste="unites_du_projet_district_gc"> | |
| 531 | + <i class="icon-cms-social-share"></i> | |
| 532 | + <span class="c2a-name"> | |
| 533 | + Partager | |
| 534 | + </span> | |
| 535 | + </share-button> | |
| 536 | + <wishlist-toggle-icon :is-button="false" page-id="9ba07ed9-c481-4134-aa8e-c6a1c2efadc9" | |
| 537 | + :exist="false"/> | |
| 538 | + </div> | |
| 539 | + <div class="unitHeader-imageWrapper js-zoomMagnifierContainer"> | |
| 540 | + <i-frame-modal-button | |
| 541 | + iframe-link="https://my.matterport.com/show/?m=SBE58bHTGLx" | |
| 542 | + class-names="unitCard-imageTag" | |
| 543 | + modal-title="Appartement 506 • District GC • Visite virtuelle" | |
| 544 | + aria-label="Bouton modal" | |
| 545 | + unit-or-project="Unit" | |
| 546 | + breakpoint="750"> | |
| 547 | + <span>Visite</span> | |
| 548 | + <i class="icon-logisco-3d"></i> | |
| 549 | + </i-frame-modal-button> | |
| 550 | + <div class="unitHeader-imageOverlay"></div> | |
| 551 | + <img class="js-zoomImage" width="1200" height="1350" src="https://logisco.com/static/vb/6523-1200/plan-1728-271-planlocation-506.webp" | |
| 552 | + alt="Plan Appartement 506"> | |
| 553 | + </div> | |
| 554 | + | |
| 555 | + | |
| 556 | + <div class="projectServices"> | |
| 557 | + <div class="projectServices-container"> | |
| 558 | + <h2 class="projectServices-title"> | |
| 559 | + Inclusions | |
| 560 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 561 | + <span class="tooltip-container js-tooltipContainer"> | |
| 562 | + <span class="tooltip-subtitle">Il s’agit des inclusions comprises dans le prix mensuel de votre logement.</span> | |
| 563 | + </span> | |
| 564 | + </h2> | |
| 565 | + <ul class="projectServices-list"> | |
| 566 | + <li class="projectServices-itemContainer"> | |
| 567 | + <h3 class="projectServices-listItem"> | |
| 568 | + <i class="projectServices-icon icon-logisco-service--heating"></i> | |
| 569 | + Chauffage | |
| 570 | + </h3> | |
| 571 | + </li> | |
| 572 | + <li class="projectServices-itemContainer"> | |
| 573 | + <h3 class="projectServices-listItem"> | |
| 574 | + <i class="projectServices-icon icon-logisco-service--hot_water"></i> | |
| 575 | + Eau chaude | |
| 576 | + </h3> | |
| 577 | + </li> | |
| 578 | + <li class="projectServices-itemContainer"> | |
| 579 | + <h3 class="projectServices-listItem"> | |
| 580 | + <i class="projectServices-icon icon-logisco-service--electricity"></i> | |
| 581 | + Électricité | |
| 582 | + </h3> | |
| 583 | + </li> | |
| 584 | + <li class="projectServices-itemContainer"> | |
| 585 | + <h3 class="projectServices-listItem"> | |
| 586 | + <i class="projectServices-icon icon-logisco-service--indoor_parking"></i> | |
| 587 | + Un stationnement intérieur | |
| 588 | + </h3> | |
| 589 | + </li> | |
| 590 | + <li class="projectServices-itemContainer"> | |
| 591 | + <h3 class="projectServices-listItem"> | |
| 592 | + <i class="projectServices-icon icon-logisco-service--ac"></i> | |
| 593 | + Climatisation | |
| 594 | + </h3> | |
| 595 | + </li> | |
| 596 | + <li class="projectServices-itemContainer"> | |
| 597 | + <h3 class="projectServices-listItem"> | |
| 598 | + <i class="projectServices-icon icon-logisco-service--washer_dryer"></i> | |
| 599 | + Laveuse-sécheuse | |
| 600 | + </h3> | |
| 601 | + </li> | |
| 602 | + <li class="projectServices-itemContainer"> | |
| 603 | + <h3 class="projectServices-listItem"> | |
| 604 | + <i class="projectServices-icon icon-logisco-service--wifi"></i> | |
| 605 | + Wi-Fi haute vitesse | |
| 606 | + </h3> | |
| 607 | + </li> | |
| 608 | + <li class="projectServices-itemContainer"> | |
| 609 | + <h3 class="projectServices-listItem"> | |
| 610 | + <i class="projectServices-icon icon-logisco-service--cable_distribution"></i> | |
| 611 | + Service télé | |
| 612 | + </h3> | |
| 613 | + </li> | |
| 614 | + <li class="projectServices-itemContainer"> | |
| 615 | + <h3 class="projectServices-listItem"> | |
| 616 | + <i class="projectServices-icon icon-logisco-service--storage"></i> | |
| 617 | + Rangement | |
| 618 | + </h3> | |
| 619 | + </li> | |
| 620 | + </ul> | |
| 621 | + </div> | |
| 622 | + </div> | |
| 623 | + | |
| 624 | + | |
| 625 | + <div class="projectServices"> | |
| 626 | + <div class="projectServices-container"> | |
| 627 | + <h2 class="projectServices-title"> | |
| 628 | + Particularités | |
| 629 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 630 | + <span class="tooltip-container js-tooltipContainer"> | |
| 631 | + <span class="tooltip-subtitle">Il s’agit d’éléments distinctifs propres à cet appartement.</span> | |
| 632 | + </span> | |
| 633 | + </h2> | |
| 634 | + <ul class="projectServices-list"> | |
| 635 | + <li class="projectServices-itemContainer"> | |
| 636 | + <h3 class="projectServices-listItem"> | |
| 637 | + <i class="projectServices-icon icon-logisco-service--dishwasher_connection"></i> | |
| 638 | + Entrée lave-vaisselle | |
| 639 | + </h3> | |
| 640 | + </li> | |
| 641 | + <li class="projectServices-itemContainer"> | |
| 642 | + <h3 class="projectServices-listItem"> | |
| 643 | + <i class="projectServices-icon icon-logisco-service--visible_concrete_columns"></i> | |
| 644 | + Colonnes en béton apparent | |
| 645 | + </h3> | |
| 646 | + </li> | |
| 647 | + <li class="projectServices-itemContainer"> | |
| 648 | + <h3 class="projectServices-listItem"> | |
| 649 | + <i class="projectServices-icon icon-logisco-service--high_ceilings"></i> | |
| 650 | + Plafond 9 pieds + | |
| 651 | + </h3> | |
| 652 | + </li> | |
| 653 | + <li class="projectServices-itemContainer"> | |
| 654 | + <h3 class="projectServices-listItem"> | |
| 655 | + <i class="projectServices-icon icon-logisco-service--fridge_waterline"></i> | |
| 656 | + Sortie d'eau pour réfrigérateur | |
| 657 | + </h3> | |
| 658 | + </li> | |
| 659 | + </ul> | |
| 660 | + </div> | |
| 661 | + </div> | |
| 662 | + | |
| 663 | + | |
| 664 | + <div class="projectServices"> | |
| 665 | + <div class="projectServices-container"> | |
| 666 | + <h2 class="projectServices-title"> | |
| 667 | + Services offerts | |
| 668 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 669 | + <span class="tooltip-container js-tooltipContainer"> | |
| 670 | + <span class="tooltip-subtitle">Il s'agit des services offerts aux locataires de ce projet immobilier. Notez que les services peuvent varier d'un immeuble à l'autre.</span> | |
| 671 | + </span> | |
| 672 | + </h2> | |
| 673 | + <ul class="projectServices-list"> | |
| 674 | + <li class="projectServices-itemContainer"> | |
| 675 | + <h3 class="projectServices-listItem"> | |
| 676 | + <i class="projectServices-icon icon-logisco-service--elevator"></i> | |
| 677 | + Ascenseur | |
| 678 | + </h3> | |
| 679 | + </li> | |
| 680 | + <li class="projectServices-itemContainer"> | |
| 681 | + <h3 class="projectServices-listItem"> | |
| 682 | + <i class="projectServices-icon icon-logisco-service--security_cam"></i> | |
| 683 | + Caméra de surveillance | |
| 684 | + </h3> | |
| 685 | + </li> | |
| 686 | + <li class="projectServices-itemContainer"> | |
| 687 | + <h3 class="projectServices-listItem"> | |
| 688 | + <i class="projectServices-icon icon-logisco-service--intercom"></i> | |
| 689 | + Interphone | |
| 690 | + </h3> | |
| 691 | + </li> | |
| 692 | + <li class="projectServices-itemContainer"> | |
| 693 | + <h3 class="projectServices-listItem"> | |
| 694 | + <i class="projectServices-icon icon-logisco-service--indoor_parking"></i> | |
| 695 | + Stationnement intérieur ($) | |
| 696 | + </h3> | |
| 697 | + </li> | |
| 698 | + <li class="projectServices-itemContainer"> | |
| 699 | + <h3 class="projectServices-listItem"> | |
| 700 | + <i class="projectServices-icon icon-logisco-service--garbage_chute"></i> | |
| 701 | + Chute à déchets | |
| 702 | + </h3> | |
| 703 | + </li> | |
| 704 | + <li class="projectServices-itemContainer"> | |
| 705 | + <h3 class="projectServices-listItem"> | |
| 706 | + <i class="projectServices-icon icon-logisco-service--bike_repair_station"></i> | |
| 707 | + Station de réparation pour vélos | |
| 708 | + </h3> | |
| 709 | + </li> | |
| 710 | + <li class="projectServices-itemContainer"> | |
| 711 | + <h3 class="projectServices-listItem"> | |
| 712 | + <i class="projectServices-icon icon-logisco-service--charging_station"></i> | |
| 713 | + Borne de recharge électrique ($) | |
| 714 | + </h3> | |
| 715 | + </li> | |
| 716 | + <li class="projectServices-itemContainer"> | |
| 717 | + <h3 class="projectServices-listItem"> | |
| 718 | + <i class="projectServices-icon icon-logisco-service--secure_post_office_locker"></i> | |
| 719 | + Espace sécurisé pour colis | |
| 720 | + </h3> | |
| 721 | + </li> | |
| 722 | + <li class="projectServices-itemContainer"> | |
| 723 | + <h3 class="projectServices-listItem"> | |
| 724 | + <i class="projectServices-icon icon-logisco-service--bike_rack"></i> | |
| 725 | + Support pour vélos | |
| 726 | + </h3> | |
| 727 | + </li> | |
| 728 | + <li class="projectServices-itemContainer"> | |
| 729 | + <h3 class="projectServices-listItem"> | |
| 730 | + <i class="projectServices-icon icon-logisco-service--moto_parking"></i> | |
| 731 | + Stationnement pour motos ($) | |
| 732 | + </h3> | |
| 733 | + </li> | |
| 734 | + <li class="projectServices-itemContainer"> | |
| 735 | + <h3 class="projectServices-listItem"> | |
| 736 | + <i class="projectServices-icon icon-logisco-service--secure_bike_rack"></i> | |
| 737 | + Rangement sécurisé pour vélos ($) | |
| 738 | + </h3> | |
| 739 | + </li> | |
| 740 | + <li class="projectServices-itemContainer"> | |
| 741 | + <h3 class="projectServices-listItem"> | |
| 742 | + <i class="projectServices-icon icon-logisco-service--recycling_chute"></i> | |
| 743 | + Chute à recyclage | |
| 744 | + </h3> | |
| 745 | + </li> | |
| 746 | + <li class="projectServices-itemContainer"> | |
| 747 | + <h3 class="projectServices-listItem"> | |
| 748 | + <i class="projectServices-icon icon-logisco-service--car_wash"></i> | |
| 749 | + Lave-auto | |
| 750 | + </h3> | |
| 751 | + </li> | |
| 752 | + <li class="projectServices-itemContainer"> | |
| 753 | + <h3 class="projectServices-listItem"> | |
| 754 | + <i class="projectServices-icon icon-logisco-service--secure_entrance"></i> | |
| 755 | + Entrée sécurisée | |
| 756 | + </h3> | |
| 757 | + </li> | |
| 758 | + <li class="projectServices-itemContainer"> | |
| 759 | + <h3 class="projectServices-listItem"> | |
| 760 | + <i class="projectServices-icon icon-logisco-service--paid_guest_parking"></i> | |
| 761 | + Stationnement visiteur ($) | |
| 762 | + </h3> | |
| 763 | + </li> | |
| 764 | + </ul> | |
| 765 | + </div> | |
| 766 | + </div> | |
| 767 | + | |
| 768 | + | |
| 769 | + <div class="projectServices"> | |
| 770 | + <div class="projectServices-container"> | |
| 771 | + <h2 class="projectServices-title"> | |
| 772 | + Espaces communs | |
| 773 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 774 | + <span class="tooltip-container js-tooltipContainer"> | |
| 775 | + <span class="tooltip-subtitle">Il s'agit des espaces communs accessibles à tous les locataires d'un projet immobilier, peu importe dans quel immeuble ils se trouvent.</span> | |
| 776 | + </span> | |
| 777 | + </h2> | |
| 778 | + <ul class="projectServices-list"> | |
| 779 | + <li class="projectServices-itemContainer"> | |
| 780 | + <h3 class="projectServices-listItem"> | |
| 781 | + <i class="projectServices-icon icon-logisco-service--furnished_terrace"></i> | |
| 782 | + Terrasse aménagée | |
| 783 | + </h3> | |
| 784 | + </li> | |
| 785 | + <li class="projectServices-itemContainer"> | |
| 786 | + <h3 class="projectServices-listItem"> | |
| 787 | + <i class="projectServices-icon icon-logisco-service--living_room"></i> | |
| 788 | + Espace lounge | |
| 789 | + </h3> | |
| 790 | + </li> | |
| 791 | + <li class="projectServices-itemContainer"> | |
| 792 | + <h3 class="projectServices-listItem"> | |
| 793 | + <i class="projectServices-icon icon-logisco-service--gym"></i> | |
| 794 | + Salle d’entraînement | |
| 795 | + </h3> | |
| 796 | + </li> | |
| 797 | + <li class="projectServices-itemContainer"> | |
| 798 | + <h3 class="projectServices-listItem"> | |
| 799 | + <i class="projectServices-icon icon-logisco-service--entertainment_room"></i> | |
| 800 | + Espace de divertissement | |
| 801 | + </h3> | |
| 802 | + </li> | |
| 803 | + <li class="projectServices-itemContainer"> | |
| 804 | + <h3 class="projectServices-listItem"> | |
| 805 | + <i class="projectServices-icon icon-logisco-service--developed_land"></i> | |
| 806 | + Terrain aménagé | |
| 807 | + </h3> | |
| 808 | + </li> | |
| 809 | + <li class="projectServices-itemContainer"> | |
| 810 | + <h3 class="projectServices-listItem"> | |
| 811 | + <i class="projectServices-icon icon-logisco-service--unheated_outdoor_pool"></i> | |
| 812 | + Piscine extérieure | |
| 813 | + </h3> | |
| 814 | + </li> | |
| 815 | + <li class="projectServices-itemContainer"> | |
| 816 | + <h3 class="projectServices-listItem"> | |
| 817 | + <i class="projectServices-icon icon-logisco-service--coworking_space"></i> | |
| 818 | + Espace de cotravail | |
| 819 | + </h3> | |
| 820 | + </li> | |
| 821 | + </ul> | |
| 822 | + </div> | |
| 823 | + </div> | |
| 824 | + </div> | |
| 825 | + <div class="unitHeader-bottomRight"> | |
| 826 | + <div class="unitHeader-unitInfos js-zoomDisplayContainer"> | |
| 827 | + <h3 class="unitHeader-price"> | |
| 828 | + <span class="unitHeader-priceNumber">1637 $</span> | |
| 829 | + <span class="unitHeader-priceText">/ mois</span> | |
| 830 | + </h3> | |
| 831 | + <div class="unitHeader-infosContainer"> | |
| 832 | + <div class="unitHeader-info"> | |
| 833 | + <h3 class="unitHeader-infoLabel">Nombre de pièces</h3> | |
| 834 | + <span class="unitHeader-infoValue">3 1/2</span> | |
| 835 | + </div> | |
| 836 | + <div class="unitHeader-info"> | |
| 837 | + <h3 class="unitHeader-infoLabel">Superficie totale</h3> | |
| 838 | + <span class="unitHeader-infoValue">648 pi²</span> | |
| 839 | + </div> | |
| 840 | + <div class="unitHeader-info"> | |
| 841 | + <h3 class="unitHeader-infoLabel">Étage</h3> | |
| 842 | + <span class="unitHeader-infoValue">5</span> | |
| 843 | + </div> | |
| 844 | + | |
| 845 | + <div class="unitHeader-info"> | |
| 846 | + <h3 class="unitHeader-infoLabel">Disponibilité</h3> | |
| 847 | + <span class="unitHeader-infoValue">Maintenant</span> | |
| 848 | + </div> | |
| 849 | + </div> | |
| 850 | + <div class="unitHeader-infosLink"> | |
| 851 | + <div class="unitHeader-infosGroup"> | |
| 852 | + <add-reservation-button :unit-page-id="'9ba07ed9-c481-4134-aa8e-c6a1c2efadc9'"> | |
| 853 | + <template #text> | |
| 854 | + Planifier une visite | |
| 855 | + </template> | |
| 856 | + </add-reservation-button> | |
| 857 | + <modal-button class-names="c2a c2a-text c2a--secondary" aria-label="Joindre l’agent de location " | |
| 858 | + modal-id="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83" | |
| 859 | + data-gtm-event="pageUnite-clicJoindreAgentLocation"> | |
| 860 | + <span class="c2a-name"> | |
| 861 | + Joindre l’agent de location | |
| 862 | + </span> | |
| 863 | + </modal-button> | |
| 864 | + </div> | |
| 865 | + <a class="c2a c2a-text c2a--tertiary c2a-download" | |
| 866 | + href="https://pdf.logisco.com/pdf-modele.ashx?id=1728&Unite=506&IDImmeuble=388&IDUnite=11634" | |
| 867 | + data-gtm-event="pageUnite-telechargerFiche"> | |
| 868 | + <span class="c2a-name"> | |
| 869 | + Télécharger la fiche | |
| 870 | + </span> | |
| 871 | + <i class="icon-logisco-download"></i> | |
| 872 | + </a> | |
| 873 | + </div> | |
| 874 | + </div> | |
| 875 | + </div> | |
| 876 | + </div> | |
| 877 | +</div> | |
| 878 | + | |
| 879 | +<div class="unitSection"> | |
| 880 | + <div class="blockText blockText-style--medium"> | |
| 881 | + <p class="blockText-surtitle">Découvrez le secteur</p> | |
| 882 | + <h2 class="blockText-title">Explorez les services et attraits à proximité de District GC</h2> | |
| 883 | + </div> | |
| 884 | + | |
| 885 | + <div | |
| 886 | + id="local-content-widget" | |
| 887 | + style="height: 700px;" | |
| 888 | + data-local-logic-lat="46.79314748" | |
| 889 | + data-local-logic-lng="-71.17992466" | |
| 890 | + data-local-logic-transport="false" | |
| 891 | + data-local-logic-transport-pedestrian-friendly="false" | |
| 892 | + data-local-logic-transport-cycling-friendly="false" | |
| 893 | + data-local-logic-transport-transit-friendly="false" | |
| 894 | + data-local-logic-transport-car-friendly="false" | |
| 895 | + data-local-logic-education="false" | |
| 896 | + data-local-logic-education-daycares="false" | |
| 897 | + data-local-logic-education-primary-schools="false" | |
| 898 | + data-local-logic-education-high-schools="false" | |
| 899 | + data-local-logic-amenities="false" | |
| 900 | + data-local-logic-amenities-shopping="false" | |
| 901 | + data-local-logic-amenities-groceries="false" | |
| 902 | + data-local-logic-amenities-restaurants="false" | |
| 903 | + data-local-logic-amenities-cafes="false" | |
| 904 | + data-local-logic-character="false" | |
| 905 | + data-local-logic-character-nightlife="false" | |
| 906 | + data-local-logic-character-vibrant="false" | |
| 907 | + data-local-logic-character-historic="false" | |
| 908 | + data-local-logic-character-quiet="false" | |
| 909 | + data-local-logic-nature="false" | |
| 910 | + data-local-logic-nature-parks="false" | |
| 911 | + data-local-logic-nature-greenery="false" | |
| 912 | + data-local-logic-wellness="false" | |
| 913 | + data-local-logic-health="false" | |
| 914 | + ></div> | |
| 915 | +</div> | |
| 916 | + | |
| 917 | +<div class="unitSection"> | |
| 918 | + <section id="plans" class="project-plans"> | |
| 919 | + <plan-view | |
| 920 | + project-type="RESIDENTIAL" | |
| 921 | + :project="[{"Available":true,"SourceId":388,"Code":"271","Address":{"NumberStreet":"5350 Boulevard Guillaume-Couture","City":"L\u00e9vis","Province":"Qu\u00e9bec","PostalCode":"G6V 4Z2","Neighborhood":"Desjardins"},"file_id":"6463","plan_size":{"width":2000,"height":1850},"Floors":{"2":{"level_name":"\u00c9tage #2","level":2,"units":{"201":{"page_id":"9ba07e86-ad62-4900-995d-3246b4da522f","available":false,"unit_number":"201","shape":"poly","coords":"574,248,704,248,708,386,598,386,598,302,574,304"},"202":{"page_id":"9ba07e89-83b8-4189-ae1e-8ada74c59b9c","available":false,"unit_number":"202","shape":"poly","coords":"708,248,796,250,796,312,898,312,898,292,936,290,938,386,708,388"},"203":{"page_id":"9ba07e8a-b38a-4336-aac9-c1f963221e67","available":false,"unit_number":"203","shape":"poly","coords":"1100,248,1100,386,936,388,936,290,914,290,918,250"},"204":{"page_id":"9ba07e8b-acc8-4585-8fd2-f3399b4eb85a","available":false,"unit_number":"204","shape":"rect","coords":"950,84,1102,248"},"205":{"page_id":"9ba07e8c-df16-4511-957f-2b577ab9b1c5","available":false,"unit_number":"205","shape":"rect","coords":"832,84,946,222"},"206":{"page_id":"9ba07e8d-e26f-4d3a-a0e9-03e7c32d7262","available":false,"unit_number":"206","shape":"rect","coords":"714,84,830,220"},"207":{"page_id":"9ba07e8f-c0b7-4331-93fd-b03386e60000","available":false,"unit_number":"207","shape":"rect","coords":"598,84,712,222"},"208":{"page_id":"9ba07e90-d88a-4cbf-a6b9-54542ab421f1","available":false,"unit_number":"208","shape":"rect","coords":"506,84,598,222"},"209":{"page_id":"9ba07e93-5cf3-45fb-b54c-b219ae423ec6","available":false,"unit_number":"209","shape":"rect","coords":"410,84,504,220"},"210":{"page_id":"9ba07e94-a581-4018-abc4-b6f8d0aebd6e","available":true,"unit_number":"210","shape":"poly","coords":"210,84,290,84,290,38,422,40,422,82,410,84,410,222,346,222,344,200,212,202"},"211":{"page_id":"9ba07e95-5863-4a66-b76b-c48a929ca8c1","available":true,"unit_number":"211","shape":"rect","coords":"208,200,346,384"},"212":{"page_id":"9ba07e96-67cd-4807-886e-4df616a80fd5","available":true,"unit_number":"212","shape":"rect","coords":"290,386,426,500"},"213":{"page_id":"9ba07e97-bc36-4904-aeb0-50cc8f1aca4f","available":false,"unit_number":"213","shape":"rect","coords":"290,502,428,618"},"214":{"page_id":"9ba07e99-9521-434b-ad8c-744c0c1548c2","available":false,"unit_number":"214","shape":"rect","coords":"290,620,416,818"},"215":{"page_id":"9ba07e9b-8e1c-4fdb-9632-0ce0246b43f3","available":false,"unit_number":"215","shape":"poly","coords":"418,694,544,692,544,644,592,644,590,820,420,820"},"216":{"page_id":"9ba07e9c-99a0-44bb-b69c-d87634e9d83a","available":false,"unit_number":"216","shape":"rect","coords":"452,476,590,642"},"217":{"page_id":"9ba07e9d-c515-4ef8-90ac-1abb05f660ad","available":false,"unit_number":"217","shape":"poly","coords":"456,382,502,380,506,366,570,366,570,384,590,386,592,476,456,476"}},"file_id":"6464","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6464-800/plan-1728-271-planlocation-niv2rpng.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"301":{"page_id":"9ba07e9f-3cb5-42fc-a89b-83855c86dc19","available":false,"unit_number":"301","shape":"poly","coords":"574,248,708,248,708,388,600,386,598,304,570,304"},"302":{"page_id":"9ba07ea0-d039-48d7-80ab-31f652d3c1c7","available":false,"unit_number":"302","shape":"poly","coords":"708,248,794,246,798,310,896,310,896,290,938,290,938,386,708,388"},"303":{"page_id":"9ba07ea2-6707-4ed2-8be7-05a8629065ae","available":true,"unit_number":"303","shape":"poly","coords":"1100,246,1100,384,934,388,936,290,916,290,918,248"},"304":{"page_id":"9ba07ea3-9487-4d40-b991-bbca1d06a923","available":false,"unit_number":"304","shape":"rect","coords":"950,84,1100,246"},"305":{"page_id":"9ba07ea5-4975-4773-b1c2-1ec9367fb74e","available":false,"unit_number":"305","shape":"rect","coords":"832,84,948,222"},"306":{"page_id":"9ba07ea6-49a8-4063-8fd2-e82d57be234b","available":false,"unit_number":"306","shape":"rect","coords":"714,84,830,222"},"307":{"page_id":"9ba07ea7-07a4-48e6-9f8b-f45860193763","available":false,"unit_number":"307","shape":"rect","coords":"598,84,714,220"},"308":{"page_id":"9ba07ea7-c29d-4aa6-981d-e9a16b97b0a8","available":false,"unit_number":"308","shape":"rect","coords":"410,84,596,220"},"309":{"page_id":"9ba07ea9-0051-4da1-ad92-16cc77a281c1","available":true,"unit_number":"309","shape":"poly","coords":"210,86,286,80,292,40,422,40,422,84,408,84,412,222,348,220,348,200,210,200"},"310":{"page_id":"9ba07ea9-fbc7-411a-ac3c-e7f95d4985c8","available":true,"unit_number":"310","shape":"rect","coords":"210,200,346,386"},"311":{"page_id":"9ba07eab-215b-4b09-ad18-fbf06bb3f5a0","available":false,"unit_number":"311","shape":"rect","coords":"292,388,428,502"},"312":{"page_id":"9ba07eac-ae37-4166-bc32-d15c4ff8640d","available":false,"unit_number":"312","shape":"rect","coords":"290,502,428,618"},"313":{"page_id":"9ba07eaf-06f0-44a0-96c1-8b3a59a707c0","available":false,"unit_number":"313","shape":"rect","coords":"290,620,416,818"},"314":{"page_id":"9ba07eb0-ac1f-4787-8790-8c3492aa131f","available":true,"unit_number":"314","shape":"poly","coords":"418,696,546,692,544,646,592,646,594,820,418,820"},"315":{"page_id":"9ba07eb4-09ee-40f8-9b78-e5a9b5531e47","available":false,"unit_number":"315","shape":"rect","coords":"454,478,592,644"},"316":{"page_id":"9ba07eb5-5e78-4ac4-abbe-b0d563c4fb13","available":false,"unit_number":"316","shape":"poly","coords":"454,382,504,378,508,364,572,366,572,384,592,386,594,476,454,476"}},"file_id":"6465","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6465-800/plan-1728-271-planlocation-niv3rpng.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"401":{"page_id":"9ba07eb7-37e7-4a94-a407-05263f8c202d","available":false,"unit_number":"401","shape":"poly","coords":"574,250,706,250,706,384,602,384,600,302,574,300"},"402":{"page_id":"9ba07eb8-1cf5-4f39-bae1-911cb28b0fec","available":true,"unit_number":"402","shape":"poly","coords":"710,250,794,248,794,312,898,312,898,292,936,292,936,386,708,386"},"403":{"page_id":"9ba07eba-73b7-4662-9b13-7dd4ab91442d","available":false,"unit_number":"403","shape":"poly","coords":"1100,248,1098,384,936,384,938,290,920,288,920,248"},"404":{"page_id":"9ba07ebc-819e-4bcc-9534-46510bf1f18c","available":false,"unit_number":"404","shape":"rect","coords":"952,88,1098,246"},"405":{"page_id":"9ba07ebe-4c50-445e-b548-2b1728726582","available":true,"unit_number":"405","shape":"rect","coords":"834,88,948,222"},"406":{"page_id":"9ba07ec0-ac89-4982-bf33-84052f78f3c1","available":false,"unit_number":"406","shape":"rect","coords":"718,88,830,222"},"407":{"page_id":"9ba07ec2-862a-42db-8f8d-630f55665566","available":true,"unit_number":"407","shape":"rect","coords":"600,88,714,220"},"408":{"page_id":"9ba07ec3-a825-463b-a7f3-1a9cc456b845","available":false,"unit_number":"408","shape":"poly","coords":"414,220,412,152,420,152,418,88,596,88,596,222"},"409":{"page_id":"9ba07ec5-5724-475d-92e7-bdd7dbc81c67","available":false,"unit_number":"409","shape":"poly","coords":"212,198,212,86,292,86,292,42,420,42,420,82,408,84,408,222,348,222,348,198"},"410":{"page_id":"9ba07ec7-2a6e-4961-8a18-04ac14956d59","available":false,"unit_number":"410","shape":"rect","coords":"210,200,344,384"},"411":{"page_id":"9ba07ec8-72be-4603-adc7-f57f22e60659","available":true,"unit_number":"411","shape":"rect","coords":"292,388,426,502"},"412":{"page_id":"9ba07ec9-5ba2-4010-a7a8-29ccf5ada965","available":false,"unit_number":"412","shape":"rect","coords":"292,504,428,618"},"413":{"page_id":"9ba07ecb-703c-4c61-9b95-4029313eba1f","available":false,"unit_number":"413","shape":"poly","coords":"292,622,406,622,406,636,416,636,416,818,292,820"},"414":{"page_id":"9ba07ecc-3ce1-4aca-aaf2-5e5fd40d528a","available":false,"unit_number":"414","shape":"poly","coords":"418,696,546,696,546,648,590,646,590,818,418,818"},"415":{"page_id":"9ba07ece-b5da-43f1-bda0-1e8688d54bfe","available":true,"unit_number":"415","shape":"rect","coords":"454,480,590,642"},"416":{"page_id":"9ba07ecf-7fa7-4cdf-b4e5-658b54ebde72","available":true,"unit_number":"416","shape":"poly","coords":"456,386,508,384,508,368,572,368,572,384,590,388,590,478,456,476"}},"file_id":"6466","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6466-800/plan-1728-271-planlocation-niv4rpng.webp"},"5":{"level_name":"\u00c9tage #5","level":5,"units":{"501":{"page_id":"9ba07ed0-c925-4ca8-be30-7be9c77cf9d4","available":false,"unit_number":"501","shape":"poly","coords":"572,248,708,250,706,388,598,388,598,302,574,304"},"502":{"page_id":"9ba07ed2-4532-40d0-a0d0-e9d76c4a4912","available":true,"unit_number":"502","shape":"poly","coords":"708,250,794,250,794,310,894,310,896,290,938,292,938,390,706,386"},"503":{"page_id":"9ba07ed3-ee43-4035-9885-fafe45c5e19e","available":false,"unit_number":"503","shape":"poly","coords":"918,248,1098,248,1098,388,938,388,936,292,916,292"},"504":{"page_id":"9ba07ed6-b167-4f72-9361-73635eb0391d","available":true,"unit_number":"504","shape":"rect","coords":"948,84,1098,248"},"505":{"page_id":"9ba07ed8-22d9-4c10-9f73-123c8c382a18","available":false,"unit_number":"505","shape":"rect","coords":"832,84,946,222"},"506":{"page_id":"9ba07ed9-c481-4134-aa8e-c6a1c2efadc9","available":true,"unit_number":"506","shape":"rect","coords":"714,84,830,222"},"507":{"page_id":"9ba07edb-0d3a-477d-a6e9-70134a507694","available":true,"unit_number":"507","shape":"rect","coords":"600,84,716,222"},"508":{"page_id":"9ba07edd-8f7b-4172-b42c-9c553181c8e6","available":true,"unit_number":"508","shape":"rect","coords":"414,86,598,222"},"509":{"page_id":"9ba07ede-a7d7-4f85-81d3-78258e4f4209","available":false,"unit_number":"509","shape":"poly","coords":"210,84,288,84,288,42,422,42,422,84,412,86,412,224,348,224,346,200,212,202"},"510":{"page_id":"9ba07edf-d2b0-4b2b-82a1-ab019ce96e92","available":false,"unit_number":"510","shape":"rect","coords":"210,202,344,386"},"511":{"page_id":"9ba07ee0-ada1-4b70-9644-b83cee69d130","available":false,"unit_number":"511","shape":"rect","coords":"290,388,428,502"},"512":{"page_id":"9ba07ee1-8432-458b-b317-4d183fdb6e78","available":false,"unit_number":"512","shape":"rect","coords":"290,502,426,618"},"513":{"page_id":"9ba07ee2-4872-4692-b4ec-2b9ad5f02602","available":false,"unit_number":"513","shape":"rect","coords":"290,622,416,820"},"514":{"page_id":"9ba07ee4-f15b-4823-8208-6f5e91993aec","available":false,"unit_number":"514","shape":"poly","coords":"418,696,544,694,544,644,592,644,592,818,418,818"},"515":{"page_id":"9ba07ee6-ace0-4d63-8ac7-393e45766e7d","available":false,"unit_number":"515","shape":"rect","coords":"454,480,590,644"},"516":{"page_id":"9ba07ee7-9d4b-45aa-82f5-72402a09bb9b","available":false,"unit_number":"516","shape":"poly","coords":"454,384,510,382,508,366,572,366,572,386,592,386,592,478,456,478"}},"file_id":"6467","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6467-800/plan-1728-271-planlocation-niv5rpng.webp"},"6":{"level_name":"\u00c9tage #6","level":6,"units":{"601":{"page_id":"9ba07ee8-5441-48e6-a658-efe1afa4cff5","available":false,"unit_number":"601","shape":"poly","coords":"572,246,708,248,708,384,598,384,598,300,572,300"},"602":{"page_id":"9ba07ee9-3f20-4fa7-8f22-6cf72030edb1","available":true,"unit_number":"602","shape":"poly","coords":"708,246,794,246,796,308,896,308,896,288,936,288,938,384,708,384"},"603":{"page_id":"9ba07ee9-f850-4b19-8b3d-034163e89aa7","available":false,"unit_number":"603","shape":"poly","coords":"1098,246,1098,384,938,384,936,288,916,288,918,244"},"604":{"page_id":"9ba07eea-fcd9-41fd-a98c-472ee243fe03","available":false,"unit_number":"604","shape":"rect","coords":"950,82,1100,244"},"605":{"page_id":"9ba07eed-6cd3-4752-b167-7dbf3d05137f","available":true,"unit_number":"605","shape":"rect","coords":"832,82,948,220"},"606":{"page_id":"9ba07eee-3fd1-40d1-86e1-3602fab8e679","available":true,"unit_number":"606","shape":"rect","coords":"716,84,830,220"},"607":{"page_id":"9ba07eef-e65e-4ca1-a4db-972d022e5656","available":true,"unit_number":"607","shape":"rect","coords":"598,82,714,220"},"608":{"page_id":"9ba07ef0-a8a8-4b35-9532-40e22b14c0e4","available":true,"unit_number":"608","shape":"rect","coords":"414,82,596,218"},"609":{"page_id":"9ba07ef1-98ee-4b64-a74b-7ec3e84a056b","available":false,"unit_number":"609","shape":"poly","coords":"210,82,290,82,290,38,426,38,422,80,410,82,410,218,346,220,346,198,212,198"},"610":{"page_id":"9ba07ef3-da38-414e-b979-962494abd5e9","available":true,"unit_number":"610","shape":"rect","coords":"210,200,344,384"},"611":{"page_id":"9ba07ef4-c733-4bc8-b133-d2abbe48144a","available":true,"unit_number":"611","shape":"rect","coords":"290,386,426,498"},"612":{"page_id":"9ba07ef5-e28c-429f-a507-31b309ef4c54","available":false,"unit_number":"612","shape":"rect","coords":"290,500,428,616"},"613":{"page_id":"9ba07ef7-de24-43d5-af08-42840682411f","available":false,"unit_number":"613","shape":"rect","coords":"290,618,418,818"},"614":{"page_id":"9ba07ef8-d748-4fe4-94e7-a4544d6c8d2e","available":true,"unit_number":"614","shape":"poly","coords":"418,692,544,690,544,642,592,642,590,816,418,816"},"615":{"page_id":"9ba07efa-0667-41be-bdca-a824ba902654","available":true,"unit_number":"615","shape":"rect","coords":"454,476,592,642"},"616":{"page_id":"9ba07efb-34d4-44a8-80a8-6fe72c492a21","available":false,"unit_number":"616","shape":"poly","coords":"454,382,506,380,506,362,570,364,570,384,594,382,592,474,454,474"}},"file_id":"6468","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6468-800/plan-1728-271-planlocation-niv6rpng.webp"},"7":{"level_name":"\u00c9tage #7","level":7,"units":{"701":{"page_id":"9ba07efc-bef0-4f21-a7bb-d512c651582d","available":true,"unit_number":"701","shape":"poly","coords":"572,246,706,248,708,384,598,382,598,300,574,302"},"702":{"page_id":"9ba07efe-b118-4078-9d68-290b595bb64d","available":false,"unit_number":"702","shape":"poly","coords":"708,248,794,248,794,310,894,308,894,288,936,290,936,386,708,386"},"703":{"page_id":"9ba07eff-f5ac-4c87-ae1d-95aedbda6965","available":false,"unit_number":"703","shape":"poly","coords":"1100,246,1100,384,936,384,938,288,916,288,918,246"},"704":{"page_id":"9ba07f01-a920-48d4-874d-495ccb733c6a","available":true,"unit_number":"704","shape":"rect","coords":"948,84,1098,246"},"705":{"page_id":"9ba07f03-5407-4535-95fa-5a72851550b1","available":true,"unit_number":"705","shape":"rect","coords":"832,82,946,222"},"706":{"page_id":"9ba07f04-93cb-477c-b40d-b1ae560098fd","available":true,"unit_number":"706","shape":"rect","coords":"714,82,832,222"},"707":{"page_id":"9ba07f05-fd4d-41b4-a9a9-e9abf9aba383","available":true,"unit_number":"707","shape":"rect","coords":"600,84,712,220"},"708":{"page_id":"9ba07f07-ec37-4440-8414-c5bf53aabb1d","available":true,"unit_number":"708","shape":"rect","coords":"412,84,596,222"},"709":{"page_id":"9ba07f09-4395-4e55-bf82-493e8efeb245","available":false,"unit_number":"709","shape":"poly","coords":"210,82,290,82,290,38,422,38,422,82,408,82,410,222,346,220,346,198,212,198"},"710":{"page_id":"9ba07f0a-494d-41b1-9ad9-51eb3701432b","available":false,"unit_number":"710","shape":"rect","coords":"210,202,344,386"},"711":{"page_id":"9ba07f0b-8505-45f9-8bf1-2b464bbfb2d3","available":true,"unit_number":"711","shape":"rect","coords":"290,386,426,498"},"712":{"page_id":"9ba07f0d-d228-41b3-9a2c-a78f52e96cf7","available":false,"unit_number":"712","shape":"rect","coords":"290,502,426,616"},"713":{"page_id":"9ba07f0e-e2e2-4e3d-9384-6ffc04bf2f24","available":false,"unit_number":"713","shape":"rect","coords":"290,618,418,816"},"714":{"page_id":"9ba07f10-41e7-4465-9a11-80569dce42ee","available":true,"unit_number":"714","shape":"poly","coords":"418,694,542,692,544,646,594,646,592,818,418,816"},"715":{"page_id":"9ba07f12-b1df-412f-b3a6-95711e17ab4b","available":true,"unit_number":"715","shape":"rect","coords":"454,476,592,642"},"716":{"page_id":"9ba07f14-8c56-4154-8052-10ebb63fc295","available":false,"unit_number":"716","shape":"poly","coords":"454,474,456,378,506,378,508,362,570,366,570,384,594,384,592,476"}},"file_id":"6469","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6469-800/plan-1728-271-planlocation-niv7rpng.webp"},"8":{"level_name":"\u00c9tage #8","level":8,"units":{"801":{"page_id":"9ba07f15-aeab-4ec5-8bfb-22870aa0c393","available":true,"unit_number":"801","shape":"poly","coords":"570,248,702,248,704,384,598,384,598,300,572,300"},"802":{"page_id":"9ba07f16-c4cb-4797-b641-902ebae6d8f2","available":false,"unit_number":"802","shape":"poly","coords":"708,246,794,248,794,308,892,308,894,290,934,290,934,382,706,384"},"803":{"page_id":"9ba07f19-1b0b-476a-8a80-43c08bb4d036","available":false,"unit_number":"803","shape":"poly","coords":"1096,246,1096,384,936,384,934,290,912,290,916,248"},"804":{"page_id":"9ba07f1a-e31a-4adb-9351-43997d8b15c6","available":true,"unit_number":"804","shape":"rect","coords":"946,82,1096,246"},"805":{"page_id":"9ba07f1c-c487-4abc-8c4f-ed3f970f815e","available":true,"unit_number":"805","shape":"rect","coords":"830,82,944,220"},"806":{"page_id":"9ba07f1e-d68e-40d0-b929-4b01fcaf8e42","available":true,"unit_number":"806","shape":"rect","coords":"712,82,828,220"},"807":{"page_id":"9ba07f20-8a3a-43f7-ad2b-6813c499956e","available":true,"unit_number":"807","shape":"rect","coords":"598,84,710,220"},"808":{"page_id":"9ba07f22-1a3b-4abf-8189-defb2b0864ef","available":true,"unit_number":"808","shape":"rect","coords":"410,84,594,220"},"809":{"page_id":"9ba07f23-3a5b-48e5-969d-8070edc80586","available":true,"unit_number":"809","shape":"poly","coords":"208,82,290,84,288,38,422,38,422,82,408,82,408,222,344,220,344,200,208,200"},"810":{"page_id":"9ba07f25-c154-44e5-a323-c6897cbb2830","available":false,"unit_number":"810","shape":"rect","coords":"208,200,342,382"},"811":{"page_id":"9ba07f26-f9bd-4d63-b1d5-cf276726ef16","available":false,"unit_number":"811","shape":"rect","coords":"288,384,424,498"},"812":{"page_id":"9ba07f27-d731-4ba4-a31f-11443f19a66b","available":false,"unit_number":"812","shape":"rect","coords":"288,500,426,618"},"813":{"page_id":"9ba07f29-b7bb-47f6-b9c6-d3824c8972fa","available":false,"unit_number":"813","shape":"rect","coords":"286,620,414,818"},"814":{"page_id":"9ba07f2a-6a63-4879-83b3-4e7bd1da3ef6","available":true,"unit_number":"814","shape":"poly","coords":"416,694,544,692,544,640,590,644,592,818,416,818"},"815":{"page_id":"9ba07f2b-b044-4f11-aa9b-9374a89396ee","available":true,"unit_number":"815","shape":"rect","coords":"452,478,590,640"},"816":{"page_id":"9ba07f2c-df00-4941-bfe3-dc706c483021","available":false,"unit_number":"816","shape":"poly","coords":"452,382,508,382,508,364,570,364,570,382,594,386,592,476,454,476"}},"file_id":"6470","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6470-800/plan-1728-271-planlocation-niv8rpng.webp"},"9":{"level_name":"\u00c9tage #9","level":9,"units":{"901":{"page_id":"9ba07f2d-e06e-4f8e-999f-67959f089e72","available":true,"unit_number":"901","shape":"poly","coords":"572,248,706,250,706,386,598,384,598,302,572,300"},"902":{"page_id":"9ba07f2f-e430-464c-9e01-aac1c878fde0","available":false,"unit_number":"902","shape":"poly","coords":"708,248,792,248,794,310,896,310,896,290,936,290,936,386,708,384"},"903":{"page_id":"9ba07f31-2e6f-449e-a872-33b1155b36ef","available":false,"unit_number":"903","shape":"poly","coords":"1100,246,1100,384,938,386,936,288,914,290,918,246"},"904":{"page_id":"9ba07f32-56c4-4e05-a660-ada8e4e6aafd","available":true,"unit_number":"904","shape":"rect","coords":"948,84,1100,246"},"905":{"page_id":"9ba07f33-489f-4897-8d11-8599b0b89c98","available":false,"unit_number":"905","shape":"rect","coords":"832,84,948,222"},"906":{"page_id":"9ba07f36-4352-42f5-962b-1777b2f98c55","available":true,"unit_number":"906","shape":"rect","coords":"716,82,832,222"},"907":{"page_id":"9ba07f37-952c-481d-9359-fb3bb7db73d1","available":true,"unit_number":"907","shape":"rect","coords":"598,84,714,222"},"908":{"page_id":"9ba07f38-67d6-45cc-8537-3f6bee95c815","available":true,"unit_number":"908","shape":"rect","coords":"412,84,596,220"},"909":{"page_id":"9ba07f39-cea2-4a3d-a37c-38c9ed5d4e2d","available":true,"unit_number":"909","shape":"poly","coords":"212,84,288,84,290,36,420,38,420,82,410,82,410,220,348,220,346,200,212,200,208,190"},"910":{"page_id":"9ba07f3a-9db8-4e3a-92a0-cff268921149","available":false,"unit_number":"910","shape":"rect","coords":"208,200,344,386"},"911":{"page_id":"9ba07f3b-b5d2-49b9-bb73-9a42d380f9ff","available":false,"unit_number":"911","shape":"rect","coords":"290,386,428,498"},"912":{"page_id":"9ba07f3d-a4fb-406b-8d45-5eded3a23603","available":false,"unit_number":"912","shape":"rect","coords":"292,500,428,618"},"913":{"page_id":"9ba07f3f-03a0-4d9d-bc68-81298d44266e","available":false,"unit_number":"913","shape":"rect","coords":"292,620,418,818"},"914":{"page_id":"9ba07f41-4ed7-420d-84b5-738c7b670808","available":false,"unit_number":"914","shape":"poly","coords":"418,694,542,690,544,644,592,644,592,818,420,818"},"915":{"page_id":"9ba07f43-caa4-43c8-b126-1a198cc83659","available":true,"unit_number":"915","shape":"rect","coords":"454,478,592,642"},"916":{"page_id":"9ba07f44-d05f-467d-9fea-5629bb15249c","available":false,"unit_number":"916","shape":"poly","coords":"592,474,454,474,454,380,506,382,506,360,570,364,570,384,592,384"}},"file_id":"6471","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6471-800/plan-1728-271-planlocation-niv9rpng.webp"},"10":{"level_name":"\u00c9tage #10","level":10,"units":{"1001":{"page_id":"9ba07f45-fb86-47b8-833a-3d65aa3e89df","available":false,"unit_number":"1001","shape":"poly","coords":"706,386,704,248,570,248,572,302,598,302,598,386"},"1002":{"page_id":"9ba07f47-8ec7-4d7a-a5cc-13041c038ac9","available":false,"unit_number":"1002","shape":"poly","coords":"708,248,794,248,796,310,894,310,894,290,934,290,936,386,708,386"},"1003":{"page_id":"9ba07f49-7321-48c3-b1fb-3d2c9f7525bf","available":false,"unit_number":"1003","shape":"poly","coords":"1098,246,1098,386,936,386,936,288,916,290,916,248"},"1004":{"page_id":"9ba07f4a-c13e-4a5f-9988-95bfaf5ac0b7","available":true,"unit_number":"1004","shape":"rect","coords":"950,84,1098,244"},"1005":{"page_id":"9ba07f4c-1e2d-430b-a686-e7482cb94ef6","available":true,"unit_number":"1005","shape":"rect","coords":"832,82,948,222"},"1006":{"page_id":"9ba07f4d-4609-4db2-9e72-935a31f0e35f","available":true,"unit_number":"1006","shape":"rect","coords":"716,84,832,222"},"1007":{"page_id":"9ba07f4e-238f-4afa-8ccc-b35a85a83fee","available":true,"unit_number":"1007","shape":"rect","coords":"598,82,716,220"},"1008":{"page_id":"9ba07f50-05fd-4cba-9f3c-25c8648aab9a","available":true,"unit_number":"1008","shape":"rect","coords":"412,84,598,222"},"1009":{"page_id":"9ba07f51-36f3-45ae-ab78-fb97689f68fe","available":false,"unit_number":"1009","shape":"poly","coords":"208,84,290,82,290,38,420,38,422,84,410,84,410,220,346,220,344,200,210,200"},"1010":{"page_id":"9ba07f53-8c4d-4b95-8d96-cd01955d9ec8","available":false,"unit_number":"1010","shape":"rect","coords":"210,198,344,386"},"1011":{"page_id":"9ba07f55-448e-4a75-b3a9-e9dbb10e7796","available":false,"unit_number":"1011","shape":"rect","coords":"292,388,428,500"},"1012":{"page_id":"9ba07f56-6b87-4204-bba7-66bff1983dea","available":false,"unit_number":"1012","shape":"rect","coords":"290,502,426,618"},"1013":{"page_id":"9ba07f59-1c03-409b-bd35-9c1682d4b6aa","available":false,"unit_number":"1013","shape":"rect","coords":"290,620,416,816"},"1014":{"page_id":"9ba07f5a-dfa5-40ee-b528-be2f626305fb","available":false,"unit_number":"1014","shape":"poly","coords":"418,694,542,692,544,642,590,644,592,818,416,816"},"1015":{"page_id":"9ba07f5b-eca9-46cd-af90-8ab79bc17e70","available":true,"unit_number":"1015","shape":"rect","coords":"454,476,590,640"},"1016":{"page_id":"9ba07f5d-20be-4ba0-915e-30ff8e001b8e","available":false,"unit_number":"1016","shape":"poly","coords":"454,382,506,382,506,364,572,366,570,384,592,384,592,476,454,476"}},"file_id":"6472","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6472-800/plan-1728-271-planlocation-niv10rpng.webp"},"11":{"level_name":"\u00c9tage #11","level":11,"units":{"1101":{"page_id":"9ba07f5f-d763-4fb1-a7b0-bfaed5c9c1e7","available":false,"unit_number":"1101","shape":"poly","coords":"674,248,794,248,794,310,872,310,872,386,672,386"},"1102":{"page_id":"9ba07f62-5b7e-4468-87bc-eb65c7e553dc","available":true,"unit_number":"1102","shape":"poly","coords":"874,310,896,310,896,290,918,290,918,248,1098,248,1098,384,874,386"},"1103":{"page_id":"9ba07f64-88c8-4408-b876-30ff6c948e8f","available":true,"unit_number":"1103","shape":"poly","coords":"924,222,924,84,1100,82,1098,246,950,246,950,222"},"1104":{"page_id":"9ba07f66-34be-407a-be6a-bc962f3e665e","available":true,"unit_number":"1104","shape":"rect","coords":"758,84,924,222"},"1105":{"page_id":"9ba07f67-6cc7-4f56-abba-e06762f1017d","available":true,"unit_number":"1105","shape":"rect","coords":"586,84,756,222"},"1106":{"page_id":"9ba07f68-ee38-49ce-b288-7b56eaf12f5e","available":true,"unit_number":"1106","shape":"rect","coords":"414,84,584,222"},"1107":{"page_id":"9ba07f6a-db8a-415c-b389-72ba8234fd7c","available":false,"unit_number":"1107","shape":"poly","coords":"210,84,288,84,288,38,418,40,420,82,410,84,410,222,346,222,346,200,210,198"},"1108":{"page_id":"9ba07f6c-8ed5-4045-a764-83b02d807e74","available":false,"unit_number":"1108","shape":"poly","coords":"380,388,210,384,208,198,344,196,344,222,380,222"}},"file_id":"6473","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6473-800/plan-1728-271-planlocation-niv11rpng.webp"},"12":{"level_name":"\u00c9tage #12","level":12,"units":{"1201":{"page_id":"9ba07f6d-e682-4cd1-ad91-05e0a4a60d5a","available":false,"unit_number":"1201","shape":"poly","coords":"646,448,796,448,796,508,872,508,874,586,644,586"},"1202":{"page_id":"9ba07f6f-b84a-4845-97b3-b30f23fcd350","available":true,"unit_number":"1202","shape":"poly","coords":"876,510,896,508,896,490,918,490,918,448,1100,448,1100,586,874,586"},"1203":{"page_id":"9ba07f70-6acc-4bf1-9a44-7098a1674c72","available":false,"unit_number":"1203","shape":"poly","coords":"926,284,1098,284,1098,446,950,446,950,422,926,422"},"1204":{"page_id":"9ba07f71-2e63-429b-8e2c-010fb0803d52","available":true,"unit_number":"1204","shape":"rect","coords":"758,284,924,422"},"1205":{"page_id":"9ba07f72-566f-440f-8448-6a62d0152f0d","available":true,"unit_number":"1205","shape":"rect","coords":"584,284,756,424"},"1206":{"page_id":"9ba07f74-55c0-488c-82f7-dd3694639ed5","available":true,"unit_number":"1206","shape":"rect","coords":"414,284,584,424"},"1207":{"page_id":"9ba07f76-f7f5-4928-86cb-791bab3f5b2e","available":false,"unit_number":"1207","shape":"poly","coords":"210,284,288,284,290,238,420,238,420,282,410,284,412,422,346,422,346,398,210,398"},"1208":{"page_id":"9ba07f79-4b00-4e6a-a864-9fd70d3560d7","available":false,"unit_number":"1208","shape":"poly","coords":"454,508,454,586,210,586,210,400,344,400,344,424,378,424,380,448,424,448,426,510"}},"file_id":"6474","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6474-800/plan-1728-271-planlocation-niv12rpng.webp"}},"areas":[{"item_id":"271","shape":"poly","coords":"644,910,642,330,1290,328,1286,574,882,568,884,916","building_id":388,"available":true},{"item_id":"273","shape":"poly","coords":"876,1329,880,1399,628,1397,634,1161,870,1165,876,1095,1288,1099,1288,1675,1054,1675,1046,1333","building_id":389,"available":true}],"plan_url":"https://logisco.com/static/vb/6463-800/plan-1728-271-planlocation-implantationpng.webp"},{"Available":true,"SourceId":389,"Code":"273","Address":{"NumberStreet":"5360 Boulevard Guillaume-Couture","City":"L\u00e9vis","Province":"Qu\u00e9bec","PostalCode":"G6V 0E3","Neighborhood":"Desjardins"},"file_id":"6463","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"101":{"page_id":"9ba07f7c-05dc-4ba7-a8c5-ea4f4789a2e3","available":false,"unit_number":"101","shape":"rect","coords":"644,244,734,374"},"102":{"page_id":"9ba07f7c-d210-45c8-81f0-4c35c2c100f6","available":true,"unit_number":"102","shape":"rect","coords":"550,244,642,376"},"103":{"page_id":"9ba07f7d-dbcd-40db-aee6-dbae8d62cf85","available":false,"unit_number":"103","shape":"poly","coords":"408,328,548,324,548,376,526,376,524,462,406,462"},"104":{"page_id":"9ba07f7f-20e8-45cc-8d55-fe5f9b91e23f","available":true,"unit_number":"104","shape":"poly","coords":"212,338,368,336,368,328,406,328,406,460,210,460"},"105":{"page_id":"9ba07f80-0de9-4f62-a7d7-7209fe939985","available":false,"unit_number":"105","shape":"poly","coords":"212,168,342,168,342,294,364,294,366,336,212,336"},"106":{"page_id":"9ba07f81-832d-402c-8a7d-8469459e308f","available":false,"unit_number":"106","shape":"rect","coords":"516,88,636,218"},"107":{"page_id":"9ba07f83-cebd-453b-92f8-db1f01e87c90","available":false,"unit_number":"107","shape":"rect","coords":"638,86,730,218"},"108":{"page_id":"9ba07f85-7b89-41e4-a96f-65a81fa0e92f","available":false,"unit_number":"108","shape":"rect","coords":"730,86,850,218"},"109":{"page_id":"9ba07f87-0909-4520-a81a-2ff04cc70137","available":false,"unit_number":"109","shape":"poly","coords":"852,86,944,86,944,190,932,190,932,218,852,218"},"110":{"page_id":"9ba07f89-a00c-41d6-aa6c-0dc1b8f4a876","available":false,"unit_number":"110","shape":"poly","coords":"946,86,1036,86,1036,218,954,218,954,190,944,188"},"111":{"page_id":"9ba07f8a-ca0b-4ba0-abe7-8bd7e48631e6","available":true,"unit_number":"111","shape":"poly","coords":"898,264,964,262,964,278,1034,276,1034,442,898,442"},"112":{"page_id":"9ba07f8c-2042-4e53-9e73-07a443d0d760","available":false,"unit_number":"112","shape":"rect","coords":"898,444,1038,574"},"113":{"page_id":"9ba07f8c-e447-4f31-a6e7-d49a3692c895","available":false,"unit_number":"113","shape":"poly","coords":"900,604,922,604,922,628,1034,626,1034,806,898,808"},"114":{"page_id":"9ba07f8e-27f2-42b5-8cae-71ecc79bd0d5","available":false,"unit_number":"114","shape":"poly","coords":"736,654,870,654,870,662,896,662,898,808,734,808"},"115":{"page_id":"9ba07f8f-dfc1-4af1-9c4c-3df5f32d31d8","available":false,"unit_number":"115","shape":"rect","coords":"736,512,872,630"},"116":{"page_id":"9ba07f91-7d8f-4f3a-8e41-32be1704c1f7","available":false,"unit_number":"116","shape":"poly","coords":"736,402,780,402,780,392,820,390,820,364,872,364,872,510,734,512"}},"file_id":"6578","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6578-800/plan-1728-273-planslocation-niv1png.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"201":{"page_id":"9ba07f93-5dda-432d-a786-a4e9b68a624a","available":false,"unit_number":"201","shape":"rect","coords":"644,246,738,376"},"202":{"page_id":"9ba07f94-3099-4252-88db-ec5540afd6fb","available":false,"unit_number":"202","shape":"rect","coords":"552,246,642,378"},"203":{"page_id":"9ba07f96-6b96-4328-8960-03dacd16076a","available":false,"unit_number":"203","shape":"poly","coords":"410,328,550,330,550,376,526,376,526,462,406,464"},"204":{"page_id":"9ba07f98-20d8-4e8f-9313-5d7fcdd83bf6","available":false,"unit_number":"204","shape":"poly","coords":"214,338,368,338,368,330,408,330,406,464,212,462"},"205":{"page_id":"9ba07f9a-3ff8-4345-9151-d55e1e363dda","available":false,"unit_number":"205","shape":"poly","coords":"214,170,342,172,342,296,366,296,366,338,214,336"},"206":{"page_id":"9ba07f9c-80f9-4dc7-b4ad-b32d1bfa9036","available":false,"unit_number":"206","shape":"poly","coords":"394,172,518,170,518,264,524,266,524,302,394,302"},"207":{"page_id":"9ba07f9d-b3a5-4d20-8bbe-1cf0b5889047","available":false,"unit_number":"207","shape":"poly","coords":"516,90,638,88,638,220,526,220,524,170,516,170"},"208":{"page_id":"9ba07f9f-20e7-42fa-ae12-28b6fc832926","available":true,"unit_number":"208","shape":"rect","coords":"638,88,728,218"},"209":{"page_id":"9ba07fa0-adb9-47e0-b9ea-6a60a1974151","available":false,"unit_number":"209","shape":"rect","coords":"732,88,852,220"},"210":{"page_id":"9ba07fa1-5d2f-4c9f-91f6-55d961f82b01","available":true,"unit_number":"210","shape":"rect","coords":"852,88,1036,220"},"211":{"page_id":"9ba07fa3-378e-4756-968e-122a9b696e90","available":false,"unit_number":"211","shape":"rect","coords":"900,220,1038,312"},"212":{"page_id":"9ba07fa4-3da7-444a-9566-30f7dfccd438","available":false,"unit_number":"212","shape":"rect","coords":"902,314,1036,444"},"213":{"page_id":"9ba07fa5-817b-4c79-8cc0-32e54a795e16","available":false,"unit_number":"213","shape":"rect","coords":"900,444,1036,574"},"214":{"page_id":"9ba07fa7-0586-4f0b-9a59-646cba92e32f","available":false,"unit_number":"214","shape":"poly","coords":"900,606,922,606,922,628,1036,628,1038,808,898,808"},"215":{"page_id":"9ba07fa9-5810-4f56-9d1f-38b6fead8579","available":false,"unit_number":"215","shape":"poly","coords":"738,632,870,628,874,632,874,664,898,664,898,810,736,810"},"216":{"page_id":"9ba07faa-bd1f-45e1-bed6-bdabafd78105","available":false,"unit_number":"216","shape":"rect","coords":"738,514,874,628"},"217":{"page_id":"9ba07fac-0363-4b8e-9241-7ff6ff8f79b2","available":true,"unit_number":"217","shape":"poly","coords":"738,406,778,400,780,390,822,390,822,366,876,366,872,512,734,512"}},"file_id":"6579","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6579-800/plan-1728-273-planslocation-niv2png.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"301":{"page_id":"9ba07fae-23e7-491c-9052-41353671f4a9","available":true,"unit_number":"301","shape":"rect","coords":"550,242,734,374"},"302":{"page_id":"9ba07faf-0622-4761-a183-397c488a103f","available":false,"unit_number":"302","shape":"poly","coords":"406,326,548,326,548,374,522,374,524,458,408,458"},"303":{"page_id":"9ba07faf-d20b-4d85-b962-b19b4ec29f45","available":false,"unit_number":"303","shape":"poly","coords":"212,336,366,336,366,328,406,328,406,458,212,460"},"304":{"page_id":"9ba07fb1-9fcd-4a47-bd98-6d46d821f047","available":false,"unit_number":"304","shape":"poly","coords":"212,168,338,168,338,264,364,264,364,334,210,334"},"305":{"page_id":"9ba07fb3-08f7-4645-9666-b4d90f343752","available":true,"unit_number":"305","shape":"poly","coords":"392,168,516,168,516,262,522,262,522,300,388,298"},"306":{"page_id":"9ba07fb4-de77-4098-8962-3f9543e3ccf1","available":false,"unit_number":"306","shape":"poly","coords":"514,86,636,84,634,216,522,216,522,168,514,168"},"307":{"page_id":"9ba07fb6-9bd3-4145-9dbf-ce934fe24892","available":false,"unit_number":"307","shape":"rect","coords":"638,84,728,216"},"308":{"page_id":"9ba07fb9-0d2d-4fec-a0d9-7a9345dcc2c4","available":false,"unit_number":"308","shape":"rect","coords":"728,86,848,218"},"309":{"page_id":"9ba07fbc-0e46-4b40-9593-6a86b3fefbdf","available":false,"unit_number":"309","shape":"rect","coords":"850,86,1032,216"},"310":{"page_id":"9ba07fbe-8cb4-4f7e-bb28-db8270abdf19","available":true,"unit_number":"310","shape":"rect","coords":"898,218,1036,310"},"311":{"page_id":"9ba07fbf-4872-48ed-8e92-cb3ba1efe0ce","available":false,"unit_number":"311","shape":"rect","coords":"898,312,1034,440"},"312":{"page_id":"9ba07fc0-14cf-49c8-98f8-b825c7eda6dc","available":false,"unit_number":"312","shape":"rect","coords":"898,442,1036,572"},"313":{"page_id":"9ba07fc0-e364-418a-8258-7de45226b09c","available":false,"unit_number":"313","shape":"poly","coords":"898,602,920,602,920,626,1032,624,1032,804,896,804,896,804"},"314":{"page_id":"9ba07fc2-0b8d-4f26-bb7d-17023ace4497","available":true,"unit_number":"314","shape":"poly","coords":"736,628,870,628,870,660,894,660,896,806,734,806"},"315":{"page_id":"9ba07fc3-509b-4b5f-a99b-86471d3dc1ae","available":true,"unit_number":"315","shape":"poly","coords":"734,402,776,402,778,388,818,386,818,364,870,364,872,626,732,626"}},"file_id":"6580","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6580-800/plan-1728-273-planslocation-niv3png.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"401":{"page_id":"9ba07fc4-39a4-4fa7-996f-d2db52702c2a","available":true,"unit_number":"401","shape":"rect","coords":"550,244,734,374"},"402":{"page_id":"9ba07fc6-52be-4526-a714-bba6c61847a8","available":false,"unit_number":"402","shape":"poly","coords":"408,328,548,328,548,376,524,376,524,460,408,462"},"403":{"page_id":"9ba07fc7-58a5-4736-9a06-e200918acc91","available":false,"unit_number":"403","shape":"poly","coords":"212,338,368,336,368,330,406,328,406,462,212,460"},"404":{"page_id":"9ba07fc8-b9d1-42f5-ade9-fd477e9d4484","available":true,"unit_number":"404","shape":"poly","coords":"212,170,340,170,338,266,364,266,366,336,214,334"},"405":{"page_id":"9ba07fca-b56c-4cf0-80d2-d7159b704773","available":false,"unit_number":"405","shape":"poly","coords":"392,170,514,168,516,264,522,264,522,302,390,302"},"406":{"page_id":"9ba07fcc-c44f-4db3-8ece-e0d6aef9245f","available":false,"unit_number":"406","shape":"poly","coords":"516,88,636,88,636,218,524,218,524,170,512,168"},"407":{"page_id":"9ba07fce-590b-470d-90e5-bbb1af04aeba","available":false,"unit_number":"407","shape":"rect","coords":"636,88,728,218"},"408":{"page_id":"9ba07fcf-fd14-4258-8224-42a3b92691db","available":false,"unit_number":"408","shape":"rect","coords":"730,88,848,218"},"409":{"page_id":"9ba07fd1-7dcf-483c-9010-014ffde8d4aa","available":false,"unit_number":"409","shape":"rect","coords":"852,88,1034,216"},"410":{"page_id":"9ba07fd2-f226-4ede-b171-a5f5d92d3182","available":true,"unit_number":"410","shape":"rect","coords":"900,218,1034,308"},"411":{"page_id":"9ba07fd4-dc10-4d7c-a084-5b5b5b6f63f9","available":false,"unit_number":"411","shape":"rect","coords":"898,312,1032,440"},"412":{"page_id":"9ba07fd6-5f33-49b3-b218-efa6f87d3f7b","available":false,"unit_number":"412","shape":"rect","coords":"900,444,1034,572"},"413":{"page_id":"9ba07fd8-428b-438a-b312-99ee4a5c4641","available":false,"unit_number":"413","shape":"poly","coords":"900,604,922,604,922,628,1034,628,1034,808,898,808"},"414":{"page_id":"9ba07fda-6ef0-47ff-8f6d-9ef1d52c5c8f","available":false,"unit_number":"414","shape":"poly","coords":"738,632,870,630,870,664,894,662,894,806,736,806"},"415":{"page_id":"9ba07fdb-5451-4782-85ed-7110814a88f2","available":true,"unit_number":"415","shape":"poly","coords":"736,406,782,404,780,390,820,390,820,366,872,366,872,630,736,630"}},"file_id":"6581","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6581-800/plan-1728-273-planslocation-niv4png.webp"},"5":{"level_name":"\u00c9tage #5","level":5,"units":{"501":{"page_id":"9ba07fdc-9333-47eb-a3a5-d21139f553e8","available":true,"unit_number":"501","shape":"rect","coords":"550,242,734,370"},"502":{"page_id":"9ba07fde-213e-4bb7-a95d-f532e91bf9fa","available":false,"unit_number":"502","shape":"poly","coords":"408,326,546,326,548,372,522,372,524,458,408,456"},"503":{"page_id":"9ba07fe0-2ccb-4b09-b9cb-e7303fab1547","available":false,"unit_number":"503","shape":"poly","coords":"212,334,368,334,368,326,406,326,406,458,210,456"},"504":{"page_id":"9ba07fe1-d1da-4df1-a9d1-7b9a2bb88bf8","available":true,"unit_number":"504","shape":"poly","coords":"212,166,338,166,338,264,364,264,364,334,212,332"},"505":{"page_id":"9ba07fe2-d05e-4fc5-8764-8a08e6c73929","available":false,"unit_number":"505","shape":"poly","coords":"392,166,514,166,516,262,522,262,524,298,390,296,388,296"},"506":{"page_id":"9ba07fe4-d665-46e2-a0c3-1ff8350670bf","available":false,"unit_number":"506","shape":"poly","coords":"516,84,634,86,636,214,524,216,524,166,512,166"},"507":{"page_id":"9ba07fe6-18f7-40dd-bf0b-3470381b8ea1","available":false,"unit_number":"507","shape":"rect","coords":"638,84,728,214"},"508":{"page_id":"9ba07fe7-06bb-4514-99ef-350d5de31cc1","available":false,"unit_number":"508","shape":"rect","coords":"730,84,846,214"},"509":{"page_id":"9ba07fe8-0a5e-4ef3-b1ff-d5309249d48a","available":true,"unit_number":"509","shape":"rect","coords":"850,84,1032,214"},"510":{"page_id":"9ba07fe9-73e2-4a2c-af90-a682abc26c37","available":false,"unit_number":"510","shape":"rect","coords":"900,216,1034,308"},"511":{"page_id":"9ba07feb-f2e7-48b2-851b-6551e04198f6","available":false,"unit_number":"511","shape":"rect","coords":"898,310,1032,438"},"512":{"page_id":"9ba07fed-942e-47b1-a896-0712d5715b52","available":true,"unit_number":"512","shape":"rect","coords":"898,442,1032,570"},"513":{"page_id":"9ba07fef-35ad-445b-8497-67fb716a706e","available":false,"unit_number":"513","shape":"poly","coords":"900,602,922,602,922,624,1032,624,1032,804,898,804"},"514":{"page_id":"9ba07ff0-b909-4676-8ad7-ab1a59d892ed","available":false,"unit_number":"514","shape":"poly","coords":"738,628,872,628,872,660,894,658,896,806,736,804"},"515":{"page_id":"9ba07ff2-97b5-4ecc-8e55-8ddaebb6dd55","available":true,"unit_number":"515","shape":"poly","coords":"736,400,778,400,778,386,820,388,820,364,870,364,870,626,736,626"}},"file_id":"6582","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6582-800/plan-1728-273-planslocation-niv5png.webp"},"7":{"level_name":"\u00c9tage #7","level":7,"units":{"701":{"page_id":"9ba08008-936d-4df8-b787-23615cdd46a5","available":true,"unit_number":"701","shape":"rect","coords":"552,328,736,458"},"702":{"page_id":"9ba08009-90cd-4b5a-8cfa-04f361960bff","available":false,"unit_number":"702","shape":"poly","coords":"410,412,548,412,548,458,524,458,524,544,410,544"},"703":{"page_id":"9ba0800c-2e79-4dd2-8bce-d1153973e643","available":false,"unit_number":"703","shape":"poly","coords":"214,422,370,422,370,412,406,412,406,544,212,544"},"704":{"page_id":"9ba0800c-f617-4a21-90ef-cdd54d2c4a12","available":true,"unit_number":"704","shape":"poly","coords":"214,254,340,252,338,350,366,350,366,418,214,418"},"705":{"page_id":"9ba0800e-5782-4eae-bfad-46d5fdb58333","available":true,"unit_number":"705","shape":"poly","coords":"394,254,516,252,516,348,522,348,524,384,394,384"},"706":{"page_id":"9ba0800f-a395-46ec-b57d-a64ea81bc577","available":true,"unit_number":"706","shape":"poly","coords":"518,170,728,170,728,300,524,300,524,252,518,254"},"707":{"page_id":"9ba08011-1f2a-4d88-b9d0-30285dd1447c","available":false,"unit_number":"707","shape":"rect","coords":"732,170,850,300"},"708":{"page_id":"9ba08012-f25a-42ed-9460-b4a51229a71d","available":true,"unit_number":"708","shape":"rect","coords":"852,170,1034,300"},"709":{"page_id":"9ba08014-c97a-45a6-a6cf-b1567c920b91","available":true,"unit_number":"709","shape":"rect","coords":"900,302,1034,524"},"710":{"page_id":"9ba08016-df18-4d6a-a0f8-8a9c37d2d6c9","available":false,"unit_number":"710","shape":"rect","coords":"900,528,1034,654"},"711":{"page_id":"9ba08018-b428-4293-a29c-2d6c6fe3ed88","available":false,"unit_number":"711","shape":"poly","coords":"738,712,738,488,782,486,780,472,820,472,820,448,872,450,872,712"}},"file_id":"6583","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6583-800/plan-1728-273-planslocation-niv7png.webp"},"6":{"level_name":"\u00c9tage #6","level":6,"units":{"601":{"page_id":"9ba07ff4-ab77-4ca7-996f-dc19e61af0a9","available":true,"unit_number":"601","shape":"rect","coords":"550,246,732,376"},"602":{"page_id":"9ba07ff7-8e2f-4776-8fc2-b0572319a424","available":false,"unit_number":"602","shape":"poly","coords":"408,330,546,328,546,374,522,376,522,460,406,460,406,444"},"603":{"page_id":"9ba07ff8-7dda-46dd-b187-b26a50e30274","available":false,"unit_number":"603","shape":"poly","coords":"210,336,364,338,364,330,402,330,404,460,212,460"},"604":{"page_id":"9ba07ff9-8b8a-4d25-89bf-032763a8e1d6","available":true,"unit_number":"604","shape":"poly","coords":"210,168,336,170,338,266,362,266,364,336,210,334"},"605":{"page_id":"9ba07ffa-a952-4b5f-a126-83e567cfb2be","available":false,"unit_number":"605","shape":"rect","coords":"388,170,520,302"},"606":{"page_id":"9ba07ffb-f491-49d0-9dbb-f6ccbffc35c8","available":false,"unit_number":"606","shape":"poly","coords":"514,88,632,88,632,218,522,218,522,168,514,168"},"607":{"page_id":"9ba07ffd-1c55-446f-bdea-fb6ce56af613","available":true,"unit_number":"607","shape":"rect","coords":"636,88,726,218"},"608":{"page_id":"9ba07ffe-e0fe-4b16-9554-df621cd66213","available":true,"unit_number":"608","shape":"rect","coords":"728,88,846,218"},"609":{"page_id":"9ba08000-4fa5-454e-83a5-587ab28977c2","available":false,"unit_number":"609","shape":"rect","coords":"850,88,1034,220"},"610":{"page_id":"9ba08001-36c5-45e2-846b-fb66d85b2bf5","available":true,"unit_number":"610","shape":"rect","coords":"898,220,1034,440"},"611":{"page_id":"9ba08002-2e2f-41bb-b653-aa60115a566c","available":false,"unit_number":"611","shape":"rect","coords":"898,444,1032,572"},"612":{"page_id":"9ba08004-6775-4e3c-9457-8c9f72bf7c46","available":false,"unit_number":"612","shape":"poly","coords":"734,632,872,632,872,606,932,606,934,628,1032,628,1034,732,736,734,734,712"},"613":{"page_id":"9ba08005-fe6e-486a-ab5a-99ce6e9a94f2","available":false,"unit_number":"613","shape":"poly","coords":"734,404,778,406,778,390,818,390,818,368,868,368,870,628,736,628"}},"file_id":"6783","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6783-800/plan-1728-273-planslocation-niv62png.webp"}},"areas":[{"item_id":"271","shape":"poly","coords":"644,910,642,330,1290,328,1286,574,882,568,884,916","building_id":388,"available":true},{"item_id":"273","shape":"poly","coords":"876,1329,880,1399,628,1397,634,1161,870,1165,876,1095,1288,1099,1288,1675,1054,1675,1046,1333","building_id":389,"available":true}],"plan_url":"https://logisco.com/static/vb/6463-800/plan-1728-271-planlocation-implantationpng.webp"}]" | |
| 922 | + :project-name=""District GC"" | |
| 923 | + :building-id="388" | |
| 924 | + :floor="5" | |
| 925 | + ></plan-view> | |
| 926 | +</section> | |
| 927 | + | |
| 928 | + | |
| 929 | + </div> | |
| 930 | + | |
| 931 | +<div class="unitSection"> | |
| 932 | + <carousel-gallery> | |
| 933 | + <template #title> | |
| 934 | + <div class="blockText blockText-style--medium"> | |
| 935 | + <h2 class="blockText-surtitle">Perspectives du projet résidentiel</h2> | |
| 936 | + <p class="blockText-title">Capturer l'âme du projet à travers les images</p> | |
| 937 | + </div> | |
| 938 | + </template> | |
| 939 | + <template #images> | |
| 940 | + <carousel-gallery-slide> | |
| 941 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/8334-1800/promotion-au-district-gc-bail-de-2-ans-avec-augmentation-annuelle-fixe-de-35-certaines-conditions-sappliquent.webp" | |
| 942 | + alt="PROMOTION AU DISTRICT GC – Bail de 2 ans avec augmentation annuelle fixe de 3,5%! Certaines conditions s’appliquent."> | |
| 943 | + <template #description> | |
| 944 | + <a class="c2a c2a-text c2a--tertiary" | |
| 945 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 946 | + <span class="c2a-name"> | |
| 947 | + Découvrir District GC | |
| 948 | + </span> | |
| 949 | + </a> | |
| 950 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 951 | + PROMOTION AU DISTRICT GC – Bail de 2 ans avec augmentation annuelle fixe de 3,5%! Certaines conditions s’appliquent. | |
| 952 | + </h3> | |
| 953 | + </template> | |
| 954 | + </carousel-gallery-slide> | |
| 955 | + <carousel-gallery-slide> | |
| 956 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7812-1800/district-gc-murale.webp" | |
| 957 | + alt="District GC - Murale"> | |
| 958 | + <template #description> | |
| 959 | + <a class="c2a c2a-text c2a--tertiary" | |
| 960 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 961 | + <span class="c2a-name"> | |
| 962 | + Découvrir District GC | |
| 963 | + </span> | |
| 964 | + </a> | |
| 965 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 966 | + District GC - Murale | |
| 967 | + </h3> | |
| 968 | + </template> | |
| 969 | + </carousel-gallery-slide> | |
| 970 | + <carousel-gallery-slide> | |
| 971 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7811-1800/district-gc-espace-courrier.webp" | |
| 972 | + alt="District GC - Espace courrier"> | |
| 973 | + <template #description> | |
| 974 | + <a class="c2a c2a-text c2a--tertiary" | |
| 975 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 976 | + <span class="c2a-name"> | |
| 977 | + Découvrir District GC | |
| 978 | + </span> | |
| 979 | + </a> | |
| 980 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 981 | + District GC - Espace courrier | |
| 982 | + </h3> | |
| 983 | + </template> | |
| 984 | + </carousel-gallery-slide> | |
| 985 | + <carousel-gallery-slide> | |
| 986 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7808-1800/district-gc-terrasse-commune-la-plage-piscine-sur-le-toit.webp" | |
| 987 | + alt="District GC - Terrasse commune «La Plage» - Piscine sur le toit"> | |
| 988 | + <template #description> | |
| 989 | + <a class="c2a c2a-text c2a--tertiary" | |
| 990 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 991 | + <span class="c2a-name"> | |
| 992 | + Découvrir District GC | |
| 993 | + </span> | |
| 994 | + </a> | |
| 995 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 996 | + District GC - Terrasse commune «La Plage» - Piscine sur le toit | |
| 997 | + </h3> | |
| 998 | + </template> | |
| 999 | + </carousel-gallery-slide> | |
| 1000 | + <carousel-gallery-slide> | |
| 1001 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7813-1800/district-gc-terrasse-commune-la-plage-vue-sur-le-toit.webp" | |
| 1002 | + alt="District GC - Terrasse commune «La Plage» - Vue sur le toit"> | |
| 1003 | + <template #description> | |
| 1004 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1005 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1006 | + <span class="c2a-name"> | |
| 1007 | + Découvrir District GC | |
| 1008 | + </span> | |
| 1009 | + </a> | |
| 1010 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1011 | + District GC - Terrasse commune «La Plage» - Vue sur le toit | |
| 1012 | + </h3> | |
| 1013 | + </template> | |
| 1014 | + </carousel-gallery-slide> | |
| 1015 | + <carousel-gallery-slide> | |
| 1016 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7817-1800/district-gc-terrasse-commune-la-plage-espace-foyer.webp" | |
| 1017 | + alt="District GC - Terrasse commune «La Plage» - Espace foyer"> | |
| 1018 | + <template #description> | |
| 1019 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1020 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1021 | + <span class="c2a-name"> | |
| 1022 | + Découvrir District GC | |
| 1023 | + </span> | |
| 1024 | + </a> | |
| 1025 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1026 | + District GC - Terrasse commune «La Plage» - Espace foyer | |
| 1027 | + </h3> | |
| 1028 | + </template> | |
| 1029 | + </carousel-gallery-slide> | |
| 1030 | + <carousel-gallery-slide> | |
| 1031 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7807-1800/district-gc-terrasse-commune-la-plage-espace-bbq.webp" | |
| 1032 | + alt="District GC - Terrasse commune «La Plage» - Espace BBQ"> | |
| 1033 | + <template #description> | |
| 1034 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1035 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1036 | + <span class="c2a-name"> | |
| 1037 | + Découvrir District GC | |
| 1038 | + </span> | |
| 1039 | + </a> | |
| 1040 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1041 | + District GC - Terrasse commune «La Plage» - Espace BBQ | |
| 1042 | + </h3> | |
| 1043 | + </template> | |
| 1044 | + </carousel-gallery-slide> | |
| 1045 | + <carousel-gallery-slide> | |
| 1046 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7810-1800/district-gc-espace-lounge-le-forum.webp" | |
| 1047 | + alt="District GC - Espace lounge «Le Forum»"> | |
| 1048 | + <template #description> | |
| 1049 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1050 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1051 | + <span class="c2a-name"> | |
| 1052 | + Découvrir District GC | |
| 1053 | + </span> | |
| 1054 | + </a> | |
| 1055 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1056 | + District GC - Espace lounge «Le Forum» | |
| 1057 | + </h3> | |
| 1058 | + </template> | |
| 1059 | + </carousel-gallery-slide> | |
| 1060 | + <carousel-gallery-slide> | |
| 1061 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7815-1800/district-gc-espace-lounge-le-forum.webp" | |
| 1062 | + alt="District GC - Espace lounge «Le Forum»"> | |
| 1063 | + <template #description> | |
| 1064 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1065 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1066 | + <span class="c2a-name"> | |
| 1067 | + Découvrir District GC | |
| 1068 | + </span> | |
| 1069 | + </a> | |
| 1070 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1071 | + District GC - Espace lounge «Le Forum» | |
| 1072 | + </h3> | |
| 1073 | + </template> | |
| 1074 | + </carousel-gallery-slide> | |
| 1075 | + <carousel-gallery-slide> | |
| 1076 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7816-1800/district-gc-espace-lounge-le-forum-murale.webp" | |
| 1077 | + alt="District GC - Espace lounge «Le Forum» - Murale"> | |
| 1078 | + <template #description> | |
| 1079 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1080 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1081 | + <span class="c2a-name"> | |
| 1082 | + Découvrir District GC | |
| 1083 | + </span> | |
| 1084 | + </a> | |
| 1085 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1086 | + District GC - Espace lounge «Le Forum» - Murale | |
| 1087 | + </h3> | |
| 1088 | + </template> | |
| 1089 | + </carousel-gallery-slide> | |
| 1090 | + <carousel-gallery-slide> | |
| 1091 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8088-1800/district-gc-espace-de-divertissement-le-hub.webp" | |
| 1092 | + alt="District GC - Espace de divertissement «Le Hub»"> | |
| 1093 | + <template #description> | |
| 1094 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1095 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1096 | + <span class="c2a-name"> | |
| 1097 | + Découvrir District GC | |
| 1098 | + </span> | |
| 1099 | + </a> | |
| 1100 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1101 | + District GC - Espace de divertissement «Le Hub» | |
| 1102 | + </h3> | |
| 1103 | + </template> | |
| 1104 | + </carousel-gallery-slide> | |
| 1105 | + <carousel-gallery-slide> | |
| 1106 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8089-1800/district-gc-espace-de-divertissement-le-hub.webp" | |
| 1107 | + alt="District GC - Espace de divertissement «Le Hub»"> | |
| 1108 | + <template #description> | |
| 1109 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1110 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1111 | + <span class="c2a-name"> | |
| 1112 | + Découvrir District GC | |
| 1113 | + </span> | |
| 1114 | + </a> | |
| 1115 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1116 | + District GC - Espace de divertissement «Le Hub» | |
| 1117 | + </h3> | |
| 1118 | + </template> | |
| 1119 | + </carousel-gallery-slide> | |
| 1120 | + <carousel-gallery-slide> | |
| 1121 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8090-1800/district-gc-espace-de-divertissement-le-hub.webp" | |
| 1122 | + alt="District GC - Espace de divertissement «Le Hub»"> | |
| 1123 | + <template #description> | |
| 1124 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1125 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1126 | + <span class="c2a-name"> | |
| 1127 | + Découvrir District GC | |
| 1128 | + </span> | |
| 1129 | + </a> | |
| 1130 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1131 | + District GC - Espace de divertissement «Le Hub» | |
| 1132 | + </h3> | |
| 1133 | + </template> | |
| 1134 | + </carousel-gallery-slide> | |
| 1135 | + <carousel-gallery-slide> | |
| 1136 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7809-1800/district-gc-salle-dentrainement.webp" | |
| 1137 | + alt="District GC - Salle d'entraînement"> | |
| 1138 | + <template #description> | |
| 1139 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1140 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1141 | + <span class="c2a-name"> | |
| 1142 | + Découvrir District GC | |
| 1143 | + </span> | |
| 1144 | + </a> | |
| 1145 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1146 | + District GC - Salle d'entraînement | |
| 1147 | + </h3> | |
| 1148 | + </template> | |
| 1149 | + </carousel-gallery-slide> | |
| 1150 | + <carousel-gallery-slide> | |
| 1151 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7814-1800/district-gc-rangement-securise-pour-velos.webp" | |
| 1152 | + alt="District GC - Rangement sécurisé pour vélos"> | |
| 1153 | + <template #description> | |
| 1154 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1155 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1156 | + <span class="c2a-name"> | |
| 1157 | + Découvrir District GC | |
| 1158 | + </span> | |
| 1159 | + </a> | |
| 1160 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1161 | + District GC - Rangement sécurisé pour vélos | |
| 1162 | + </h3> | |
| 1163 | + </template> | |
| 1164 | + </carousel-gallery-slide> | |
| 1165 | + <carousel-gallery-slide> | |
| 1166 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8087-1800/district-gc-salle-dentrainement-exterieure.webp" | |
| 1167 | + alt="District GC - Salle d'entraînement extérieure"> | |
| 1168 | + <template #description> | |
| 1169 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1170 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1171 | + <span class="c2a-name"> | |
| 1172 | + Découvrir District GC | |
| 1173 | + </span> | |
| 1174 | + </a> | |
| 1175 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1176 | + District GC - Salle d'entraînement extérieure | |
| 1177 | + </h3> | |
| 1178 | + </template> | |
| 1179 | + </carousel-gallery-slide> | |
| 1180 | + <carousel-gallery-slide> | |
| 1181 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7818-1800/district-gc-salle-dentrainement-vestiaire.webp" | |
| 1182 | + alt="District GC - Salle d'entraînement - Vestiaire"> | |
| 1183 | + <template #description> | |
| 1184 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1185 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1186 | + <span class="c2a-name"> | |
| 1187 | + Découvrir District GC | |
| 1188 | + </span> | |
| 1189 | + </a> | |
| 1190 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1191 | + District GC - Salle d'entraînement - Vestiaire | |
| 1192 | + </h3> | |
| 1193 | + </template> | |
| 1194 | + </carousel-gallery-slide> | |
| 1195 | + <carousel-gallery-slide> | |
| 1196 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8086-1800/district-gc-cour-exterieure.webp" | |
| 1197 | + alt="District GC - Cour extérieure"> | |
| 1198 | + <template #description> | |
| 1199 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1200 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1201 | + <span class="c2a-name"> | |
| 1202 | + Découvrir District GC | |
| 1203 | + </span> | |
| 1204 | + </a> | |
| 1205 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1206 | + District GC - Cour extérieure | |
| 1207 | + </h3> | |
| 1208 | + </template> | |
| 1209 | + </carousel-gallery-slide> | |
| 1210 | + <carousel-gallery-slide> | |
| 1211 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7642-1800/district-gc-phase-a-cuisine-de-lappartement-modele-3-12.webp" | |
| 1212 | + alt="District GC - Phase A - Cuisine de l'appartement modèle 3 1/2"> | |
| 1213 | + <template #description> | |
| 1214 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1215 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1216 | + <span class="c2a-name"> | |
| 1217 | + Découvrir District GC | |
| 1218 | + </span> | |
| 1219 | + </a> | |
| 1220 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1221 | + District GC - Phase A - Cuisine de l'appartement modèle 3 1/2 | |
| 1222 | + </h3> | |
| 1223 | + </template> | |
| 1224 | + </carousel-gallery-slide> | |
| 1225 | + <carousel-gallery-slide> | |
| 1226 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7640-1800/district-gc-phase-a-salon-de-lappartement-modele-3-12.webp" | |
| 1227 | + alt="District GC - Phase A - Salon de l'appartement modèle 3 1/2"> | |
| 1228 | + <template #description> | |
| 1229 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1230 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1231 | + <span class="c2a-name"> | |
| 1232 | + Découvrir District GC | |
| 1233 | + </span> | |
| 1234 | + </a> | |
| 1235 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1236 | + District GC - Phase A - Salon de l'appartement modèle 3 1/2 | |
| 1237 | + </h3> | |
| 1238 | + </template> | |
| 1239 | + </carousel-gallery-slide> | |
| 1240 | + <carousel-gallery-slide> | |
| 1241 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7641-1800/district-gc-phase-a-aire-de-vie-de-lappartement-modele-3-12.webp" | |
| 1242 | + alt="District GC - Phase A - Aire de vie de l'appartement modèle 3 1/2"> | |
| 1243 | + <template #description> | |
| 1244 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1245 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1246 | + <span class="c2a-name"> | |
| 1247 | + Découvrir District GC | |
| 1248 | + </span> | |
| 1249 | + </a> | |
| 1250 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1251 | + District GC - Phase A - Aire de vie de l'appartement modèle 3 1/2 | |
| 1252 | + </h3> | |
| 1253 | + </template> | |
| 1254 | + </carousel-gallery-slide> | |
| 1255 | + <carousel-gallery-slide> | |
| 1256 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7301-1800/district-gc-phase-a-cuisine-de-lappartement-modele-4-12.webp" | |
| 1257 | + alt="District GC - Phase A - Cuisine de l'appartement modèle 4 1/2"> | |
| 1258 | + <template #description> | |
| 1259 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1260 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1261 | + <span class="c2a-name"> | |
| 1262 | + Découvrir District GC | |
| 1263 | + </span> | |
| 1264 | + </a> | |
| 1265 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1266 | + District GC - Phase A - Cuisine de l'appartement modèle 4 1/2 | |
| 1267 | + </h3> | |
| 1268 | + </template> | |
| 1269 | + </carousel-gallery-slide> | |
| 1270 | + <carousel-gallery-slide> | |
| 1271 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7304-1800/district-gc-phase-a-salle-de-bain-de-lappartement-modele-4-12.webp" | |
| 1272 | + alt="District GC - Phase A - Salle de bain de l'appartement modèle 4 1/2"> | |
| 1273 | + <template #description> | |
| 1274 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1275 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1276 | + <span class="c2a-name"> | |
| 1277 | + Découvrir District GC | |
| 1278 | + </span> | |
| 1279 | + </a> | |
| 1280 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1281 | + District GC - Phase A - Salle de bain de l'appartement modèle 4 1/2 | |
| 1282 | + </h3> | |
| 1283 | + </template> | |
| 1284 | + </carousel-gallery-slide> | |
| 1285 | + <carousel-gallery-slide> | |
| 1286 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8091-1800/district-gc-phase-b-cuisine.webp" | |
| 1287 | + alt="District GC - Phase B - Cuisine"> | |
| 1288 | + <template #description> | |
| 1289 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1290 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1291 | + <span class="c2a-name"> | |
| 1292 | + Découvrir District GC | |
| 1293 | + </span> | |
| 1294 | + </a> | |
| 1295 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1296 | + District GC - Phase B - Cuisine | |
| 1297 | + </h3> | |
| 1298 | + </template> | |
| 1299 | + </carousel-gallery-slide> | |
| 1300 | + <carousel-gallery-slide> | |
| 1301 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8092-1800/district-gc-phase-b-salle-de-bain.webp" | |
| 1302 | + alt="District GC - Phase B - Salle de bain"> | |
| 1303 | + <template #description> | |
| 1304 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1305 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1306 | + <span class="c2a-name"> | |
| 1307 | + Découvrir District GC | |
| 1308 | + </span> | |
| 1309 | + </a> | |
| 1310 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1311 | + District GC - Phase B - Salle de bain | |
| 1312 | + </h3> | |
| 1313 | + </template> | |
| 1314 | + </carousel-gallery-slide> | |
| 1315 | + <carousel-gallery-slide> | |
| 1316 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8093-1800/district-gc-phase-b-salle-de-bain.webp" | |
| 1317 | + alt="District GC - Phase B - Salle de bain"> | |
| 1318 | + <template #description> | |
| 1319 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1320 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1321 | + <span class="c2a-name"> | |
| 1322 | + Découvrir District GC | |
| 1323 | + </span> | |
| 1324 | + </a> | |
| 1325 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1326 | + District GC - Phase B - Salle de bain | |
| 1327 | + </h3> | |
| 1328 | + </template> | |
| 1329 | + </carousel-gallery-slide> | |
| 1330 | + <carousel-gallery-slide> | |
| 1331 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8094-1800/district-gc-phase-b-chambre.webp" | |
| 1332 | + alt="District GC - Phase B - Chambre"> | |
| 1333 | + <template #description> | |
| 1334 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1335 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1336 | + <span class="c2a-name"> | |
| 1337 | + Découvrir District GC | |
| 1338 | + </span> | |
| 1339 | + </a> | |
| 1340 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1341 | + District GC - Phase B - Chambre | |
| 1342 | + </h3> | |
| 1343 | + </template> | |
| 1344 | + </carousel-gallery-slide> | |
| 1345 | + <carousel-gallery-slide> | |
| 1346 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8095-1800/district-gc-phase-b-aire-de-vie.webp" | |
| 1347 | + alt="District GC - Phase B - Aire de vie"> | |
| 1348 | + <template #description> | |
| 1349 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1350 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1351 | + <span class="c2a-name"> | |
| 1352 | + Découvrir District GC | |
| 1353 | + </span> | |
| 1354 | + </a> | |
| 1355 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1356 | + District GC - Phase B - Aire de vie | |
| 1357 | + </h3> | |
| 1358 | + </template> | |
| 1359 | + </carousel-gallery-slide> | |
| 1360 | + <carousel-gallery-slide> | |
| 1361 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8096-1800/district-gc-phase-b-salle-a-manger.webp" | |
| 1362 | + alt="District GC - Phase B - Salle à manger"> | |
| 1363 | + <template #description> | |
| 1364 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1365 | + href="https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc"> | |
| 1366 | + <span class="c2a-name"> | |
| 1367 | + Découvrir District GC | |
| 1368 | + </span> | |
| 1369 | + </a> | |
| 1370 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1371 | + District GC - Phase B - Salle à manger | |
| 1372 | + </h3> | |
| 1373 | + </template> | |
| 1374 | + </carousel-gallery-slide> | |
| 1375 | + </template> | |
| 1376 | + </carousel-gallery> | |
| 1377 | +</div> | |
| 1378 | + | |
| 1379 | + | |
| 1380 | +<div id="projectType" data-project-type="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83"></div> | |
| 1381 | +<div id="unitFull" data-unit-dispo="Maintenant"></div> | |
| 1382 | + <section | |
| 1383 | + class="section section-background gap--1x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-bottom--1x padding-left--2x padding-right--2x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x id_d6ab60b6e3815869e4fdde2fb0d50af7a4d9d4ea" | |
| 1384 | + > | |
| 1385 | + | |
| 1386 | +<div class="id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e layout-full padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1387 | + <div class="blockText blockText-style--small " > | |
| 1388 | + <h2 class="blockText-title">On n’est jamais bien loin pour vous accompagner</h2> | |
| 1389 | + </div> | |
| 1390 | + | |
| 1391 | + </div> | |
| 1392 | + | |
| 1393 | + | |
| 1394 | + | |
| 1395 | +<div class="id_4f9de2cf2b5c2fe600683f36917305105bb82785 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_5x layout-rowGap--0x layout-rowGapMobile--2x"> | |
| 1396 | + | |
| 1397 | + <a class="blockText blockText--link " href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" > | |
| 1398 | + <div class="blockText-container"> | |
| 1399 | + <h3 class="blockText-subtitle">Centre d’aide</h3> | |
| 1400 | + <p class="blockText-description">Trouvez rapidement les informations dont vous avez besoin grâce à notre foire aux questions sur le résidentiel, le commercial et les emplois. </p> | |
| 1401 | + </div> | |
| 1402 | + <i class="blockText-icon icon-cms-arrow-right"></i> | |
| 1403 | +</a> | |
| 1404 | + <a class="blockText blockText--link " href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" > | |
| 1405 | + <div class="blockText-container"> | |
| 1406 | + <h3 class="blockText-subtitle">Nouvel arrivant</h3> | |
| 1407 | + <p class="blockText-description">Vous prévoyez vous installer dans la région de Québec? On offre un service d’accompagnement entièrement gratuit pour vous aider à trouver votre futur chez-vous, et ce, depuis votre pays d’origine.</p> | |
| 1408 | + </div> | |
| 1409 | + <i class="blockText-icon icon-cms-arrow-right"></i> | |
| 1410 | +</a> | |
| 1411 | + | |
| 1412 | + </div> | |
| 1413 | + | |
| 1414 | + </section> | |
| 1415 | + | |
| 1416 | + <section | |
| 1417 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-left--1x padding-right--1x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundColor--lightblue id_e9d7ad3426ce6ac21fa5430b9012695c42bd1dbe" | |
| 1418 | + > | |
| 1419 | + | |
| 1420 | + | |
| 1421 | +<div class="id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f layout-columns modifier-h--start padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_5x layout-rowGap--2x"> | |
| 1422 | + <div class="blockText blockText-style--small " > | |
| 1423 | + <h2 class="blockText-surtitle">Conseils sur l’immobilier </h2> | |
| 1424 | + <p class="blockText-title">On se veut utile </p> | |
| 1425 | + <span class="c2aBlock"> | |
| 1426 | + <a | |
| 1427 | + data-gtm-event="clickButton" data-gtm-id="conseils-en-immobilier-residentiel" | |
| 1428 | + | |
| 1429 | + href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="c2a c2a-text c2a--tertiary" | |
| 1430 | + aria-label="Conseils en immobilier résidentiel" | |
| 1431 | +> | |
| 1432 | + <span class="c2a-name"> | |
| 1433 | + Conseils en immobilier résidentiel | |
| 1434 | + </span> | |
| 1435 | + <i class="icon-cms-arrow-right"></i> | |
| 1436 | + </a> | |
| 1437 | + | |
| 1438 | + </span> | |
| 1439 | + </div> | |
| 1440 | + | |
| 1441 | + | |
| 1442 | + <div class="layout-carousel swiper js-carousel layout-carousel--mobile id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columns-desktop" | |
| 1443 | + data-breakpoint="750" | |
| 1444 | + data-speed="500" | |
| 1445 | + data-autoplay="false" | |
| 1446 | + data-delay="4000" | |
| 1447 | + data-direction="" | |
| 1448 | + | |
| 1449 | + data-slides-per-view-desktop="1" | |
| 1450 | + data-slides-per-view-mobile="1" | |
| 1451 | + | |
| 1452 | + data-space-between-slides="16" | |
| 1453 | + data-space-between-slides-mobile="8" | |
| 1454 | + | |
| 1455 | + data-effect="slide"> | |
| 1456 | + <div class="swiper-wrapper carousel-wrapper js-carouselWrapper layout-columnsGap--0_25x layout-rowGap--0x"> | |
| 1457 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/2025-on-a-vu-grand-chez-logisco" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="En 2025, on a vu grand chez LOGISCO"> | |
| 1458 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1459 | + <img class="cardItems-picture" width="475" height="267" src="https://logisco.com/static/vb/8181-475/2025-une-annee-de-plus-a-repousser-les-limites-logisco.webp" alt="2025 : Une année de plus à repousser les limites | LOGISCO"> | |
| 1460 | + </div> | |
| 1461 | + <span class="article-type">Nouvelles</span> | |
| 1462 | + <span class="article-date">17 décembre 2025 - 1 min. de lecture</span> | |
| 1463 | + <h3 class="article-title">En 2025, on a vu grand chez LOGISCO</h3> | |
| 1464 | + <span class="article-text">Retour sur 2025 : une année de réalisations, de projets livrés et d’innovations qui façonnent notre vision pour l’avenir.</span> | |
| 1465 | + </a> | |
| 1466 | +</div> | |
| 1467 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/et-si-la-tranquillite-desprit-passait-par-la-location" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="Et si la tranquillité d’esprit passait par la location?"> | |
| 1468 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1469 | + <img class="cardItems-picture" width="475" height="317" src="https://logisco.com/static/vb/7704-475/vivre-librement-grace-a-la-location-logisco.webp" alt="Vivre librement grâce à la location | LOGISCO"> | |
| 1470 | + </div> | |
| 1471 | + <span class="article-type">Immobilier résidentiel</span> | |
| 1472 | + <span class="article-date">19 juin 2025 - 3 min. de lecture</span> | |
| 1473 | + <h3 class="article-title">Et si la tranquillité d’esprit passait par la location?</h3> | |
| 1474 | + <span class="article-text">Et si la liberté passait par la location? Marcel partage son choix de vie au District GC.</span> | |
| 1475 | + </a> | |
| 1476 | +</div> | |
| 1477 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/experience-logisco" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="L’Expérience LOGISCO : plus qu’une simple transaction"> | |
| 1478 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1479 | + <img class="cardItems-picture" width="475" height="317" src="https://logisco.com/static/vb/7445-475/lexperience-logisco-plus-quune-simple-transaction-logisco.webp" alt="L’Expérience LOGISCO : plus qu’une simple transaction | LOGISCO"> | |
| 1480 | + </div> | |
| 1481 | + <span class="article-type">Immobilier résidentiel</span> | |
| 1482 | + <span class="article-date">30 janvier 2025 - 3 min. de lecture</span> | |
| 1483 | + <h3 class="article-title">L’Expérience LOGISCO : plus qu’une simple transaction</h3> | |
| 1484 | + <span class="article-text">Huit clients sur dix se disent satisfaits de nos services, et ce taux est en constante progression grâce à nos efforts continus. Signer un bail ou collaborer avec LOGISCO, c’est avant tout un lien humain, guidé par nos valeurs d’entreprise. Découvrez comment!</span> | |
| 1485 | + </a> | |
| 1486 | +</div> | |
| 1487 | + </div> | |
| 1488 | + <div class="carousel-nav carousel-navDots--center "> | |
| 1489 | + <div class="carousel-dots swiper-pagination js-carouselPagination carousel-dots--mobile"></div> | |
| 1490 | + </div> | |
| 1491 | + </div> | |
| 1492 | + | |
| 1493 | + | |
| 1494 | + </div> | |
| 1495 | + | |
| 1496 | + </section> | |
| 1497 | + | |
| 1498 | + | |
| 1499 | + | |
| 1500 | + | |
| 1501 | + </main> | |
| 1502 | + | |
| 1503 | + <footer class="footer" data-gtm-creative-slot="footer"> | |
| 1504 | + <section | |
| 1505 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1_5x padding-left--0x padding-right--0x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundEffect--roundedCornersTop id_4ab8b59e9ace372edff7af94b2f0ecfe8af887d9" | |
| 1506 | + style="background-color: rgba(19, 24, 52, 1)" > | |
| 1507 | + | |
| 1508 | + | |
| 1509 | +<div class="id_eca944e94897a9b2d2823841936b19315bf3c414 layout-columns modifier-h--start padding-top--0x padding-bottom--1x padding-left--1x padding-right--1x paddingMobile-top--0x paddingMobile-bottom--2x paddingMobile-left--0x paddingMobile-right--0x layout-rowGap--0x layout-columnsGap--0x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1510 | + | |
| 1511 | +<div class="id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1512 | + <single-expand | |
| 1513 | + class="" | |
| 1514 | + :mobile-breakpoint="750" | |
| 1515 | + :mobile-expanded="true" | |
| 1516 | + :expanded="false" | |
| 1517 | + is-link > | |
| 1518 | + <template #label> | |
| 1519 | + <span class="item item--bolder item--white"> | |
| 1520 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" > | |
| 1521 | + <p class="expand-labelName">À propos</p> | |
| 1522 | + </a> | |
| 1523 | + </span> | |
| 1524 | + </template> | |
| 1525 | + <template #content> | |
| 1526 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1527 | + | |
| 1528 | + <span class="item item--white70"> | |
| 1529 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" class="item-link " > | |
| 1530 | + Qui est LOGISCO | |
| 1531 | + </a> | |
| 1532 | + </span> | |
| 1533 | + | |
| 1534 | + | |
| 1535 | + <span class="item item--white70"> | |
| 1536 | + <a href="https://logisco.com/fr/emplois" data-gtm-page-type="Page" data-gtm-page-name="Emplois marque-employeur" class="item-link " > | |
| 1537 | + Emplois | |
| 1538 | + </a> | |
| 1539 | + </span> | |
| 1540 | + | |
| 1541 | + | |
| 1542 | + <span class="item item--white70"> | |
| 1543 | + <a href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="item-link " > | |
| 1544 | + Blogue | |
| 1545 | + </a> | |
| 1546 | + </span> | |
| 1547 | + | |
| 1548 | + | |
| 1549 | + <span class="item item--white70"> | |
| 1550 | + <a href="https://logisco.com/fr/dons-et-commandites" data-gtm-page-type="Page" data-gtm-page-name="Dons et commandites" class="item-link " > | |
| 1551 | + Dons et commandites | |
| 1552 | + </a> | |
| 1553 | + </span> | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1557 | + | |
| 1558 | + </template> | |
| 1559 | +</single-expand> | |
| 1560 | + | |
| 1561 | + <single-expand | |
| 1562 | + class="" | |
| 1563 | + :mobile-breakpoint="750" | |
| 1564 | + :mobile-expanded="true" | |
| 1565 | + :expanded="false" | |
| 1566 | + is-link > | |
| 1567 | + <template #label> | |
| 1568 | + <span class="item item--bolder item--white"> | |
| 1569 | + <a href="https://logisco.com/fr/futurs-projets-immobiliers" data-gtm-page-type="Page" data-gtm-page-name="Futurs projets immobiliers" > | |
| 1570 | + <p class="expand-labelName">Futurs projets immobiliers</p> | |
| 1571 | + </a> | |
| 1572 | + </span> | |
| 1573 | + </template> | |
| 1574 | + <template #content> | |
| 1575 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1576 | + | |
| 1577 | + <span class="item item--white70"> | |
| 1578 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/axel" data-gtm-page-type="Projet" data-gtm-page-name="Axel" data-gtm-project-id="1738" data-gtm-tag="Location à venir" class="item-link " > | |
| 1579 | + Axel | |
| 1580 | + </a> | |
| 1581 | + </span> | |
| 1582 | + | |
| 1583 | + | |
| 1584 | + <span class="item item--white70"> | |
| 1585 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/tria" data-gtm-page-type="Projet" data-gtm-page-name="Tria" data-gtm-project-id="1736" data-gtm-average-price="1857.5" data-gtm-listable-unit-count="28" data-gtm-tag="Projet neuf" class="item-link " > | |
| 1586 | + Tria | |
| 1587 | + </a> | |
| 1588 | + </span> | |
| 1589 | + | |
| 1590 | + | |
| 1591 | + | |
| 1592 | + </template> | |
| 1593 | +</single-expand> | |
| 1594 | + | |
| 1595 | + </div> | |
| 1596 | + | |
| 1597 | + <single-expand | |
| 1598 | + class="" | |
| 1599 | + :mobile-breakpoint="750" | |
| 1600 | + :mobile-expanded="true" | |
| 1601 | + :expanded="false" | |
| 1602 | + is-link > | |
| 1603 | + <template #label> | |
| 1604 | + <span class="item item--bolder item--white"> | |
| 1605 | + <a href="https://logisco.com/fr/appartements-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Appartements à louer" > | |
| 1606 | + <p class="expand-labelName">Appartements</p> | |
| 1607 | + </a> | |
| 1608 | + </span> | |
| 1609 | + </template> | |
| 1610 | + <template #content> | |
| 1611 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1612 | + | |
| 1613 | + <span class="item item--white70"> | |
| 1614 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1615 | + Québec | |
| 1616 | + </a> | |
| 1617 | + </span> | |
| 1618 | + | |
| 1619 | + | |
| 1620 | + <span class="item item--white70"> | |
| 1621 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1622 | + Beauport | |
| 1623 | + </a> | |
| 1624 | + </span> | |
| 1625 | + | |
| 1626 | + | |
| 1627 | + <span class="item item--white70"> | |
| 1628 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/charlesbourg" data-gtm-page-type="Quartier" data-gtm-page-name="Charlesbourg" class="item-link " > | |
| 1629 | + Charlesbourg | |
| 1630 | + </a> | |
| 1631 | + </span> | |
| 1632 | + | |
| 1633 | + | |
| 1634 | + <span class="item item--white70"> | |
| 1635 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/duberger-les-saules" data-gtm-page-type="Quartier" data-gtm-page-name="Duberger-Les-Saules" class="item-link " > | |
| 1636 | + Duberger-Les Saules | |
| 1637 | + </a> | |
| 1638 | + </span> | |
| 1639 | + | |
| 1640 | + | |
| 1641 | + <span class="item item--white70"> | |
| 1642 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville" data-gtm-page-type="Quartier" data-gtm-page-name="Loretteville" class="item-link " > | |
| 1643 | + Loretteville | |
| 1644 | + </a> | |
| 1645 | + </span> | |
| 1646 | + | |
| 1647 | + | |
| 1648 | + <span class="item item--white70"> | |
| 1649 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf" data-gtm-page-type="Quartier" data-gtm-page-name="Neufchâtel-Est-Lebourgneuf" class="item-link " > | |
| 1650 | + Neufchâtel-Est-Lebourgneuf | |
| 1651 | + </a> | |
| 1652 | + </span> | |
| 1653 | + | |
| 1654 | + | |
| 1655 | + <span class="item item--white70"> | |
| 1656 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1657 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1658 | + </a> | |
| 1659 | + </span> | |
| 1660 | + | |
| 1661 | + | |
| 1662 | + <span class="item item--white70"> | |
| 1663 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/saint-emile" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Émile" class="item-link " > | |
| 1664 | + Saint-Émile | |
| 1665 | + </a> | |
| 1666 | + </span> | |
| 1667 | + | |
| 1668 | + | |
| 1669 | + <span class="item item--white70"> | |
| 1670 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/val-belair" data-gtm-page-type="Quartier" data-gtm-page-name="Val-Bélair" class="item-link " > | |
| 1671 | + Val-Bélair | |
| 1672 | + </a> | |
| 1673 | + </span> | |
| 1674 | + | |
| 1675 | + | |
| 1676 | + <span class="item item--white70"> | |
| 1677 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/vanier" data-gtm-page-type="Quartier" data-gtm-page-name="Vanier" class="item-link " > | |
| 1678 | + Vanier | |
| 1679 | + </a> | |
| 1680 | + </span> | |
| 1681 | + | |
| 1682 | + | |
| 1683 | + <span class="item item--white70"> | |
| 1684 | + <a href="https://logisco.com/fr/appartements-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1685 | + Lévis | |
| 1686 | + </a> | |
| 1687 | + </span> | |
| 1688 | + | |
| 1689 | + | |
| 1690 | + <span class="item item--white70"> | |
| 1691 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1692 | + Desjardins | |
| 1693 | + </a> | |
| 1694 | + </span> | |
| 1695 | + | |
| 1696 | + | |
| 1697 | + <span class="item item--white70"> | |
| 1698 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-david" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-David" class="item-link " > | |
| 1699 | + Saint-David | |
| 1700 | + </a> | |
| 1701 | + </span> | |
| 1702 | + | |
| 1703 | + | |
| 1704 | + <span class="item item--white70"> | |
| 1705 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-nicolas" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Nicolas" class="item-link " > | |
| 1706 | + Saint-Nicolas | |
| 1707 | + </a> | |
| 1708 | + </span> | |
| 1709 | + | |
| 1710 | + | |
| 1711 | + <span class="item item--white70"> | |
| 1712 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1713 | + Saint-Romuald | |
| 1714 | + </a> | |
| 1715 | + </span> | |
| 1716 | + | |
| 1717 | + | |
| 1718 | + <span class="item item--white70"> | |
| 1719 | + <a href="https://logisco.com/fr/appartements-a-louer/donnacona" data-gtm-page-type="Ville" data-gtm-page-name="Donnacona" class="item-link " > | |
| 1720 | + Donnacona | |
| 1721 | + </a> | |
| 1722 | + </span> | |
| 1723 | + | |
| 1724 | + | |
| 1725 | + <span class="item item--white70"> | |
| 1726 | + <a href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures" data-gtm-page-type="Ville" data-gtm-page-name="Saint-Augustin-de-Desmaures" class="item-link " > | |
| 1727 | + Saint-Augustin-De-Desmaures | |
| 1728 | + </a> | |
| 1729 | + </span> | |
| 1730 | + | |
| 1731 | + | |
| 1732 | + </template> | |
| 1733 | +</single-expand> | |
| 1734 | + | |
| 1735 | + | |
| 1736 | +<div class="id_750d3332f0d42f874d235808f8c66a7d1d9c6129 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1737 | + <single-expand | |
| 1738 | + class="" | |
| 1739 | + :mobile-breakpoint="750" | |
| 1740 | + :mobile-expanded="true" | |
| 1741 | + :expanded="false" | |
| 1742 | + is-link > | |
| 1743 | + <template #label> | |
| 1744 | + <span class="item item--bolder item--white"> | |
| 1745 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Espaces commerciaux à louer" > | |
| 1746 | + <p class="expand-labelName">Espaces commerciaux</p> | |
| 1747 | + </a> | |
| 1748 | + </span> | |
| 1749 | + </template> | |
| 1750 | + <template #content> | |
| 1751 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1752 | + | |
| 1753 | + <span class="item item--white70"> | |
| 1754 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1755 | + Québec | |
| 1756 | + </a> | |
| 1757 | + </span> | |
| 1758 | + | |
| 1759 | + | |
| 1760 | + <span class="item item--white70"> | |
| 1761 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1762 | + Beauport | |
| 1763 | + </a> | |
| 1764 | + </span> | |
| 1765 | + | |
| 1766 | + | |
| 1767 | + <span class="item item--white70"> | |
| 1768 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1769 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1770 | + </a> | |
| 1771 | + </span> | |
| 1772 | + | |
| 1773 | + | |
| 1774 | + <span class="item item--white70"> | |
| 1775 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1776 | + Lévis | |
| 1777 | + </a> | |
| 1778 | + </span> | |
| 1779 | + | |
| 1780 | + | |
| 1781 | + <span class="item item--white70"> | |
| 1782 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/charny" data-gtm-page-type="Quartier" data-gtm-page-name="Charny" class="item-link " > | |
| 1783 | + Charny | |
| 1784 | + </a> | |
| 1785 | + </span> | |
| 1786 | + | |
| 1787 | + | |
| 1788 | + <span class="item item--white70"> | |
| 1789 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1790 | + Desjardins | |
| 1791 | + </a> | |
| 1792 | + </span> | |
| 1793 | + | |
| 1794 | + | |
| 1795 | + <span class="item item--white70"> | |
| 1796 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-jean-chrysostome" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Jean-Chrysostome" class="item-link " > | |
| 1797 | + Saint-Jean-Chrysostome | |
| 1798 | + </a> | |
| 1799 | + </span> | |
| 1800 | + | |
| 1801 | + | |
| 1802 | + <span class="item item--white70"> | |
| 1803 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1804 | + Saint-Romuald | |
| 1805 | + </a> | |
| 1806 | + </span> | |
| 1807 | + | |
| 1808 | + | |
| 1809 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1810 | + | |
| 1811 | + </template> | |
| 1812 | +</single-expand> | |
| 1813 | + | |
| 1814 | + | |
| 1815 | + <single-expand | |
| 1816 | + class="" | |
| 1817 | + :mobile-breakpoint="750" | |
| 1818 | + :mobile-expanded="true" | |
| 1819 | + :expanded="false" | |
| 1820 | + is-link > | |
| 1821 | + <template #label> | |
| 1822 | + <span class="item item--bolder item--white"> | |
| 1823 | + <a href="https://logisco.com/fr/hotels" data-gtm-page-type="Page" data-gtm-page-name="Hôtels" > | |
| 1824 | + <p class="expand-labelName">Hôtels</p> | |
| 1825 | + </a> | |
| 1826 | + </span> | |
| 1827 | + </template> | |
| 1828 | + <template #content> | |
| 1829 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1830 | + | |
| 1831 | + <span class="item item--white70"> | |
| 1832 | + <a href="https://www.hilton.com/fr/hotels/yqbwhht-home2-suites-quebec-city/" class="item-link " > | |
| 1833 | + Home2 Suites par Hilton Québec | |
| 1834 | + </a> | |
| 1835 | + </span> | |
| 1836 | + | |
| 1837 | + | |
| 1838 | + <span class="item item--white70"> | |
| 1839 | + <a href="https://www.hilton.com/fr/hotels/yqbbphx-hampton-suites-quebec-city-beauport/" class="item-link " > | |
| 1840 | + Hampton Inn & Suites Québec/Beauport | |
| 1841 | + </a> | |
| 1842 | + </span> | |
| 1843 | + | |
| 1844 | + | |
| 1845 | + <span class="item item--white70"> | |
| 1846 | + <a href="https://www.hilton.com/fr/hotels/yqbsrhx-hampton-suites-quebec-city-saint-romuald/" class="item-link " > | |
| 1847 | + Hampton Inn & Suites Québec/Lévis | |
| 1848 | + </a> | |
| 1849 | + </span> | |
| 1850 | + | |
| 1851 | + | |
| 1852 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1853 | + | |
| 1854 | + </template> | |
| 1855 | +</single-expand> | |
| 1856 | + | |
| 1857 | + </div> | |
| 1858 | + | |
| 1859 | + | |
| 1860 | +<div class="id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 blockGroup modifier-v--center modifier-vm--left padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1861 | + <span class="item item--bolder item--white"> | |
| 1862 | + <span class="item-link " > | |
| 1863 | + Téléphone sans frais | |
| 1864 | + </span> | |
| 1865 | + </span> | |
| 1866 | + | |
| 1867 | + | |
| 1868 | + <span class="item item--bigger item--white desktopOnly"> | |
| 1869 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1870 | + + 1-833-564-4726 | |
| 1871 | + </a> | |
| 1872 | + </span> | |
| 1873 | + <span class="item item--bigger item--white mobileOnly"> | |
| 1874 | + <a href="tel:+18335644726" class="item-link " data-gtm-event="appelFooter" > | |
| 1875 | + + 1-833-564-4726 | |
| 1876 | + </a> | |
| 1877 | + </span> | |
| 1878 | + | |
| 1879 | + | |
| 1880 | + <div class="items-row items-row--center "> | |
| 1881 | + <modal-button class-names="js-open-modal c2a c2a-hours " aria-label="Heures d'ouverture" modal-id="99e74ab5-6702-4826-8d7d-d6963262fe2d" data-gtm-event="clickButton" data-gtm-id="heures-douverture"> | |
| 1882 | + <div class="c2a-hoursIcon"> | |
| 1883 | + <span class="c2a-hoursIconCenter"></span> | |
| 1884 | + </div> | |
| 1885 | + Heures d’ouverture | |
| 1886 | + </modal-button> | |
| 1887 | + | |
| 1888 | + | |
| 1889 | + </div> | |
| 1890 | + | |
| 1891 | + <single-expand | |
| 1892 | + class="" | |
| 1893 | + :mobile-breakpoint="750" | |
| 1894 | + :mobile-expanded="true" | |
| 1895 | + :expanded="false" | |
| 1896 | + > | |
| 1897 | + <template #label> | |
| 1898 | + <span class="item item--bolder item--white"> | |
| 1899 | + <div > | |
| 1900 | + <p class="expand-labelName">Support</p> | |
| 1901 | + </div> | |
| 1902 | + </span> | |
| 1903 | + </template> | |
| 1904 | + <template #content> | |
| 1905 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1906 | + | |
| 1907 | + <span class="item item--white70"> | |
| 1908 | + <a href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="item-link " > | |
| 1909 | + Centre d'aide | |
| 1910 | + </a> | |
| 1911 | + </span> | |
| 1912 | + | |
| 1913 | + | |
| 1914 | + <span class="item item--white70"> | |
| 1915 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1916 | + Nous joindre | |
| 1917 | + </a> | |
| 1918 | + </span> | |
| 1919 | + | |
| 1920 | + | |
| 1921 | + | |
| 1922 | + <span class="item item--white70"> | |
| 1923 | + <a href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" class="item-link " > | |
| 1924 | + Nouvel arrivant | |
| 1925 | + </a> | |
| 1926 | + </span> | |
| 1927 | + | |
| 1928 | + | |
| 1929 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1930 | + | |
| 1931 | + </template> | |
| 1932 | +</single-expand> | |
| 1933 | + | |
| 1934 | + </div> | |
| 1935 | + | |
| 1936 | + </div> | |
| 1937 | + | |
| 1938 | + | |
| 1939 | +<div class="id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 layout-full padding-top--0x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile-left--0x layout-rowGap--0x"> | |
| 1940 | + <a | |
| 1941 | + data-gtm-event="clickButton" data-gtm-id="donnez-votre-avis-pour-gagner-100" | |
| 1942 | + target=_blank | |
| 1943 | + href="https://logisco.qualtrics.com/jfe/form/SV_2c2Qx298zKfhg34" class="c2a c2a-text c2a--secondary c2a-style--secondary" | |
| 1944 | + aria-label="Donnez votre avis pour gagner 100$" | |
| 1945 | +> | |
| 1946 | + <span class="c2a-name"> | |
| 1947 | + Donnez votre avis pour gagner 100$ | |
| 1948 | + </span> | |
| 1949 | + </a> | |
| 1950 | + | |
| 1951 | + </div> | |
| 1952 | + | |
| 1953 | + | |
| 1954 | + | |
| 1955 | +<div class="id_53475154bf3a1ec91c439fa85367d8e43e69cb6d layout-columns modifier-h--center padding-top--0_5x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_25x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1956 | + | |
| 1957 | +<div class="id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 blockGroup modifier-v--around modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1958 | + <div class="items-row items-row--start "> | |
| 1959 | + <span class="item item--white"> | |
| 1960 | + <a href="https://logisco.com/fr/politique-de-cookies" data-gtm-page-type="Page" data-gtm-page-name="Politique de cookies" class="item-link " > | |
| 1961 | + Politique d'utilisation des cookies | |
| 1962 | + </a> | |
| 1963 | + </span> | |
| 1964 | + | |
| 1965 | + | |
| 1966 | + <span class="item item--white"> | |
| 1967 | + <a href="https://logisco.com/fr/politique-de-protection-des-renseignements-personnels" data-gtm-page-type="Page" data-gtm-page-name="Politique de protection des renseignements personnels" class="item-link " > | |
| 1968 | + Politique de protection des renseignements personnels | |
| 1969 | + </a> | |
| 1970 | + </span> | |
| 1971 | + | |
| 1972 | + | |
| 1973 | + <span class="item item--label item--gray"> | |
| 1974 | + <span class="item-link " > | |
| 1975 | + © Tous droits réservés LOGISCO 2026 | |
| 1976 | + </span> | |
| 1977 | + </span> | |
| 1978 | + | |
| 1979 | + | |
| 1980 | + </div> | |
| 1981 | + | |
| 1982 | + </div> | |
| 1983 | + | |
| 1984 | + | |
| 1985 | +<div class="id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 blockGroup modifier-v--center modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1986 | + <div class="items-row items-row--even "> | |
| 1987 | + <a class="icon-link " href="https://www.facebook.com/logiscogroupe/?locale=fr_CA"> | |
| 1988 | + <i class="icon-social icon-cms-social-facebook"></i> | |
| 1989 | +</a> | |
| 1990 | + | |
| 1991 | + <a class="icon-link " href="https://www.instagram.com/logiscogroupeimmo/"> | |
| 1992 | + <i class="icon-social icon-cms-social-instagram"></i> | |
| 1993 | +</a> | |
| 1994 | + | |
| 1995 | + <a class="icon-link " href="https://www.pinterest.ca/logiscogroupeimmobilier/"> | |
| 1996 | + <i class="icon-social icon-cms-social-pinterest"></i> | |
| 1997 | +</a> | |
| 1998 | + | |
| 1999 | + <a class="icon-link " href="https://www.youtube.com/user/LogiscoGroupeImmo"> | |
| 2000 | + <i class="icon-social icon-cms-social-youtube"></i> | |
| 2001 | +</a> | |
| 2002 | + | |
| 2003 | + <a class="icon-link " href="https://ca.linkedin.com/company/logisco-groupe-immobilier"> | |
| 2004 | + <i class="icon-social icon-cms-social-linkedin"></i> | |
| 2005 | +</a> | |
| 2006 | + | |
| 2007 | + </div> | |
| 2008 | + | |
| 2009 | + </div> | |
| 2010 | + | |
| 2011 | + </div> | |
| 2012 | + | |
| 2013 | + </section> | |
| 2014 | + | |
| 2015 | + </footer> | |
| 2016 | + | |
| 2017 | + | |
| 2018 | + <logisco-chat></logisco-chat> | |
| 2019 | +</div> | |
| 2020 | + | |
| 2021 | + | |
| 2022 | + | |
| 2023 | + | |
| 2024 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vendor-Cx6hDgs3.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/lodash-DsaPwWhQ.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/swiper-BiYw9q3L.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/axios-ngrFHoWO.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/@vue-tv7FT8X3.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/date-fns-BBWgIHR2.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vue-tel-input-DOM-M7oJ.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs" /><script type="module" src="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="qTV8BXGDGxPDn2I1UXIP9J4Rc7cP7yHs"></script><script type="application/ld+json">{ | |
| 2025 | + "@context": "https://schema.org", | |
| 2026 | + "@type": "apartment", | |
| 2027 | + "@id": "1728:11634", | |
| 2028 | + "address": { | |
| 2029 | + "@type": "PostalAddress", | |
| 2030 | + "streetAddress": "506-5350 Boulevard Guillaume-Couture", | |
| 2031 | + "addressLocality": "Lévis", | |
| 2032 | + "addressRegion": "Québec", | |
| 2033 | + "postalCode": "G6V 4Z2", | |
| 2034 | + "addressCountry": "Canada" | |
| 2035 | + }, | |
| 2036 | + "branchCode": "11634", | |
| 2037 | + "floorLevel": "5", | |
| 2038 | + "image": "https://logisco.com/static/vb/6523/plan-1728-271-planlocation-506.webp", | |
| 2039 | + "map": "https://www.google.com/maps?q=506-5350+Boulevard+Guillaume-Couture%2C+L%C3%A9vis%2C+Qu%C3%A9bec%2C+G6V+4Z2", | |
| 2040 | + "name": "Appartement 506", | |
| 2041 | + "numberOfBedrooms": "3 1/2", | |
| 2042 | + "telephone": "+14185644726", | |
| 2043 | + "url": "https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506" | |
| 2044 | +} | |
| 2045 | +</script> | |
| 2046 | + | |
| 2047 | +<script type="application/ld+json">{ | |
| 2048 | + "@context": "https://schema.org", | |
| 2049 | + "@type": "BreadcrumbList", | |
| 2050 | + "itemListElement": [ | |
| 2051 | + { | |
| 2052 | + "@type": "ListItem", | |
| 2053 | + "position": 1, | |
| 2054 | + "name": "Accueil", | |
| 2055 | + "item": "https://logisco.com/fr" | |
| 2056 | + }, | |
| 2057 | + { | |
| 2058 | + "@type": "ListItem", | |
| 2059 | + "position": 2, | |
| 2060 | + "name": "Appartements \u00e0 louer", | |
| 2061 | + "item": "https://logisco.com/fr/appartements-a-louer" | |
| 2062 | + }, | |
| 2063 | + { | |
| 2064 | + "@type": "ListItem", | |
| 2065 | + "position": 3, | |
| 2066 | + "name": "L\u00e9vis", | |
| 2067 | + "item": "https://logisco.com/fr/appartements-a-louer/levis" | |
| 2068 | + }, | |
| 2069 | + { | |
| 2070 | + "@type": "ListItem", | |
| 2071 | + "position": 4, | |
| 2072 | + "name": "Desjardins", | |
| 2073 | + "item": "https://logisco.com/fr/appartements-a-louer/levis/desjardins" | |
| 2074 | + }, | |
| 2075 | + { | |
| 2076 | + "@type": "ListItem", | |
| 2077 | + "position": 5, | |
| 2078 | + "name": "District GC", | |
| 2079 | + "item": "https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc" | |
| 2080 | + }, | |
| 2081 | + { | |
| 2082 | + "@type": "ListItem", | |
| 2083 | + "position": 6, | |
| 2084 | + "name": "Appartement 506", | |
| 2085 | + "item": "https://logisco.com/fr/appartements-a-louer/levis/desjardins/district-gc/5350-appartement-506" | |
| 2086 | + } | |
| 2087 | + ] | |
| 2088 | +}</script> | |
| 2089 | + | |
| 2090 | + | |
| 2091 | +</body> | |
| 2092 | + | |
| 2093 | +</html> | |
added
tests/fixtures/logisco/0393376ec35c308f8fa6.html
+2033 −0
@@ -0,0 +1,2033 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + <script nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f"> | |
| 5 | + window.dataLayer = [] | |
| 6 | +</script> | |
| 7 | + <!-- Google Tag Manager --> | |
| 8 | + <script nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 9 | + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 10 | + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 11 | + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;var n=d.querySelector('[nonce]'); | |
| 12 | + n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f); | |
| 13 | + })(window,document,'script','dataLayer','GTM-PR75X6VZ');</script> | |
| 14 | + <!-- End Google Tag Manager --> | |
| 15 | + <meta name="csrf-token" content="RcK0g54Vsq52dUtLxz6zGOlBZlnXZoocezFO9jj4"> | |
| 16 | + <meta charset="utf-8"> | |
| 17 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 18 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes"> | |
| 19 | + | |
| 20 | + <style nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f">@charset "UTF-8";:root{--vs-colors--lightest: rgba(60, 60, 60, .26);--vs-colors--light: rgba(60, 60, 60, .5);--vs-colors--dark: #333;--vs-colors--darkest: rgba(0, 0, 0, .15);--vs-search-input-color: inherit;--vs-search-input-placeholder-color: inherit;--vs-font-size: 1rem;--vs-line-height: 1.4;--vs-state-disabled-bg: rgb(248, 248, 248);--vs-state-disabled-color: var(--vs-colors--light);--vs-state-disabled-controls-color: var(--vs-colors--light);--vs-border-color: var(--vs-colors--lightest);--vs-border-width: 1px;--vs-border-style: solid;--vs-border-radius: 4px;--vs-actions-padding: 4px 6px 0 3px;--vs-controls-color: var(--vs-colors--light);--vs-controls-size: 1;--vs-controls--deselect-text-shadow: 0 1px 0 #fff;--vs-selected-bg: #f0f0f0;--vs-selected-color: var(--vs-colors--dark);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: #fff;--vs-dropdown-color: inherit;--vs-dropdown-z-index: 1000;--vs-dropdown-min-width: 160px;--vs-dropdown-max-height: 350px;--vs-dropdown-box-shadow: 0px 3px 6px 0px var(--vs-colors--darkest);--vs-dropdown-option-bg: #000;--vs-dropdown-option-color: var(--vs-dropdown-color);--vs-dropdown-option-padding: 3px 20px;--vs-dropdown-option--active-bg: #5897fb;--vs-dropdown-option--active-color: #fff;--vs-dropdown-option--deselect-bg: #fb5858;--vs-dropdown-option--deselect-color: #fff}:root{--vs-disabled-bg: var(--vs-state-disabled-bg);--vs-disabled-color: var(--vs-state-disabled-color)}html,body,p,ul,li,h1,h2,h3{margin:0;padding:0}h1,h2,h3{font-size:100%;font-weight:400}ul{list-style:none}input{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img{height:auto;max-width:100%}html{line-height:normal;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2rem}a{text-decoration:none;background-color:transparent}strong{font-weight:bolder}img{border-style:none}input{margin:0;font-family:inherit}input{overflow:visible}[type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner{padding:0;border-style:none}[type=button]:-moz-focusring{outline:1px dotted ButtonText}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}:root{--base-font: $base-font;--spacing-0x: 0;--spacing-0_25x: 1.6em;--spacing-0_5x: 3.2em;--spacing-1x: 6.4em;--spacing-1_25x: 8em;--spacing-1_5x: 9.6em;--spacing-2x: 12em;--border-radius-none: 0;--border-radius-sm: 2rem;--border-radius-md: 4rem;--border-radius-lg: 6rem}@media (max-width:750px){:root{--spacing-0x: 0;--spacing-0_5x: .8em;--spacing-1x: 1.6em;--spacing-2x: 4em}}html{font-size:.7320644217vw}body{line-height:normal}h1,h2,h3{font-weight:400;font-size:1em}a{color:currentColor}img{display:block;width:100%;height:100%}html{font-size:.6944444444vw}@media (max-width:750px){html{font-size:2.7777777778vw}}html{scroll-behavior:smooth}.alertTop-close{color:#363636;font-family:Macan}.alertTop-close{font-weight:400;font-size:2rem}@media (max-width:750px){.alertTop-close{font-weight:400;font-size:1.8rem}}.projectServices-title{font-family:Macan;font-weight:400;font-size:2.2rem;line-height:1.3}@media (max-width:750px){.projectServices-title{font-size:2.1rem;line-height:1.4}}.projectServices-listItem,.alertTop-content{font-family:Macan;font-weight:300;font-size:1.6rem;line-height:1.4}.breadcrumb-item{font-family:Macan;font-weight:400;font-size:1.2rem;line-height:1.3}.unitHeader-address{font-family:Macan;font-weight:400;font-size:1.5rem;line-height:1.5}.mainMenu-elementLink{font-family:Macan;font-weight:500;font-size:1.7rem;line-height:1}.tooltip-subtitle{font-family:Macan;font-weight:500;font-size:1.3rem;line-height:1}.unitHeader-label{font-family:Macan;font-weight:300;font-size:4.4rem;line-height:1.3}@media (max-width:750px){.unitHeader-label{font-size:3.2rem;line-height:1.2}}@font-face{font-family:icon-cms;src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4);src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-cms-DWd4ei5T.woff2?39a3p4) format("woff2"),url(/theme/build/assets/icomoon-cms-DQc2SeWf.ttf?39a3p4) format("truetype"),url(/theme/build/assets/icomoon-cms-PZ9bTWPn.woff?39a3p4) format("woff"),url(/theme/build/assets/icomoon-cms-B-zWZdiB.svg?39a3p4#icomoon-cms) format("svg");font-weight:400;font-style:normal;font-display:block}[class^=icon-cms-],[class*=" icon-cms-"]{font-family:icon-cms!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-cms-]:after,[class*=" icon-cms-"]:after{position:absolute;top:0;left:0}.icon-cms-close:before{content:""}.icon-cms-social-share:before{content:""}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Semibold-P894naFN.woff2) format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Book-BKtKbQB6.woff2) format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Regular-Tnze7Wf6.woff2) format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Light-D0XdM3nR.woff2) format("woff2");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Thin-D8KRJN3P.woff2) format("woff2");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:icomoon-logisco;src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j);src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-logisco-3ELZv8tI.ttf?u4aq2j) format("truetype"),url(/theme/build/assets/icomoon-logisco-DAB2sWOk.woff?u4aq2j) format("woff"),url(/theme/build/assets/icomoon-logisco-CJnwMfM_.svg?u4aq2j#icomoon) format("svg");font-weight:400;font-style:normal;font-display:swap}[class^=icon-logisco-],[class*=" icon-logisco-"]{font-weight:400;font-family:icomoon-logisco!important;font-style:normal;font-variant:normal;line-height:1;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-logisco-]:after,[class*=" icon-logisco-"]:after{position:absolute;top:0;left:0}.icon-logisco-service--dishwasher_connection:before{content:""}.icon-logisco-service--entrance_washer_dryer:before{content:""}.icon-logisco-service--garden:before{content:""}.icon-logisco-service--secure_bike_rack:before{content:""}.icon-logisco-service--guest_parking:before{content:""}.icon-logisco-service--secure_entrance:before{content:""}.icon-logisco-service--car_wash:before{content:""}.icon-logisco-service--moto_parking:before{content:""}.icon-logisco-service--bike_repair_station:before{content:""}.icon-logisco-service--intercom:before{content:""}.icon-logisco-service--garbage_chute:before{content:""}.icon-logisco-service--secure_post_office_locker:before{content:""}.icon-logisco-service--security_cam:before{content:""}.icon-logisco-service--charging_station:before{content:""}.icon-logisco-service--elevator:before{content:""}.icon-logisco-service--wifi:before{content:""}.icon-logisco-service--indoor_parking:before{content:""}.icon-logisco-service--outdoor_parking:before{content:""}.icon-logisco-service--electricity:before{content:""}.icon-logisco-service--hot_water:before{content:""}.icon-logisco-service--heating:before{content:""}.icon-logisco-service--cable_distribution:before{content:""}.icon-logisco-service--ac:before{content:""}.icon-logisco-service--furnished_terrace:before{content:""}.icon-logisco-phone:before{content:""}.icon-logisco-information:before{content:""}.icon-logisco-3d:before{content:""}.icon-cms-close{font-family:icomoon-logisco!important}.icon-cms-close:before{content:""}.icon-cms-social-share{font-family:icomoon-logisco!important}.icon-cms-social-share:before{content:""}.alertTop{position:fixed;top:0;z-index:100;display:flex;align-items:center;justify-content:center;width:100%;height:4.8em;padding-top:1em;padding-bottom:1em;color:#fff;font-family:Macan}@media (max-width:750px){.alertTop{justify-content:space-between}}.alertTop-on .alertTop-placeholder{height:4.8em}.alertTop--main{background-color:#0385d4}.alertTop--main .alertTop-close{color:#fff}@media (min-width:751px){.alertTop-text--mobile{display:none}}@media (max-width:750px){.alertTop-text--desktop{display:none}}.alertTop-close{position:absolute;right:1em;font-size:1.2em!important;font-style:normal}@media (max-width:750px){.alertTop-close{right:1.5em}}.alertTop{padding-top:1.2em;padding-bottom:1.2em}.alertTop-close{position:absolute;font-size:3em!important}.alertTop-content a{text-decoration:underline;text-underline-offset:.1em}@media (max-width:750px){.alertTop{padding:.8em 4em .8em 1.6em}.alertTop-close{right:.5rem}.alertTop-content{font-size:1.2em}}.breadcrumb-list{display:flex;gap:1.2rem;margin-bottom:4em;padding-bottom:4em;border-bottom:.1rem solid #0F1223}.breadcrumb-item{display:flex;color:#0f1223}.breadcrumb-item:not(:last-child):after{display:block;padding-left:1.2rem;content:"|"}@media (max-width:750px){.breadcrumb-list{padding:1rem 0;margin:0 0 .6rem;border-bottom:none;overflow-x:scroll}.breadcrumb-item{white-space:nowrap}}.mainMenu{display:flex;gap:3em;align-items:center;justify-content:flex-end}.mainMenu-item{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;width:100%}.mainMenu-element{display:flex;align-items:center}.mainMenu-elementLink{display:flex;flex-direction:row;gap:.25em;align-items:center;padding:.3571428571em;color:#000;font-weight:500;font-size:1.4em;font-family:Macan;line-height:1.2142857143em;letter-spacing:.0642857143em;white-space:nowrap}.mainMenu-list{display:flex;gap:4.4em}@media (max-width:750px){.mainMenu{gap:1em}.mainMenu-list{display:none}}.mainMenu{gap:0;width:100%;justify-content:space-between;padding:0 6.4em}.mainMenu-list{margin-right:auto;margin-left:auto;gap:3.2em}.mainMenu-item{white-space:nowrap}.mainMenu-item:last-child{display:flex;flex-direction:row;align-items:center;gap:3.2em}.mainMenu-item:last-child:before{content:"";background-color:#c9d5dc;width:.1em;height:2.4em}.mainMenu-elementLink{font-size:1.7rem;letter-spacing:0}@media (max-width:750px){.mainMenu{padding:0 1.6em}}.mainHeader{position:fixed;top:0;left:0;z-index:100;width:100%;background-color:#fff}.mainHeader-placeholder{height:5.5em}@media (max-width:750px){.mainHeader-placeholder{height:5em}}.mainHeader-shadow{opacity:0}.mainHeader-bg{position:absolute;left:0;display:block;width:100%;height:5.5em;background-color:#fff;transform:translateY(-100%)}.mainHeader-nav{position:relative;display:flex;align-items:center;justify-content:space-between;height:5.5em;padding:1.5em 6.4em}.mainHeader-brand{display:flex;align-items:center}.mainHeader-logo{display:flex;width:70%;height:100%}.mainHeader-logo.mainHeader-logo--white{display:none}@media (max-width:750px){.mainHeader-bg{height:5em;transform:translateY(0)}.mainHeader-brand{font-size:.15em}.mainHeader-logo{width:85em}.mainHeader-nav{height:5em;padding:0 4em}}.mainHeader-nav{padding:0;border-bottom:.1em solid #C9D5DC}.mainHeader-logo{width:13.7em}.mainHeader-linksList{display:flex;gap:.8em;align-items:center}.mainHeader-listItem{display:flex;align-items:center;justify-content:center;height:max-content}@media (min-width:751px){.mainHeader-listItem{min-width:6.3rem;min-height:4.5rem;padding-right:.8rem;padding-left:.8rem;border:.2rem solid transparent;border-radius:8rem}}.icon-logisco-phone{display:flex;align-items:center;justify-content:center;padding:0;color:#000;font-size:2em;background-color:transparent;border:none;aspect-ratio:1}@supports not (aspect-ratio:1){.icon-logisco-phone{position:relative}.icon-logisco-phone:after{display:block;content:"";width:100%;padding-top:100%}}.icon-logisco-phone{font-size:2.3em}@media (max-width:750px){.mainHeader-nav{padding:0}.mainHeader-brand{margin-right:auto}.mainHeader-logo{width:70em}.mainHeader-linksList{gap:2.2rem}}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}:root{--dp-font-family: Macan !important;--dp-input-padding: 1em 3em 1em 1.2em !important;--dp-font-size: 1.6rem !important;--dp-preview-font-size: 1.3rem !important;--dp-border-radius: .8rem !important;--dp-cell-size: 1.8em !important}.logisco-unit .projectServices-list{grid-template-columns:repeat(2,1fr)}@media (max-width:750px){.logisco-unit .projectServices-list{grid-template-columns:repeat(1,1fr)}}.unitHeader{position:relative;display:flex;flex-direction:column;gap:3.2em;padding-top:4em;padding-right:12.9rem;padding-bottom:8em;padding-left:12.9rem;background-color:#f3f8ff}.unitHeader .breadcrumb-list{margin-bottom:1em;padding-bottom:0;border-bottom:none}.unitHeader-background{position:absolute;top:75em;right:0;bottom:0;left:0;background-color:#fff}.unitHeader-topContainer{display:flex;align-items:center;justify-content:space-between}.unitHeader-bottomContainer{z-index:20;display:flex;gap:1.6em;justify-content:space-between}.unitHeader-imageWrapper--mobile{display:none}.unitHeader-label{display:inline-block;align-items:center}.unitHeader-labelDivider{margin-right:.3em}.unitHeader-address{color:#0385d4;text-decoration:underline}.unitHeader-callToActions{position:absolute;top:1.5em;right:1.5em;z-index:20;display:flex;gap:.8em;justify-content:flex-end;width:100%}.unitHeader-callToActions .icon-cms-social-share{color:#0f1223!important;font-size:1.3em}.unitHeader-link{display:block;height:max-content;margin-top:1.6em}.unitHeader-imageWrapper{position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;background-color:#fff;border-radius:.8em;aspect-ratio:1.5068226121}@supports not (aspect-ratio:calc(773 / 513)){.unitHeader-imageWrapper{position:relative}.unitHeader-imageWrapper:after{display:block;content:"";width:100%;padding-top:66.3648124191%}.unitHeader-imageWrapper>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper img{width:unset;max-width:100%;height:100%;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-bottomLeft{position:relative;display:flex;flex-direction:column;width:65%;height:100%}.unitHeader-bottomLeft .projectServices{margin:0}.unitHeader-imageOverlay{display:none}@media (max-width:750px){.unitHeader-labelDivider{display:none}.unitHeader-imageWrapper--mobile{position:relative;display:block;aspect-ratio:1.3333333333}@supports not (aspect-ratio:calc(360 / 270)){.unitHeader-imageWrapper--mobile{position:relative}.unitHeader-imageWrapper--mobile:after{display:block;content:"";width:100%;padding-top:75%}.unitHeader-imageWrapper--mobile>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper--mobile img{width:unset;max-width:100%;height:unset;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-imageWrapper--mobile .unitHeader-callToActions{display:flex}.unitHeader-imageWrapper--mobile .unitHeader-callToActions .icon-cms-social-share{font-size:1.5em}.unitHeader-callToActions,.unitHeader-imageWrapper{display:none}.unitHeader{padding:0;background-color:#fff}.unitHeader .projectServices{padding:3.2em 1.6em}.unitHeader-background{display:none}.unitHeader-imageWrapper{border-radius:0}.unitHeader-imageOverlay{position:absolute;z-index:10;display:block;background:linear-gradient(180deg,#02002405,#02002405),linear-gradient(180deg,#02002466,#00d4ff00 35%);top:0;right:0;bottom:0;left:0}.unitHeader-topContainer .breadcrumb-list{margin:0;padding:1rem 0 1rem 1.6em}.unitHeader-text{width:100%}.unitHeader-label{display:flex;flex-direction:column;align-items:flex-start;margin-top:1.6rem}.unitHeader-label--small{font-size:2.8rem}.unitHeader-label,.unitHeader-link{padding-right:1.6rem;padding-left:1.6rem}.unitHeader-bottomContainer{flex-direction:column}.unitHeader-bottomLeft{width:100%}}.tooltip-container{display:none}.tooltip-subtitle{margin-bottom:1.6em}.projectServices-title .tooltip-subtitle{margin-bottom:0;font-size:1.3rem}.projectServices{display:flex;flex-direction:column;margin-right:14.4em;margin-left:14.4em;padding-top:12em;padding-bottom:0;gap:4em}.unitHeader-bottomLeft .projectServices{padding-top:8em}.unitHeader-bottomLeft .projectServices+.projectServices{padding-top:2.4em}.projectServices-title{position:relative;display:flex;gap:.4em}.projectServices-title .icon-logisco-information{color:#0385d4;margin-top:.2em}.projectServices-list{display:grid;padding-top:2.4em;padding-bottom:4em;border-bottom:.1em solid #EEF0F2;grid-template-columns:repeat(3,1fr);column-gap:3.2em;row-gap:1.6em}.unitHeader-bottomLeft .projectServices-list{padding-bottom:2.4em}.projectServices-itemContainer{display:flex;gap:.8em;align-items:center}.projectServices-icon{font-size:3em}.projectServices-listItem{display:flex;gap:.8em;align-items:center}@media (max-width:750px){.projectServices{margin-right:1.6em;margin-left:1.6em}.projectServices-list{grid-template-columns:repeat(1,1fr);gap:2em 1em}}</style> | |
| 21 | + <script | |
| 22 | + id="locallogic-sdk" | |
| 23 | + nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" | |
| 24 | + async | |
| 25 | + src="https://sdk.locallogic.co/sdks-js/1.23.32/index.umd.js" | |
| 26 | +></script> | |
| 27 | + | |
| 28 | +<script nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f"> | |
| 29 | + (function() { | |
| 30 | + let sdkLoaded = false; | |
| 31 | + let domReady = false; | |
| 32 | + | |
| 33 | + const globalOptions = { | |
| 34 | + locale: "fr", | |
| 35 | + appearance: { | |
| 36 | + theme: "day", | |
| 37 | + variables: { | |
| 38 | + "--ll-color-primary": "#002d5c", | |
| 39 | + "--ll-color-primary-variant1": "#219cd7", | |
| 40 | + "--ll-font-family": "Macan, sans-serif" | |
| 41 | + } | |
| 42 | + } | |
| 43 | + }; | |
| 44 | + | |
| 45 | + function tryInitialize() { | |
| 46 | + if (!sdkLoaded || !domReady) { | |
| 47 | + return; | |
| 48 | + } | |
| 49 | + | |
| 50 | + const sdkContainer = document.getElementById("local-content-widget"); | |
| 51 | + | |
| 52 | + if (!sdkContainer) { | |
| 53 | + return; | |
| 54 | + } | |
| 55 | + | |
| 56 | + const rect = sdkContainer.getBoundingClientRect(); | |
| 57 | + if (rect.width === 0 || rect.height === 0) { | |
| 58 | + setTimeout(tryInitialize, 100); | |
| 59 | + return; | |
| 60 | + } | |
| 61 | + | |
| 62 | + const lat = parseFloat(sdkContainer.dataset.localLogicLat); | |
| 63 | + const lng = parseFloat(sdkContainer.dataset.localLogicLng); | |
| 64 | + | |
| 65 | + const ll = LLSDKsJS("420d1d42c48e9186122576db04e678af.41a932d2-2a53-461a-b85f-b5dd90355bce", globalOptions); | |
| 66 | + | |
| 67 | + const sdkOptions = { | |
| 68 | + lat: lat, | |
| 69 | + lng: lng, | |
| 70 | + marker: { | |
| 71 | + lat: lat, | |
| 72 | + lng: lng | |
| 73 | + }, | |
| 74 | + mapProvider: { | |
| 75 | + name: "google", | |
| 76 | + key: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q" | |
| 77 | + }, | |
| 78 | + scoresMenu: { | |
| 79 | + categories: { | |
| 80 | + transport: { | |
| 81 | + hide: JSON.parse(sdkContainer.dataset.localLogicTransport || 'false'), | |
| 82 | + scores: { | |
| 83 | + pedestrian_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportPedestrianFriendly || 'false') }, | |
| 84 | + cycling_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCyclingFriendly || 'false') }, | |
| 85 | + transit_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportTransitFriendly || 'false') }, | |
| 86 | + car_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCarFriendly || 'false') } | |
| 87 | + } | |
| 88 | + }, | |
| 89 | + education: { | |
| 90 | + hide: JSON.parse(sdkContainer.dataset.localLogicEducation || 'false'), | |
| 91 | + scores: { | |
| 92 | + daycares: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationDaycares || 'false') }, | |
| 93 | + primary_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationPrimarySchools || 'false') }, | |
| 94 | + high_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationHighSchools || 'false') } | |
| 95 | + } | |
| 96 | + }, | |
| 97 | + amenities: { | |
| 98 | + hide: JSON.parse(sdkContainer.dataset.localLogicAmenities || 'false'), | |
| 99 | + scores: { | |
| 100 | + shopping: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesShopping || 'false') }, | |
| 101 | + groceries: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesGroceries || 'false') }, | |
| 102 | + restaurants: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesRestaurants || 'false') }, | |
| 103 | + cafes: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesCafes || 'false') } | |
| 104 | + } | |
| 105 | + }, | |
| 106 | + character: { | |
| 107 | + hide: JSON.parse(sdkContainer.dataset.localLogicCharacter || 'false'), | |
| 108 | + scores: { | |
| 109 | + nightlife: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterNightlife || 'false') }, | |
| 110 | + vibrant: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterVibrant || 'false') }, | |
| 111 | + historic: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterHistoric || 'false') }, | |
| 112 | + quiet: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterQuiet || 'false') } | |
| 113 | + } | |
| 114 | + }, | |
| 115 | + nature: { | |
| 116 | + hide: JSON.parse(sdkContainer.dataset.localLogicNature || 'false'), | |
| 117 | + scores: { | |
| 118 | + parks: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureParks || 'false') }, | |
| 119 | + greenery: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureGreenery || 'false') } | |
| 120 | + } | |
| 121 | + }, | |
| 122 | + wellness: { hide: JSON.parse(sdkContainer.dataset.localLogicWellness || 'false') }, | |
| 123 | + health: { hide: JSON.parse(sdkContainer.dataset.localLogicHealth || 'false') } | |
| 124 | + } | |
| 125 | + } | |
| 126 | + }; | |
| 127 | + | |
| 128 | + ll.create("local-content", sdkContainer, sdkOptions); | |
| 129 | + } | |
| 130 | + | |
| 131 | + document.getElementById('locallogic-sdk').addEventListener('load', function() { | |
| 132 | + sdkLoaded = true; | |
| 133 | + tryInitialize(); | |
| 134 | + }); | |
| 135 | + | |
| 136 | + if (document.readyState === 'loading') { | |
| 137 | + document.addEventListener('DOMContentLoaded', function() { | |
| 138 | + domReady = true; | |
| 139 | + tryInitialize(); | |
| 140 | + }); | |
| 141 | + } else { | |
| 142 | + domReady = true; | |
| 143 | + tryInitialize(); | |
| 144 | + } | |
| 145 | + })(); | |
| 146 | +</script> | |
| 147 | + | |
| 148 | + <script async src="https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="f89f0a00-9a89-4d45-9a32-8a86321619f9"></script> | |
| 149 | + <script type="text/javascript" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f"> | |
| 150 | + function OptanonWrapper() {} | |
| 151 | + </script> | |
| 152 | + | |
| 153 | + <link rel="icon" type="image/png" href="https://logisco.com/theme/images/favicon_logisco-57x57.png" sizes="57x57" /> | |
| 154 | + | |
| 155 | + <!-- TODO this is blocking.... revert to old script --> | |
| 156 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /> <script nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f"> | |
| 157 | + window.Cheetah = { | |
| 158 | + locale: 'fr', | |
| 159 | + themeDir: "theme", | |
| 160 | + gMapKey: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q", | |
| 161 | + isMobile: false, | |
| 162 | + chatbotBaseUrl: "https:\/\/chatbot-api.logisco.com\/v1", | |
| 163 | + form: { | |
| 164 | + maxFileSize: parseInt("4"), | |
| 165 | + maxFileCount: parseInt("5"), | |
| 166 | + fileExtensions: ["jpg","jpeg","png","docx","doc","pdf","txt"] }, | |
| 167 | + formSecurity: { | |
| 168 | + default: 'turnstile', | |
| 169 | + isDisabled: false, | |
| 170 | + config: {"fallback":["turnstile","captcha"],"captcha":{"key":""},"turnstile":{"key":"0x4AAAAAAAc7m33H9T6pSzmR"}} }, | |
| 171 | + reservation: { | |
| 172 | + locationUrl: "https:\/\/logisco.com\/fr\/appartements-a-louer" } | |
| 173 | + } | |
| 174 | + </script> | |
| 175 | + | |
| 176 | + | |
| 177 | + <noscript> | |
| 178 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /> </noscript> | |
| 179 | + <style nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f"> .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } @media (max-width: 750px) { .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr 3fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 .carousel-wrapper { grid-template-columns: 1fr 1fr 1fr; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { grid-template-columns: ; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr; } } .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } @media (max-width: 750px) { .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } } .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } @media (max-width: 750px) { .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } } .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } @media (max-width: 750px) { .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } } .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } @media (max-width: 750px) { .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr; } } .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } @media (max-width: 750px) { .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } } .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 100%; } @media (max-width: 750px) { .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 80%; } } </style> | |
| 180 | + <!-- SEO --> | |
| 181 | + <title>Appartement 607 | KOS LOGISCO</title> | |
| 182 | +<meta name="description" content=""> | |
| 183 | +<meta property="og:title" content="Appartement 607 | KOS LOGISCO"> | |
| 184 | +<meta property="og:url" content="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607"> | |
| 185 | + <meta property="og:image" content="https://logisco.com/static/vb/5549-1200/appartement-607-kos-logisco.webp"> | |
| 186 | +<meta property="og:description" content=""> | |
| 187 | + | |
| 188 | +<meta id="gtm-page-info" data-gtm-page-type="Unité" data-gtm-page-name="Appartement 607" data-gtm-project-id="1711" data-gtm-unit-id="10635" data-gtm-unit-type="APARTMENT" data-gtm-available="1" data-gtm-tag="Tout inclus" data-gtm-is-in-wishlist="" data-gtm-is-in-reservation="" data-gtm-unit-price="170.6" data-gtm-nom-liste="unites_du_projet_kos"> | |
| 189 | + | |
| 190 | + | |
| 191 | + <link rel="canonical" href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607"/> | |
| 192 | + | |
| 193 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607" | |
| 194 | + hreflang="x-default"> | |
| 195 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607" | |
| 196 | + hreflang="fr"> | |
| 197 | + <meta id="gtm-additional-page-info" data-gtm-wishlist-count="0" data-gtm-reservation-count="0" data-gtm-device_type="desktop"> | |
| 198 | + | |
| 199 | + <meta id="mobile_menu_preload" href="https://logisco.com/mobile_menu.json" /> | |
| 200 | + <!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET--> | |
| 201 | + <script type='text/javascript' nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f"> | |
| 202 | + (function(){var g=function(e,h,f,g){ | |
| 203 | + this.get=function(a){for(var a=a+"=",c=document.cookie.split(";"),b=0,e=c.length;b<e;b++){for(var d=c[b];" "==d.charAt(0);)d=d.substring(1,d.length);if(0==d.indexOf(a))return d.substring(a.length,d.length)}return null}; | |
| 204 | + this.set=function(a,c){var b="",b=new Date;b.setTime(b.getTime()+6048E5);b="; expires="+b.toGMTString();document.cookie=a+"="+c+b+"; path=/; "}; | |
| 205 | + this.check=function(){var a=this.get(f);if(a)a=a.split(":");else if(100!=e)"v"==h&&(e=Math.random()>=e/100?0:100),a=[h,e,0],this.set(f,a.join(":"));else return!0;var c=a[1];if(100==c)return!0;switch(a[0]){case "v":return!1;case "r":return c=a[2]%Math.floor(100/c),a[2]++,this.set(f,a.join(":")),!c}return!0}; | |
| 206 | + this.go=function(){if(this.check()){var a=document.createElement("script");a.type="text/javascript";a.src=g;document.body&&document.body.appendChild(a)}}; | |
| 207 | + this.start=function(){var t=this;"complete"!==document.readyState?window.addEventListener?window.addEventListener("load",function(){t.go()},!1):window.attachEvent&&window.attachEvent("onload",function(){t.go()}):t.go()};}; | |
| 208 | + try{(new g(100,"r","QSI_S_ZN_9H0SsDLTgAxOu1M","https://zn9h0ssdltgaxou1m-logisco.siteintercept.qualtrics.com/SIE/?Q_ZID=ZN_9H0SsDLTgAxOu1M")).start()}catch(i){}})(); | |
| 209 | + </script><div id='ZN_9H0SsDLTgAxOu1M'><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div> | |
| 210 | + <!--END WEBSITE FEEDBACK SNIPPET--> | |
| 211 | + | |
| 212 | + <script type="text/javascript" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f"> | |
| 213 | + !function(e,t){ | |
| 214 | + (e=t.createElement("script")).src="https://cdn.convertbox.com/convertbox/js/embed.js", | |
| 215 | + e.id="app-convertbox-script", | |
| 216 | + e.async=true, | |
| 217 | + e.dataset.uuid="a2c68abb-6a6e-496a-a1ca-455b6413a4c4", | |
| 218 | + document.getElementsByTagName("head")[0].appendChild(e) | |
| 219 | + }(window,document); | |
| 220 | + </script> | |
| 221 | +</head> | |
| 222 | +<body class="logisco-unit alertTop-on "> | |
| 223 | + | |
| 224 | +<noscript> | |
| 225 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PR75X6VZ" height="0" width="0" | |
| 226 | + style="display:none; visibility:hidden"></iframe> | |
| 227 | + </noscript> | |
| 228 | + | |
| 229 | +<div id="app"> | |
| 230 | + | |
| 231 | + <header class="mainHeader not_searchable" data-gtm-creative-slot="entete"> | |
| 232 | + | |
| 233 | + <div id="alertTop--650b259e98957" class="alertTop alertTop--main js-promotion-viewed" data-gtm-creative-slot="alertTop" data-gtm-creative-name="AlertTop" data-gtm-promotion-name="Nouveau site web - Centre d'aide"> | |
| 234 | +<div class="alertTop-container"> | |
| 235 | + <p class="alertTop-content alertTop-text--desktop">Trouvez votre prochain appartement à Québec et Lévis où <i><strong>vous </strong></i>serez bien chez vous– <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 236 | + <p class="alertTop-content alertTop-text--mobile">Trouvez votre prochain appartement à Québec et Lévis – <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 237 | + </div> | |
| 238 | +<i class="alertTop-close js-alertTop-close icon-cms-close"></i> | |
| 239 | +</div> | |
| 240 | + | |
| 241 | +<div class="alertTop-placeholder"></div> | |
| 242 | + | |
| 243 | + <div class="mainHeader-bg"></div> | |
| 244 | + <nav class="mainHeader-nav"> | |
| 245 | + <div class="mainMenu"> | |
| 246 | + <sliding-panel class="topMenu" context="topMenu"> | |
| 247 | + <template #button> | |
| 248 | + <button class="topMenu-button" data-gtm-event="clicEntete-menuHamburger"> | |
| 249 | + <i class="topMenu-toggle icon-cms-burger" | |
| 250 | + aria-label="Ouvrir le menu secondaire"> | |
| 251 | + </i> | |
| 252 | + </button> | |
| 253 | + </template> | |
| 254 | + <template #close> | |
| 255 | + <button class="hamburger-close" type="button" aria-label="Fermer le menu secondaire"> | |
| 256 | + <i class="icon-cms-close"></i> | |
| 257 | + </button> | |
| 258 | + <img class="mobileMenu-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 259 | + </template> | |
| 260 | + <template #content> | |
| 261 | + <ul class="slidingPanel-utilsMenuList slidingPanel-level-0"> | |
| 262 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 263 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 264 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 265 | + data-gtm-event="clicMenu" | |
| 266 | + data-gtm-label="Appartements" | |
| 267 | + > | |
| 268 | + Appartements | |
| 269 | + </a> | |
| 270 | + </li> | |
| 271 | + | |
| 272 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 273 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 274 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 275 | + data-gtm-event="clicMenu" | |
| 276 | + data-gtm-label="Espaces commerciaux" | |
| 277 | + > | |
| 278 | + Espaces commerciaux | |
| 279 | + </a> | |
| 280 | + </li> | |
| 281 | + | |
| 282 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 283 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 284 | + href="https://logisco.com/fr/futurs-projets-immobiliers" | |
| 285 | + data-gtm-event="clicMenu" | |
| 286 | + data-gtm-label="Futurs projets immobiliers" | |
| 287 | + > | |
| 288 | + Futurs projets immobiliers | |
| 289 | + </a> | |
| 290 | + </li> | |
| 291 | + | |
| 292 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 293 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 294 | + href="https://logisco.com/fr/hotels" | |
| 295 | + data-gtm-event="clicMenu" | |
| 296 | + data-gtm-label="Hôtels" | |
| 297 | + > | |
| 298 | + Hôtels | |
| 299 | + </a> | |
| 300 | + </li> | |
| 301 | + | |
| 302 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 303 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 304 | + href="https://logisco.com/fr/emplois" | |
| 305 | + data-gtm-event="clicMenu" | |
| 306 | + data-gtm-label="Emplois" | |
| 307 | + > | |
| 308 | + Emplois | |
| 309 | + </a> | |
| 310 | + </li> | |
| 311 | + | |
| 312 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 313 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 314 | + href="https://logisco.com/fr/nouvel-arrivant" | |
| 315 | + data-gtm-event="clicMenu" | |
| 316 | + data-gtm-label="Nouvel arrivant" | |
| 317 | + > | |
| 318 | + Nouvel arrivant | |
| 319 | + </a> | |
| 320 | + </li> | |
| 321 | + | |
| 322 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 323 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 324 | + href="https://logisco.com/fr/a-propos" | |
| 325 | + data-gtm-event="clicMenu" | |
| 326 | + data-gtm-label="Qui est LOGISCO" | |
| 327 | + > | |
| 328 | + Qui est LOGISCO | |
| 329 | + </a> | |
| 330 | + </li> | |
| 331 | + | |
| 332 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 333 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 334 | + href="https://logisco.com/fr/blogue" | |
| 335 | + data-gtm-event="clicMenu" | |
| 336 | + data-gtm-label="Blogue" | |
| 337 | + > | |
| 338 | + Blogue | |
| 339 | + </a> | |
| 340 | + </li> | |
| 341 | + | |
| 342 | + </ul> | |
| 343 | + </template> | |
| 344 | + <template #footer> | |
| 345 | + <div class="slidingPanel-c2a"> | |
| 346 | + <a | |
| 347 | + data-gtm-event="clickButton" data-gtm-id="centre-daide" | |
| 348 | + | |
| 349 | + href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="c2a c2a-text c2a--tertiary" | |
| 350 | + aria-label="Centre d'aide" | |
| 351 | +> | |
| 352 | + <span class="c2a-name"> | |
| 353 | + Centre d’aide | |
| 354 | + </span> | |
| 355 | + <i class="icon-cms-arrow-right"></i> | |
| 356 | + </a> | |
| 357 | + | |
| 358 | + </div> | |
| 359 | + <div class="slidingPanel-c2a"> | |
| 360 | + <a | |
| 361 | + data-gtm-event="clickButton" data-gtm-id="nous-joindre" | |
| 362 | + | |
| 363 | + href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="c2a c2a-text c2a--tertiary" | |
| 364 | + aria-label="Nous joindre" | |
| 365 | +> | |
| 366 | + <span class="c2a-name"> | |
| 367 | + Nous joindre | |
| 368 | + </span> | |
| 369 | + <i class="icon-cms-arrow-right"></i> | |
| 370 | + </a> | |
| 371 | + | |
| 372 | + </div> | |
| 373 | + </template> | |
| 374 | + </sliding-panel> | |
| 375 | + <div class="mainHeader-brand"> | |
| 376 | + <a class="mainHeader-logoLink" href="https://logisco.com/fr"> | |
| 377 | + <img class="mainHeader-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 378 | +<img class="mainHeader-logo mainHeader-logo--white" src="https://logisco.com/theme/images/logo-white.svg" height="49" width="193" alt="Logisco"> </a> | |
| 379 | + </div> | |
| 380 | + <ul class="mainMenu-list"> | |
| 381 | + | |
| 382 | +<li class="mainMenu-item "> | |
| 383 | + <div class="mainMenu-element"> | |
| 384 | + <a class="mainMenu-elementLink" | |
| 385 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 386 | + data-gtm-event="clicMenu" | |
| 387 | + data-gtm-label="Appartements" | |
| 388 | + > | |
| 389 | + Appartements | |
| 390 | + </a> | |
| 391 | + </div> | |
| 392 | + </li> | |
| 393 | + | |
| 394 | + | |
| 395 | +<li class="mainMenu-item "> | |
| 396 | + <div class="mainMenu-element"> | |
| 397 | + <a class="mainMenu-elementLink" | |
| 398 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 399 | + data-gtm-event="clicMenu" | |
| 400 | + data-gtm-label="Espaces commerciaux" | |
| 401 | + > | |
| 402 | + Espaces commerciaux | |
| 403 | + </a> | |
| 404 | + </div> | |
| 405 | + </li> | |
| 406 | + | |
| 407 | + | |
| 408 | +<li class="mainMenu-item "> | |
| 409 | + <div class="mainMenu-element"> | |
| 410 | + <a class="mainMenu-elementLink" | |
| 411 | + href="https://logisco.com/fr/hotels" | |
| 412 | + data-gtm-event="clicMenu" | |
| 413 | + data-gtm-label="Hôtels" | |
| 414 | + > | |
| 415 | + Hôtels | |
| 416 | + </a> | |
| 417 | + </div> | |
| 418 | + </li> | |
| 419 | + | |
| 420 | + | |
| 421 | +<li class="mainMenu-item "> | |
| 422 | + <div class="mainMenu-element"> | |
| 423 | + <a class="mainMenu-elementLink" | |
| 424 | + href="https://logisco.com/fr/centre-daide" | |
| 425 | + data-gtm-event="clicMenu" | |
| 426 | + data-gtm-label="Centre d'aide" | |
| 427 | + > | |
| 428 | + Centre d'aide | |
| 429 | + </a> | |
| 430 | + </div> | |
| 431 | + </li> | |
| 432 | + | |
| 433 | + </ul> | |
| 434 | + <div class="mainHeader-links"> | |
| 435 | + <ul class="mainHeader-linksList"> | |
| 436 | + <li class="mainHeader-listItem"> | |
| 437 | + <a id="mainHeader-contact" | |
| 438 | + href="https://logisco.com/fr/nous-joindre" | |
| 439 | + class="icon-logisco-phone" | |
| 440 | + type="button" | |
| 441 | + aria-label="vanilla::header.phone" | |
| 442 | + data-gtm-event="clicEntete-appelLogisco" | |
| 443 | + data-contact-cp="https://logisco.com/fr/nous-joindre" | |
| 444 | + ></a> | |
| 445 | + </li> | |
| 446 | + <li class="mainHeader-listItem"> | |
| 447 | + <wishlist-redirect-icon | |
| 448 | + :href-url="'https://logisco.com/fr/favoris'" | |
| 449 | + :default-count="0" | |
| 450 | + label="Vers page 'Favoris'" | |
| 451 | + > | |
| 452 | + </wishlist-redirect-icon> | |
| 453 | + </li> | |
| 454 | + <li class="mainHeader-listItem"> | |
| 455 | + <reservation-panel | |
| 456 | + :default-count="0" | |
| 457 | + label="Vers le 'Planificateur de visites'" | |
| 458 | + > | |
| 459 | + </reservation-panel> | |
| 460 | + </li> | |
| 461 | + </ul> | |
| 462 | +</div> | |
| 463 | +</div> | |
| 464 | + </nav> | |
| 465 | + <div class="mainHeader-shadow"></div> | |
| 466 | +</header> | |
| 467 | + | |
| 468 | +<div class="alertTop-placeholder"></div> | |
| 469 | +<div class="mainHeader-placeholder"></div> | |
| 470 | + | |
| 471 | + <input id="currentId" type="hidden" value="9a74cfb8-7bdb-4fa3-9ded-89f7da122a2a"> | |
| 472 | + <input id="ancestors" type="hidden" value="["99c9a187-9f29-4895-a92e-5d01818e748d","990a9815-0c2d-41ed-be1a-0aea582d0ccf","9a745908-d289-4e4f-bafe-2c512caafe6c","9a858ae9-0407-4c5b-9d76-d93138a1dc6c","99c9a9c2-ed6d-44b1-9d70-b341fda207c6","9a74cfb8-7bdb-4fa3-9ded-89f7da122a2a"]"> | |
| 473 | + <nav class="left-nav"> | |
| 474 | + </nav> | |
| 475 | + | |
| 476 | + <main id="main" class="vb js-vb" data-gtm-creative-slot="mainContent"> | |
| 477 | + <div class="unitHeader js-zoom"> | |
| 478 | + <div class="unitHeader-background"></div> | |
| 479 | + <div class="unitHeader-topContainer"> | |
| 480 | + <div class="unitHeader-text"> | |
| 481 | + <div class="breadcrumb-list"> | |
| 482 | + <a class="breadcrumb-item" href="https://logisco.com/fr">Accueil</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer">Appartements à louer</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec">Québec</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf">Neufchâtel-Est-Lebourgneuf</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos">KOS</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607">Appartement 607</a> </div> | |
| 483 | + <div class="unitHeader-imageWrapper--mobile"> | |
| 484 | + <i-frame-modal-button | |
| 485 | + iframe-link="https://my.matterport.com/show/?m=1aNA74ZkhnT" | |
| 486 | + class-names="unitCard-imageTag" | |
| 487 | + modal-title="Appartement 607 • KOS • Visite virtuelle" | |
| 488 | + aria-label="Bouton modal" | |
| 489 | + unit-or-project="Unit" | |
| 490 | + breakpoint="750"> | |
| 491 | + <span>Visite</span> | |
| 492 | + <i class="icon-logisco-3d"></i> | |
| 493 | + </i-frame-modal-button> | |
| 494 | + <div class="unitHeader-callToActions"> | |
| 495 | + <share-button | |
| 496 | + class="unitHeader-shareButton" | |
| 497 | + url="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607" | |
| 498 | + data-gtm-event="pageUnite-partager" | |
| 499 | + :classes="'c2a c2a-text c2a--secondary c2a-style--secondary'"> | |
| 500 | + <i class="icon-cms-social-share"></i> | |
| 501 | + <span class="c2a-name"> | |
| 502 | + Partager | |
| 503 | + </span> | |
| 504 | + </share-button> | |
| 505 | + <wishlist-toggle-icon :is-button="false" page-id="9a74cfb8-7bdb-4fa3-9ded-89f7da122a2a" | |
| 506 | + :exist="false"/> | |
| 507 | + </div> | |
| 508 | + <div class="unitHeader-imageOverlay"></div> | |
| 509 | + <img class="js-zoomMobileImage" width="1200" height="1350" src="https://logisco.com/static/vb/5549-1200/plan-1711-342-planlocation-207-307-407-209-309-409-507-607.webp" | |
| 510 | + alt="Plan Appartement 607"> | |
| 511 | + </div> | |
| 512 | + <h1 class="unitHeader-label">Appartement 607 | |
| 513 | + <span class="unitHeader-labelDivider">•</span> | |
| 514 | + <span class="unitHeader-label--small">KOS</span> | |
| 515 | + </h1> | |
| 516 | + <a class="unitHeader-link" href="https://www.google.com/maps?q=607-2825+rue+Coursol%2C+Qu%C3%A9bec%2C+Qu%C3%A9bec%2C+G2C+0P3" target="_blank" | |
| 517 | + data-gtm-event="pageUnite-lienAdresse"> | |
| 518 | + <h2 class="unitHeader-address">607-2825 rue Coursol, Québec, Québec, G2C 0P3</h2> | |
| 519 | + </a> | |
| 520 | + </div> | |
| 521 | + </div> | |
| 522 | + <div class="unitHeader-bottomContainer"> | |
| 523 | + <div class="unitHeader-bottomLeft"> | |
| 524 | + <div class="unitHeader-callToActions"> | |
| 525 | + <share-button | |
| 526 | + class="unitHeader-shareButton" | |
| 527 | + url="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607" | |
| 528 | + data-gtm-event="pageUnite-partager" | |
| 529 | + :classes="'c2a c2a-text c2a--secondary c2a-style--secondary'" | |
| 530 | + data-gtm-page-type="Unité" data-gtm-page-name="Appartement 607" data-gtm-project-id="1711" data-gtm-unit-id="10635" data-gtm-unit-type="APARTMENT" data-gtm-available="1" data-gtm-tag="Tout inclus" data-gtm-is-in-wishlist="" data-gtm-is-in-reservation="" data-gtm-unit-price="170.6" data-gtm-nom-liste="unites_du_projet_kos"> | |
| 531 | + <i class="icon-cms-social-share"></i> | |
| 532 | + <span class="c2a-name"> | |
| 533 | + Partager | |
| 534 | + </span> | |
| 535 | + </share-button> | |
| 536 | + <wishlist-toggle-icon :is-button="false" page-id="9a74cfb8-7bdb-4fa3-9ded-89f7da122a2a" | |
| 537 | + :exist="false"/> | |
| 538 | + </div> | |
| 539 | + <div class="unitHeader-imageWrapper js-zoomMagnifierContainer"> | |
| 540 | + <i-frame-modal-button | |
| 541 | + iframe-link="https://my.matterport.com/show/?m=1aNA74ZkhnT" | |
| 542 | + class-names="unitCard-imageTag" | |
| 543 | + modal-title="Appartement 607 • KOS • Visite virtuelle" | |
| 544 | + aria-label="Bouton modal" | |
| 545 | + unit-or-project="Unit" | |
| 546 | + breakpoint="750"> | |
| 547 | + <span>Visite</span> | |
| 548 | + <i class="icon-logisco-3d"></i> | |
| 549 | + </i-frame-modal-button> | |
| 550 | + <div class="unitHeader-imageOverlay"></div> | |
| 551 | + <img class="js-zoomImage" width="1200" height="1350" src="https://logisco.com/static/vb/5549-1200/plan-1711-342-planlocation-207-307-407-209-309-409-507-607.webp" | |
| 552 | + alt="Plan Appartement 607"> | |
| 553 | + </div> | |
| 554 | + | |
| 555 | + | |
| 556 | + <div class="projectServices"> | |
| 557 | + <div class="projectServices-container"> | |
| 558 | + <h2 class="projectServices-title"> | |
| 559 | + Inclusions | |
| 560 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 561 | + <span class="tooltip-container js-tooltipContainer"> | |
| 562 | + <span class="tooltip-subtitle">Il s’agit des inclusions comprises dans le prix mensuel de votre logement.</span> | |
| 563 | + </span> | |
| 564 | + </h2> | |
| 565 | + <ul class="projectServices-list"> | |
| 566 | + <li class="projectServices-itemContainer"> | |
| 567 | + <h3 class="projectServices-listItem"> | |
| 568 | + <i class="projectServices-icon icon-logisco-service--heating"></i> | |
| 569 | + Chauffage | |
| 570 | + </h3> | |
| 571 | + </li> | |
| 572 | + <li class="projectServices-itemContainer"> | |
| 573 | + <h3 class="projectServices-listItem"> | |
| 574 | + <i class="projectServices-icon icon-logisco-service--hot_water"></i> | |
| 575 | + Eau chaude | |
| 576 | + </h3> | |
| 577 | + </li> | |
| 578 | + <li class="projectServices-itemContainer"> | |
| 579 | + <h3 class="projectServices-listItem"> | |
| 580 | + <i class="projectServices-icon icon-logisco-service--electricity"></i> | |
| 581 | + Électricité | |
| 582 | + </h3> | |
| 583 | + </li> | |
| 584 | + <li class="projectServices-itemContainer"> | |
| 585 | + <h3 class="projectServices-listItem"> | |
| 586 | + <i class="projectServices-icon icon-logisco-service--indoor_parking"></i> | |
| 587 | + Un stationnement intérieur | |
| 588 | + </h3> | |
| 589 | + </li> | |
| 590 | + <li class="projectServices-itemContainer"> | |
| 591 | + <h3 class="projectServices-listItem"> | |
| 592 | + <i class="projectServices-icon icon-logisco-service--ac"></i> | |
| 593 | + Climatisation | |
| 594 | + </h3> | |
| 595 | + </li> | |
| 596 | + <li class="projectServices-itemContainer"> | |
| 597 | + <h3 class="projectServices-listItem"> | |
| 598 | + <i class="projectServices-icon icon-logisco-service--wifi"></i> | |
| 599 | + Wi-Fi haute vitesse | |
| 600 | + </h3> | |
| 601 | + </li> | |
| 602 | + <li class="projectServices-itemContainer"> | |
| 603 | + <h3 class="projectServices-listItem"> | |
| 604 | + <i class="projectServices-icon icon-logisco-service--cable_distribution"></i> | |
| 605 | + Service télé | |
| 606 | + </h3> | |
| 607 | + </li> | |
| 608 | + </ul> | |
| 609 | + </div> | |
| 610 | + </div> | |
| 611 | + | |
| 612 | + | |
| 613 | + <div class="projectServices"> | |
| 614 | + <div class="projectServices-container"> | |
| 615 | + <h2 class="projectServices-title"> | |
| 616 | + Particularités | |
| 617 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 618 | + <span class="tooltip-container js-tooltipContainer"> | |
| 619 | + <span class="tooltip-subtitle">Il s’agit d’éléments distinctifs propres à cet appartement.</span> | |
| 620 | + </span> | |
| 621 | + </h2> | |
| 622 | + <ul class="projectServices-list"> | |
| 623 | + <li class="projectServices-itemContainer"> | |
| 624 | + <h3 class="projectServices-listItem"> | |
| 625 | + <i class="projectServices-icon icon-logisco-service--entrance_washer_dryer"></i> | |
| 626 | + Entrée laveuse et sécheuse | |
| 627 | + </h3> | |
| 628 | + </li> | |
| 629 | + <li class="projectServices-itemContainer"> | |
| 630 | + <h3 class="projectServices-listItem"> | |
| 631 | + <i class="projectServices-icon icon-logisco-service--dishwasher_connection"></i> | |
| 632 | + Entrée lave-vaisselle | |
| 633 | + </h3> | |
| 634 | + </li> | |
| 635 | + </ul> | |
| 636 | + </div> | |
| 637 | + </div> | |
| 638 | + | |
| 639 | + | |
| 640 | + <div class="projectServices"> | |
| 641 | + <div class="projectServices-container"> | |
| 642 | + <h2 class="projectServices-title"> | |
| 643 | + Services offerts | |
| 644 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 645 | + <span class="tooltip-container js-tooltipContainer"> | |
| 646 | + <span class="tooltip-subtitle">Il s'agit des services offerts aux locataires de ce projet immobilier. Notez que les services peuvent varier d'un immeuble à l'autre.</span> | |
| 647 | + </span> | |
| 648 | + </h2> | |
| 649 | + <ul class="projectServices-list"> | |
| 650 | + <li class="projectServices-itemContainer"> | |
| 651 | + <h3 class="projectServices-listItem"> | |
| 652 | + <i class="projectServices-icon icon-logisco-service--elevator"></i> | |
| 653 | + Ascenseur | |
| 654 | + </h3> | |
| 655 | + </li> | |
| 656 | + <li class="projectServices-itemContainer"> | |
| 657 | + <h3 class="projectServices-listItem"> | |
| 658 | + <i class="projectServices-icon icon-logisco-service--security_cam"></i> | |
| 659 | + Caméra de surveillance | |
| 660 | + </h3> | |
| 661 | + </li> | |
| 662 | + <li class="projectServices-itemContainer"> | |
| 663 | + <h3 class="projectServices-listItem"> | |
| 664 | + <i class="projectServices-icon icon-logisco-service--intercom"></i> | |
| 665 | + Interphone | |
| 666 | + </h3> | |
| 667 | + </li> | |
| 668 | + <li class="projectServices-itemContainer"> | |
| 669 | + <h3 class="projectServices-listItem"> | |
| 670 | + <i class="projectServices-icon icon-logisco-service--outdoor_parking"></i> | |
| 671 | + Stationnement extérieur | |
| 672 | + </h3> | |
| 673 | + </li> | |
| 674 | + <li class="projectServices-itemContainer"> | |
| 675 | + <h3 class="projectServices-listItem"> | |
| 676 | + <i class="projectServices-icon icon-logisco-service--indoor_parking"></i> | |
| 677 | + Stationnement intérieur ($) | |
| 678 | + </h3> | |
| 679 | + </li> | |
| 680 | + <li class="projectServices-itemContainer"> | |
| 681 | + <h3 class="projectServices-listItem"> | |
| 682 | + <i class="projectServices-icon icon-logisco-service--garbage_chute"></i> | |
| 683 | + Chute à déchets | |
| 684 | + </h3> | |
| 685 | + </li> | |
| 686 | + <li class="projectServices-itemContainer"> | |
| 687 | + <h3 class="projectServices-listItem"> | |
| 688 | + <i class="projectServices-icon icon-logisco-service--bike_repair_station"></i> | |
| 689 | + Station de réparation pour vélos | |
| 690 | + </h3> | |
| 691 | + </li> | |
| 692 | + <li class="projectServices-itemContainer"> | |
| 693 | + <h3 class="projectServices-listItem"> | |
| 694 | + <i class="projectServices-icon icon-logisco-service--charging_station"></i> | |
| 695 | + Borne de recharge électrique ($) | |
| 696 | + </h3> | |
| 697 | + </li> | |
| 698 | + <li class="projectServices-itemContainer"> | |
| 699 | + <h3 class="projectServices-listItem"> | |
| 700 | + <i class="projectServices-icon icon-logisco-service--secure_post_office_locker"></i> | |
| 701 | + Espace sécurisé pour colis | |
| 702 | + </h3> | |
| 703 | + </li> | |
| 704 | + <li class="projectServices-itemContainer"> | |
| 705 | + <h3 class="projectServices-listItem"> | |
| 706 | + <i class="projectServices-icon icon-logisco-service--moto_parking"></i> | |
| 707 | + Stationnement pour motos ($) | |
| 708 | + </h3> | |
| 709 | + </li> | |
| 710 | + <li class="projectServices-itemContainer"> | |
| 711 | + <h3 class="projectServices-listItem"> | |
| 712 | + <i class="projectServices-icon icon-logisco-service--secure_bike_rack"></i> | |
| 713 | + Rangement sécurisé pour vélos ($) | |
| 714 | + </h3> | |
| 715 | + </li> | |
| 716 | + <li class="projectServices-itemContainer"> | |
| 717 | + <h3 class="projectServices-listItem"> | |
| 718 | + <i class="projectServices-icon icon-logisco-service--car_wash"></i> | |
| 719 | + Lave-auto | |
| 720 | + </h3> | |
| 721 | + </li> | |
| 722 | + <li class="projectServices-itemContainer"> | |
| 723 | + <h3 class="projectServices-listItem"> | |
| 724 | + <i class="projectServices-icon icon-logisco-service--secure_entrance"></i> | |
| 725 | + Entrée sécurisée | |
| 726 | + </h3> | |
| 727 | + </li> | |
| 728 | + <li class="projectServices-itemContainer"> | |
| 729 | + <h3 class="projectServices-listItem"> | |
| 730 | + <i class="projectServices-icon icon-logisco-service--guest_parking"></i> | |
| 731 | + Stationnement visiteur | |
| 732 | + </h3> | |
| 733 | + </li> | |
| 734 | + <li class="projectServices-itemContainer"> | |
| 735 | + <h3 class="projectServices-listItem"> | |
| 736 | + <i class="projectServices-icon icon-logisco-service--garden"></i> | |
| 737 | + Potager urbain ($) | |
| 738 | + </h3> | |
| 739 | + </li> | |
| 740 | + </ul> | |
| 741 | + </div> | |
| 742 | + </div> | |
| 743 | + | |
| 744 | + | |
| 745 | + <div class="projectServices"> | |
| 746 | + <div class="projectServices-container"> | |
| 747 | + <h2 class="projectServices-title"> | |
| 748 | + Espaces communs | |
| 749 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 750 | + <span class="tooltip-container js-tooltipContainer"> | |
| 751 | + <span class="tooltip-subtitle">Il s'agit des espaces communs accessibles à tous les locataires d'un projet immobilier, peu importe dans quel immeuble ils se trouvent.</span> | |
| 752 | + </span> | |
| 753 | + </h2> | |
| 754 | + <ul class="projectServices-list"> | |
| 755 | + <li class="projectServices-itemContainer"> | |
| 756 | + <h3 class="projectServices-listItem"> | |
| 757 | + <i class="projectServices-icon icon-logisco-service--furnished_terrace"></i> | |
| 758 | + Terrasse aménagée | |
| 759 | + </h3> | |
| 760 | + </li> | |
| 761 | + <li class="projectServices-itemContainer"> | |
| 762 | + <h3 class="projectServices-listItem"> | |
| 763 | + <i class="projectServices-icon icon-logisco-service--living_room"></i> | |
| 764 | + Espace lounge | |
| 765 | + </h3> | |
| 766 | + </li> | |
| 767 | + <li class="projectServices-itemContainer"> | |
| 768 | + <h3 class="projectServices-listItem"> | |
| 769 | + <i class="projectServices-icon icon-logisco-service--gym"></i> | |
| 770 | + Salle d’entraînement | |
| 771 | + </h3> | |
| 772 | + </li> | |
| 773 | + <li class="projectServices-itemContainer"> | |
| 774 | + <h3 class="projectServices-listItem"> | |
| 775 | + <i class="projectServices-icon icon-logisco-service--entertainment_room"></i> | |
| 776 | + Espace de divertissement | |
| 777 | + </h3> | |
| 778 | + </li> | |
| 779 | + <li class="projectServices-itemContainer"> | |
| 780 | + <h3 class="projectServices-listItem"> | |
| 781 | + <i class="projectServices-icon icon-logisco-service--unheated_outdoor_pool"></i> | |
| 782 | + Piscine extérieure | |
| 783 | + </h3> | |
| 784 | + </li> | |
| 785 | + <li class="projectServices-itemContainer"> | |
| 786 | + <h3 class="projectServices-listItem"> | |
| 787 | + <i class="projectServices-icon icon-logisco-service--coworking_space"></i> | |
| 788 | + Espace de cotravail | |
| 789 | + </h3> | |
| 790 | + </li> | |
| 791 | + </ul> | |
| 792 | + </div> | |
| 793 | + </div> | |
| 794 | + </div> | |
| 795 | + <div class="unitHeader-bottomRight"> | |
| 796 | + <div class="unitHeader-unitInfos js-zoomDisplayContainer"> | |
| 797 | + <h3 class="unitHeader-price"> | |
| 798 | + <span class="unitHeader-priceNumber">1706 $</span> | |
| 799 | + <span class="unitHeader-priceText">/ mois</span> | |
| 800 | + </h3> | |
| 801 | + <div class="unitHeader-infosContainer"> | |
| 802 | + <div class="unitHeader-info"> | |
| 803 | + <h3 class="unitHeader-infoLabel">Nombre de pièces</h3> | |
| 804 | + <span class="unitHeader-infoValue">3 1/2</span> | |
| 805 | + </div> | |
| 806 | + <div class="unitHeader-info"> | |
| 807 | + <h3 class="unitHeader-infoLabel">Superficie totale</h3> | |
| 808 | + <span class="unitHeader-infoValue">665 pi²</span> | |
| 809 | + </div> | |
| 810 | + <div class="unitHeader-info"> | |
| 811 | + <h3 class="unitHeader-infoLabel">Étage</h3> | |
| 812 | + <span class="unitHeader-infoValue">6</span> | |
| 813 | + </div> | |
| 814 | + | |
| 815 | + <div class="unitHeader-info"> | |
| 816 | + <h3 class="unitHeader-infoLabel">Disponibilité</h3> | |
| 817 | + <span class="unitHeader-infoValue">01 oct. 2026</span> | |
| 818 | + </div> | |
| 819 | + </div> | |
| 820 | + <div class="unitHeader-infosLink"> | |
| 821 | + <div class="unitHeader-infosGroup"> | |
| 822 | + <add-reservation-button :unit-page-id="'9a74cfb8-7bdb-4fa3-9ded-89f7da122a2a'"> | |
| 823 | + <template #text> | |
| 824 | + Planifier une visite | |
| 825 | + </template> | |
| 826 | + </add-reservation-button> | |
| 827 | + <modal-button class-names="c2a c2a-text c2a--secondary" aria-label="Joindre l’agent de location " | |
| 828 | + modal-id="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83" | |
| 829 | + data-gtm-event="pageUnite-clicJoindreAgentLocation"> | |
| 830 | + <span class="c2a-name"> | |
| 831 | + Joindre l’agent de location | |
| 832 | + </span> | |
| 833 | + </modal-button> | |
| 834 | + </div> | |
| 835 | + <a class="c2a c2a-text c2a--tertiary c2a-download" | |
| 836 | + href="https://pdf.logisco.com/pdf-modele.ashx?id=1711&Unite=607&IDImmeuble=343&IDUnite=10635" | |
| 837 | + data-gtm-event="pageUnite-telechargerFiche"> | |
| 838 | + <span class="c2a-name"> | |
| 839 | + Télécharger la fiche | |
| 840 | + </span> | |
| 841 | + <i class="icon-logisco-download"></i> | |
| 842 | + </a> | |
| 843 | + </div> | |
| 844 | + </div> | |
| 845 | + </div> | |
| 846 | + </div> | |
| 847 | +</div> | |
| 848 | + | |
| 849 | +<div class="unitSection"> | |
| 850 | + <div class="blockText blockText-style--medium"> | |
| 851 | + <p class="blockText-surtitle">Découvrez le secteur</p> | |
| 852 | + <h2 class="blockText-title">Explorez les services et attraits à proximité de KOS</h2> | |
| 853 | + </div> | |
| 854 | + | |
| 855 | + <div | |
| 856 | + id="local-content-widget" | |
| 857 | + style="height: 700px;" | |
| 858 | + data-local-logic-lat="46.84267327" | |
| 859 | + data-local-logic-lng="-71.32449818" | |
| 860 | + data-local-logic-transport="false" | |
| 861 | + data-local-logic-transport-pedestrian-friendly="false" | |
| 862 | + data-local-logic-transport-cycling-friendly="false" | |
| 863 | + data-local-logic-transport-transit-friendly="false" | |
| 864 | + data-local-logic-transport-car-friendly="false" | |
| 865 | + data-local-logic-education="false" | |
| 866 | + data-local-logic-education-daycares="false" | |
| 867 | + data-local-logic-education-primary-schools="false" | |
| 868 | + data-local-logic-education-high-schools="false" | |
| 869 | + data-local-logic-amenities="false" | |
| 870 | + data-local-logic-amenities-shopping="false" | |
| 871 | + data-local-logic-amenities-groceries="false" | |
| 872 | + data-local-logic-amenities-restaurants="false" | |
| 873 | + data-local-logic-amenities-cafes="false" | |
| 874 | + data-local-logic-character="false" | |
| 875 | + data-local-logic-character-nightlife="false" | |
| 876 | + data-local-logic-character-vibrant="false" | |
| 877 | + data-local-logic-character-historic="false" | |
| 878 | + data-local-logic-character-quiet="false" | |
| 879 | + data-local-logic-nature="false" | |
| 880 | + data-local-logic-nature-parks="false" | |
| 881 | + data-local-logic-nature-greenery="false" | |
| 882 | + data-local-logic-wellness="false" | |
| 883 | + data-local-logic-health="false" | |
| 884 | + ></div> | |
| 885 | +</div> | |
| 886 | + | |
| 887 | +<div class="unitSection"> | |
| 888 | + <section id="plans" class="project-plans"> | |
| 889 | + <plan-view | |
| 890 | + project-type="RESIDENTIAL" | |
| 891 | + :project="[{"Available":true,"SourceId":339,"Code":"341","Address":{"NumberStreet":"2855 rue Coursol ","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2C 0P1","Neighborhood":"Neufch\u00e2tel-Est-Lebourgneuf"},"file_id":"6921","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"101":{"page_id":"99ca32dc-2eb9-40fe-9171-1bc3a5fdebea","available":false,"unit_number":"101","shape":"poly","coords":"506,354,506,276,602,276,602,340,540,340,540,354"},"102":{"page_id":"99ca32da-45bb-45c3-b238-0256f98c0dda","available":false,"unit_number":"102","shape":"rect","coords":"506,186,602,276"},"103":{"page_id":"99ca32c8-9785-4f43-8043-38a004c4274b","available":false,"unit_number":"103","shape":"rect","coords":"506,42,618,152"},"104":{"page_id":"99ca30f3-e399-4ad3-945b-976c2a5903e0","available":false,"unit_number":"104","shape":"rect","coords":"622,40,716,182"},"105":{"page_id":"99ca32de-524b-409e-b003-a0519ba31158","available":false,"unit_number":"105","shape":"rect","coords":"620,184,716,282"},"106":{"page_id":"99ca32df-ffdc-4609-9493-46a839844720","available":false,"unit_number":"106","shape":"rect","coords":"622,286,716,404"},"107":{"page_id":"99ca32e2-29ca-488f-9c61-186c7f86ac50","available":false,"unit_number":"107","shape":"rect","coords":"622,406,716,496"},"108":{"page_id":"99ca32e4-0167-40cd-a0d6-b6ce8b4c70be","available":false,"unit_number":"108","shape":"rect","coords":"622,498,714,572"},"109":{"page_id":"99ca32e5-a554-494a-9877-a6da2f8b9c4c","available":false,"unit_number":"109","shape":"rect","coords":"622,572,716,662"},"110":{"page_id":"99ca32d7-62fd-4918-b9a1-8c174023aad4","available":false,"unit_number":"110","shape":"poly","coords":"602,664,716,664,716,750,590,774,590,686,602,686"},"111":{"page_id":"99ca32e7-bbb6-42e2-9283-38ad37ad1ee4","available":false,"unit_number":"111","shape":"poly","coords":"506,640,600,640,600,686,588,688,588,776,508,792"},"112":{"page_id":"99ca32ea-3e97-4d56-a4b7-a18bb0eaea8f","available":false,"unit_number":"112","shape":"rect","coords":"506,516,600,608"},"113":{"page_id":"99ca32e9-255a-4907-8d24-1efccdcf354d","available":false,"unit_number":"113","shape":"poly","coords":"506,404,556,402,556,422,600,422,600,512,506,512"}},"file_id":"5037","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5037-800/plan-1711-location-phase1-2021-07-05-niv1.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"201":{"page_id":"99ca32ee-e3a0-48b0-9e65-a74329a0ff0d","available":false,"unit_number":"201","shape":"poly","coords":"504,280,598,280,600,344,538,344,538,358,504,358"},"202":{"page_id":"99ca32ed-aa14-48ae-9fd4-458d849488c9","available":false,"unit_number":"202","shape":"rect","coords":"506,188,600,282"},"203":{"page_id":"99ca32ec-1223-4790-9372-f90d63fd1b46","available":false,"unit_number":"203","shape":"rect","coords":"506,44,620,158"},"204":{"page_id":"99ca32f3-e713-4730-8a43-41d655ebb370","available":false,"unit_number":"204","shape":"rect","coords":"622,44,716,188"},"205":{"page_id":"99ca32fd-8942-45dd-a579-a906c54024b8","available":false,"unit_number":"205","shape":"rect","coords":"620,190,716,290"},"206":{"page_id":"99ca32f2-65f7-40b1-aa61-d2d11be5d9cf","available":false,"unit_number":"206","shape":"rect","coords":"620,288,716,408"},"207":{"page_id":"99ca32f0-a526-4ec0-80b9-5858fe3e1107","available":false,"unit_number":"207","shape":"rect","coords":"620,412,716,502"},"208":{"page_id":"99ca32f5-3b5a-48cf-87ef-41956e36b41a","available":false,"unit_number":"208","shape":"rect","coords":"620,500,714,576"},"209":{"page_id":"99ca32fc-236d-4172-8716-f58b25b2996b","available":false,"unit_number":"209","shape":"rect","coords":"620,576,716,670"},"210":{"page_id":"99ca32f8-6a69-4d17-b1f2-fe739f63de19","available":false,"unit_number":"210","shape":"poly","coords":"600,668,714,668,714,752,588,778,588,690,600,690"},"211":{"page_id":"99ca32d5-a75c-4a8a-98ba-701082c0b988","available":false,"unit_number":"211","shape":"poly","coords":"504,644,600,644,600,690,590,690,588,690,588,778,502,794"},"212":{"page_id":"99c9f2c7-358c-4e29-a8ac-59152d84fc09","available":false,"unit_number":"212","shape":"rect","coords":"506,520,600,610"},"213":{"page_id":"99c9f22f-ba00-42c5-9e68-5a3d01b53f99","available":false,"unit_number":"213","shape":"poly","coords":"504,518,504,358,538,358,538,370,550,370,550,398,552,400,552,424,598,426,598,516"}},"file_id":"5038","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5038-800/plan-1711-location-phase1-2021-07-05-niv2.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"301":{"page_id":"99c9f73e-ee43-4ffe-a07d-215854687c26","available":false,"unit_number":"301","shape":"poly","coords":"504,280,598,280,600,344,538,344,538,358,504,358"},"302":{"page_id":"99c9f741-fd28-443e-a197-f43e61017270","available":false,"unit_number":"302","shape":"rect","coords":"502,192,598,284"},"303":{"page_id":"99c9b609-8ed6-4a5c-aac6-d18ace8c3138","available":false,"unit_number":"303","shape":"rect","coords":"502,48,616,158"},"304":{"page_id":"99ca2e63-b638-42ba-a232-6796d6fd28c2","available":false,"unit_number":"304","shape":"rect","coords":"618,48,714,190"},"305":{"page_id":"99ca2e67-1610-4243-94e5-208d179d7ec6","available":false,"unit_number":"305","shape":"rect","coords":"618,192,714,290"},"306":{"page_id":"99ca2e6a-d99b-41f7-920a-c45169e72ea4","available":false,"unit_number":"306","shape":"rect","coords":"618,290,712,412"},"307":{"page_id":"9a74cede-17a7-42b1-83a1-9e25855e50d2","available":false,"unit_number":"307","shape":"rect","coords":"616,414,712,504"},"308":{"page_id":"9a74cedf-fe80-402d-95fd-39f9680120ec","available":false,"unit_number":"308","shape":"rect","coords":"618,506,714,576"},"309":{"page_id":"9a74cee1-f200-4df3-a184-c5215dbf1969","available":false,"unit_number":"309","shape":"rect","coords":"618,576,714,672"},"310":{"page_id":"9a74cee3-493f-437c-9838-94da35c8fd13","available":false,"unit_number":"310","shape":"poly","coords":"598,672,712,672,712,756,588,782,588,694,598,694"},"311":{"page_id":"9a74cee4-ddca-4042-bc8f-7fb8c6359f52","available":false,"unit_number":"311","shape":"poly","coords":"502,648,598,648,598,692,586,694,586,784,500,798"},"312":{"page_id":"9a74cee6-6e9f-4471-987e-cbd883b6bdff","available":false,"unit_number":"312","shape":"rect","coords":"502,524,598,614"},"313":{"page_id":"9a74cee8-52b9-42de-aec4-152569c7dbee","available":false,"unit_number":"313","shape":"poly","coords":"502,522,502,360,534,362,534,372,548,372,548,402,552,402,552,430,596,430,598,520"}},"file_id":"5039","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5039-800/plan-1711-location-phase1-2021-07-05-niv3.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"401":{"page_id":"9a74ceea-0f7d-4a62-b94c-f39a579f0b9c","available":false,"unit_number":"401","shape":"poly","coords":"504,284,600,282,600,346,538,348,538,360,504,360"},"402":{"page_id":"9a74ceeb-d44d-4b28-a9a2-1210e205e2f1","available":false,"unit_number":"402","shape":"rect","coords":"504,190,600,282"},"403":{"page_id":"9a74ceed-6b63-468f-9879-740cfd74a5d7","available":false,"unit_number":"403","shape":"rect","coords":"504,46,620,156"},"404":{"page_id":"9a74ceee-f37a-431d-8859-ba455aeff680","available":false,"unit_number":"404","shape":"rect","coords":"620,46,716,190"},"405":{"page_id":"9a74cef0-beec-4897-91b3-69533dcc775e","available":false,"unit_number":"405","shape":"rect","coords":"620,192,714,290"},"406":{"page_id":"9a74cef2-5b30-4a0e-8b35-0b7af8acf352","available":false,"unit_number":"406","shape":"rect","coords":"620,290,714,408"},"407":{"page_id":"9a74cef4-4f60-4971-8250-1df419f771f3","available":false,"unit_number":"407","shape":"rect","coords":"620,412,714,502"},"408":{"page_id":"9a74cef6-18e5-4e7a-ae5a-5aae0e9af083","available":false,"unit_number":"408","shape":"rect","coords":"620,504,716,576"},"409":{"page_id":"9a74cef7-d352-4a4e-9312-94a71e1b6591","available":false,"unit_number":"409","shape":"rect","coords":"620,578,714,668"},"410":{"page_id":"9a74cef9-533c-4734-a34a-03703167507e","available":false,"unit_number":"410","shape":"poly","coords":"600,668,714,668,714,754,590,780,590,692,600,692"},"411":{"page_id":"9a74cefb-026b-43c6-a342-780671cf5c64","available":false,"unit_number":"411","shape":"poly","coords":"504,646,600,646,600,694,586,692,588,780,504,796"},"412":{"page_id":"9a74cefc-d358-4c9f-8b59-1903941fb224","available":false,"unit_number":"412","shape":"rect","coords":"504,520,600,612"},"413":{"page_id":"9a74cefe-a120-4edb-a199-6954344cbb88","available":false,"unit_number":"413","shape":"poly","coords":"504,520,504,360,538,360,538,372,550,370,550,400,556,400,554,428,600,426,600,518"}},"file_id":"5040","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5040-800/plan-1711-location-phase1-2021-07-05-niv4.webp"},"6":{"level_name":"\u00c9tage #6","level":6,"units":{"601":{"page_id":"9a74cf11-ea5a-43b8-b70c-6917ba6cfc1f","available":false,"unit_number":"601","shape":"poly","coords":"502,240,596,240,596,396,536,396,536,410,502,410"},"602":{"page_id":"9a74cf13-7d12-4ecd-b9df-6afa86d989f7","available":false,"unit_number":"602","shape":"rect","coords":"502,98,616,208"},"603":{"page_id":"9a74cf15-8b9a-435f-ba20-bb94e47bc28a","available":false,"unit_number":"603","shape":"rect","coords":"618,98,714,240"},"604":{"page_id":"9a74cf17-0f53-44ed-8681-90b596c8fb59","available":false,"unit_number":"604","shape":"rect","coords":"620,240,712,340"},"605":{"page_id":"9a74cf19-2388-485c-949a-d97343ef89bc","available":false,"unit_number":"605","shape":"rect","coords":"618,340,714,464"},"606":{"page_id":"9a74cf1a-c4a9-4f86-801b-ea0d072379c8","available":false,"unit_number":"606","shape":"rect","coords":"618,462,714,628"},"607":{"page_id":"9a74cf1c-c125-4248-934d-150cc1bf72e9","available":false,"unit_number":"607","shape":"rect","coords":"618,628,714,720"},"608":{"page_id":"9a74cf1e-9251-434d-ac3e-1f4ebbea17b3","available":false,"unit_number":"608","shape":"rect","coords":"502,572,598,662"},"609":{"page_id":"9a74cf20-563f-4e29-b520-10824daca11d","available":false,"unit_number":"609","shape":"poly","coords":"504,570,502,410,536,410,536,418,536,422,548,422,546,452,552,452,552,478,596,478,596,570"}},"file_id":"5041","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5041-800/plan-1711-location-phase1-2021-07-05-niv6.webp"},"5":{"level_name":"\u00c9tage #5","level":5,"units":{"501":{"page_id":"9a74cf00-bb62-41dd-b70d-98303a2b6850","available":false,"unit_number":"501","shape":"poly","coords":"504,208,600,208,598,364,538,364,538,378,504,378"},"509":{"page_id":"9a74cf0f-d420-4f24-9d33-01907ddb9eec","available":false,"unit_number":"509","shape":"poly","coords":"504,540,504,376,538,376,538,390,550,390,550,418,554,418,554,444,600,444,600,538"},"502":{"page_id":"9a74cf02-eb1b-423d-b310-9a13c421b33e","available":false,"unit_number":"502","shape":"rect","coords":"506,64,620,176"},"503":{"page_id":"9a74cf04-6ba2-47fa-984b-0b802e54033f","available":false,"unit_number":"503","shape":"rect","coords":"618,66,716,208"},"504":{"page_id":"9a74cf06-32fe-4095-8f99-c3649c5ccd94","available":false,"unit_number":"504","shape":"rect","coords":"620,210,716,308"},"505":{"page_id":"9a74cf08-0357-4425-8104-10c92427c93c","available":false,"unit_number":"505","shape":"rect","coords":"620,308,714,428"},"506":{"page_id":"9a74cf0a-288e-4a31-8bf2-41ae2a96b206","available":false,"unit_number":"506","shape":"rect","coords":"620,430,716,594"},"507":{"page_id":"9a74cf0c-62a3-4c80-9610-75f190720577","available":false,"unit_number":"507","shape":"rect","coords":"620,596,714,688"},"508":{"page_id":"9a74cf0e-35ea-4e93-8cc2-6bac9e7ad673","available":false,"unit_number":"508","shape":"rect","coords":"504,542,598,632"}},"file_id":"5036","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5036-800/plan-1711-location-phase1-2021-10-22-niv5.webp"}},"areas":[{"item_id":"343","shape":"rect","coords":"188,478,833,660","building_id":379,"available":true},{"item_id":"344","shape":"rect","coords":"206,875,850,1057","building_id":380,"available":true},{"item_id":"345","shape":"rect","coords":"310,1186,953,1368","building_id":396,"available":true},{"item_id":"342","shape":"poly","coords":"1236,686,1236,1356,1418,1320,1418,686","building_id":343,"available":true},{"item_id":"341","shape":"poly","coords":"1710,615,1710,1267,1891,1231,1890,615","building_id":339,"available":false}],"plan_url":"https://logisco.com/static/vb/6921-800/plan-1711-345-planlocation-implantation1.webp"},{"Available":true,"SourceId":343,"Code":"342","Address":{"NumberStreet":"2825 rue Coursol","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2C 0P3","Neighborhood":"Neufch\u00e2tel-Est-Lebourgneuf"},"file_id":"6921","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"101":{"page_id":"9a74cf22-6c61-46b9-b0ec-8acfbbffc299","available":false,"unit_number":"101","shape":"poly","coords":"606,272,700,272,700,348,668,348,666,348,666,334,606,334"},"102":{"page_id":"9a74cf24-6277-4843-a393-3407425d9af9","available":false,"unit_number":"102","shape":"rect","coords":"606,180,702,272"},"103":{"page_id":"9a74cf26-3564-44a0-b017-392b5c65b2e2","available":false,"unit_number":"103","shape":"rect","coords":"588,34,702,148"},"104":{"page_id":"9a74cf28-5c2c-43c2-8308-339d4f3f6450","available":false,"unit_number":"104","shape":"rect","coords":"492,36,588,178"},"105":{"page_id":"9a74cf2a-3eba-451d-8b75-2fa91f9bed6c","available":false,"unit_number":"105","shape":"rect","coords":"492,178,588,276"},"106":{"page_id":"9a74cf2c-24b9-4bf6-ac2a-3255b31d39e7","available":false,"unit_number":"106","shape":"rect","coords":"492,278,588,400"},"107":{"page_id":"9a74cf2e-6ea6-4b19-b4f3-92897787e6d0","available":false,"unit_number":"107","shape":"rect","coords":"492,400,588,492"},"108":{"page_id":"9a74cf30-5c28-4916-8f44-21bfffed40dc","available":false,"unit_number":"108","shape":"rect","coords":"492,494,588,562"},"109":{"page_id":"9a74cf32-3d1c-4ea6-b3ba-607316c532b0","available":false,"unit_number":"109","shape":"rect","coords":"490,564,586,656"},"110":{"page_id":"9a74cf34-5fe6-4fdc-8782-350f4269b9c2","available":false,"unit_number":"110","shape":"poly","coords":"492,658,490,658,586,658,584,678,606,678,604,786,490,806"},"111":{"page_id":"9a74cf37-249e-4eb1-a9b0-f57408d55f4d","available":false,"unit_number":"111","shape":"poly","coords":"606,634,700,634,700,764,604,784,604,784"},"112":{"page_id":"9a74cf39-fcd5-4c5a-9214-e473c6c44d20","available":false,"unit_number":"112","shape":"rect","coords":"606,510,700,602"},"113":{"page_id":"9a74cf3c-3361-4f08-959f-5816e892e674","available":false,"unit_number":"113","shape":"poly","coords":"606,418,650,418,650,398,700,396,700,510,606,508"}},"file_id":"5042","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5042-800/plan-1711-location-phase2-2021-07-05-niv1.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"201":{"page_id":"9a74cf3e-04e5-40cf-8a42-00ab541f696e","available":false,"unit_number":"201","shape":"poly","coords":"616,276,712,276,712,356,678,354,678,340,616,340"},"202":{"page_id":"9a74cf40-703c-461c-8136-594fca600dc2","available":false,"unit_number":"202","shape":"rect","coords":"618,184,714,276"},"203":{"page_id":"9a74cf42-6eeb-46d9-8ac9-5fcf19876ad9","available":false,"unit_number":"203","shape":"rect","coords":"598,40,712,152"},"204":{"page_id":"9a74cf44-a3b3-4395-ae7e-46de0b9af716","available":false,"unit_number":"204","shape":"rect","coords":"502,40,598,182"},"205":{"page_id":"9a74cf46-f622-497c-9922-a0d376ccb44c","available":false,"unit_number":"205","shape":"rect","coords":"502,184,598,282"},"206":{"page_id":"9a74cf48-f0fb-495c-baa3-4b6c2bad62e6","available":false,"unit_number":"206","shape":"rect","coords":"502,284,598,404"},"207":{"page_id":"9a74cf4a-c1b1-4b3b-abd8-8563d3f6c443","available":false,"unit_number":"207","shape":"rect","coords":"500,404,598,496"},"208":{"page_id":"9a74cf4c-fc65-48af-82b2-a4755918d556","available":false,"unit_number":"208","shape":"rect","coords":"502,496,596,572"},"209":{"page_id":"9a74cf4e-c78a-44fd-a127-306d7d8d5868","available":false,"unit_number":"209","shape":"rect","coords":"502,570,596,662"},"210":{"page_id":"9a74cf51-4100-4433-b75b-29662a619221","available":false,"unit_number":"210","shape":"poly","coords":"504,810,502,660,598,660,596,684,618,684,616,788"},"211":{"page_id":"9a74cf53-d777-4dd0-ac66-de6c5426b798","available":false,"unit_number":"211","shape":"poly","coords":"616,638,712,638,712,772,618,788"},"212":{"page_id":"9a74cf55-efd6-4d91-b7ed-dcbb0ee0ebcd","available":false,"unit_number":"212","shape":"rect","coords":"616,514,712,606"},"213":{"page_id":"9a74cf57-f294-4a2a-8c49-5d08cc21bfb4","available":false,"unit_number":"213","shape":"poly","coords":"618,422,662,420,660,400,668,400,668,364,680,364,680,352,712,352,712,512,616,512"}},"file_id":"5043","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5043-800/plan-1711-location-phase2-2021-07-05-niv2.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"301":{"page_id":"9a74cf5a-67d4-4c22-8d19-6312756b32fe","available":false,"unit_number":"301","shape":"poly","coords":"622,272,716,272,716,350,682,352,682,336,620,336"},"302":{"page_id":"9a74cf5c-128c-4ac4-bec5-d3e550c89f40","available":false,"unit_number":"302","shape":"rect","coords":"622,182,718,270"},"303":{"page_id":"9a74cf5e-2874-47d2-9c4b-7a47505dc42a","available":false,"unit_number":"303","shape":"rect","coords":"602,34,718,148"},"304":{"page_id":"9a74cf60-56b5-4301-8a7b-82b11c7d81e6","available":false,"unit_number":"304","shape":"rect","coords":"508,36,602,178"},"305":{"page_id":"9a74cf62-432b-40da-8cbe-4a54302a134c","available":false,"unit_number":"305","shape":"rect","coords":"506,180,602,276"},"306":{"page_id":"9a74cf64-88af-4a93-a291-6fda527743c3","available":false,"unit_number":"306","shape":"rect","coords":"508,278,600,400"},"307":{"page_id":"9a74cf66-7330-44ee-9ed1-45603cdabbf0","available":false,"unit_number":"307","shape":"rect","coords":"506,402,602,490"},"308":{"page_id":"9a74cf68-dd32-4bfe-a819-45f0d8c199d0","available":false,"unit_number":"308","shape":"rect","coords":"506,490,602,566"},"309":{"page_id":"9a74cf6a-d50c-4e07-891c-1af145271d2d","available":false,"unit_number":"309","shape":"rect","coords":"506,566,600,660"},"310":{"page_id":"9a74cf6c-a3dc-46db-87a2-0a9d7d39291f","available":false,"unit_number":"310","shape":"poly","coords":"508,806,506,656,600,656,600,680,620,680,620,786"},"311":{"page_id":"9a74cf6e-b55f-49b2-8bcb-aa976d4f5a31","available":false,"unit_number":"311","shape":"poly","coords":"622,636,622,634,716,634,716,768,620,786"},"312":{"page_id":"9a74cf71-cfe4-4a19-8b31-099b98511a40","available":false,"unit_number":"312","shape":"rect","coords":"622,510,718,602"},"313":{"page_id":"9a74cf73-b8e2-4053-8e12-c282889453d8","available":false,"unit_number":"313","shape":"poly","coords":"622,418,666,418,666,394,672,394,672,360,680,360,680,348,716,348,716,508,622,506"}},"file_id":"5044","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5044-800/plan-1711-location-phase2-2021-07-05-niv3.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"401":{"page_id":"9a74cf75-9876-440c-af3e-a2d1cdca0dde","available":false,"unit_number":"401","shape":"poly","coords":"622,276,716,276,716,356,682,356,682,340,620,340"},"402":{"page_id":"9a74cf78-1345-4a55-b85f-95d5b53c9c15","available":false,"unit_number":"402","shape":"rect","coords":"622,184,716,274"},"403":{"page_id":"9a74cf7a-37f2-485f-b621-c832982920c6","available":false,"unit_number":"403","shape":"rect","coords":"602,38,716,150"},"404":{"page_id":"9a74cf7c-4c70-4c46-b618-6342dfde4ef7","available":false,"unit_number":"404","shape":"rect","coords":"506,40,602,182"},"405":{"page_id":"9a74cf7e-9203-4dce-ae41-fb92a33851ac","available":false,"unit_number":"405","shape":"rect","coords":"506,182,602,284"},"406":{"page_id":"9a74cf80-61ab-49ac-a1fe-c3d52b4acd9f","available":false,"unit_number":"406","shape":"rect","coords":"506,282,600,404"},"407":{"page_id":"9a74cf82-e937-40dc-b03d-251b9db17b18","available":false,"unit_number":"407","shape":"rect","coords":"506,404,600,496"},"408":{"page_id":"9a74cf84-d5af-4b17-9bc1-060586325d75","available":false,"unit_number":"408","shape":"rect","coords":"506,496,600,570"},"409":{"page_id":"9a74cf87-1b79-4b62-89df-a6f623c91ec1","available":false,"unit_number":"409","shape":"rect","coords":"506,570,600,662"},"410":{"page_id":"9a74cf88-d802-4808-92ea-d1a05e38bc6c","available":false,"unit_number":"410","shape":"poly","coords":"506,812,620,788,620,684,602,684,602,662,504,662"},"411":{"page_id":"9a74cf8a-eb1a-482a-9367-3f45e03d4c49","available":false,"unit_number":"411","shape":"poly","coords":"622,638,716,638,716,770,622,790"},"412":{"page_id":"9a74cf8f-2e48-4190-802d-4db36713856e","available":false,"unit_number":"412","shape":"rect","coords":"622,514,716,606"},"413":{"page_id":"9a74cf91-1b5a-4c2e-a479-2281ede56a05","available":false,"unit_number":"413","shape":"poly","coords":"622,422,620,420,668,420,666,398,670,400,672,364,684,362,682,352,718,352,716,512,620,510"}},"file_id":"5045","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5045-800/plan-1711-location-phase2-2021-07-05-niv4.webp"},"6":{"level_name":"\u00c9tage #6","level":6,"units":{"601":{"page_id":"9a74cfaa-a697-40af-b932-e7aefcec74f4","available":false,"unit_number":"601","shape":"poly","coords":"622,252,620,250,718,250,716,422,682,422,684,408,684,408,682,406,622,406"},"602":{"page_id":"9a74cfac-ddce-4c64-89ed-2ff8c6f51afe","available":false,"unit_number":"602","shape":"rect","coords":"602,106,718,218"},"603":{"page_id":"9a74cfaf-7f68-4129-9460-4d48b2933ff5","available":false,"unit_number":"603","shape":"rect","coords":"506,108,602,252"},"604":{"page_id":"9a74cfb1-ba49-401e-a855-82da47b65606","available":false,"unit_number":"604","shape":"rect","coords":"506,250,602,350"},"605":{"page_id":"9a74cfb3-7f71-4212-9adb-4d1fd56a61c8","available":false,"unit_number":"605","shape":"rect","coords":"508,350,602,472"},"606":{"page_id":"9a74cfb6-30b1-4f75-a02f-19ad89560a45","available":false,"unit_number":"606","shape":"rect","coords":"506,472,602,638"},"607":{"page_id":"9a74cfb8-7bdb-4fa3-9ded-89f7da122a2a","available":true,"unit_number":"607","shape":"rect","coords":"506,640,602,732"},"608":{"page_id":"9a74cfba-6947-4f8e-ad3e-977b182b8231","available":false,"unit_number":"608","shape":"rect","coords":"622,580,718,672"},"609":{"page_id":"9a74cfbe-b418-4087-a6ee-5a2e2ba173d9","available":false,"unit_number":"609","shape":"poly","coords":"622,490,668,490,666,464,674,464,672,464,672,432,682,432,682,420,718,420,716,578,620,576"}},"file_id":"5046","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5046-800/plan-1711-location-phase2-2021-07-05-niv6.webp"},"5":{"level_name":"\u00c9tage #5","level":5,"units":{"501":{"page_id":"9a74cf93-4bb4-47e4-8234-ea8cde081c5c","available":false,"unit_number":"501","shape":"poly","coords":"626,200,722,200,722,370,686,370,686,358,686,358,686,356,626,356"},"502":{"page_id":"9a74cf95-0ff2-4a45-ab9c-ea9b640bb1ea","available":false,"unit_number":"502","shape":"rect","coords":"606,54,720,166"},"503":{"page_id":"9a74cf97-8f02-43e8-be37-c701b297e035","available":false,"unit_number":"503","shape":"rect","coords":"510,54,604,196"},"504":{"page_id":"9a74cf99-dd7e-4b2b-bac7-202f28965b19","available":false,"unit_number":"504","shape":"rect","coords":"510,198,602,298"},"505":{"page_id":"9a74cf9b-af91-4689-87cb-ade2d3b7e2b0","available":false,"unit_number":"505","shape":"rect","coords":"510,298,602,420"},"506":{"page_id":"9a74cf9f-dce6-47f9-b6c9-49823cdf881b","available":false,"unit_number":"506","shape":"rect","coords":"510,422,602,584"},"507":{"page_id":"9a74cfa2-1b93-4625-9dae-b631ac13647d","available":false,"unit_number":"507","shape":"rect","coords":"510,586,602,676"},"508":{"page_id":"9a74cfa4-2a11-4c79-8bde-77bd515c14d2","available":false,"unit_number":"508","shape":"rect","coords":"626,530,720,622"},"509":{"page_id":"9a74cfa6-69fd-48cb-b546-e49a6de1455f","available":false,"unit_number":"509","shape":"poly","coords":"626,438,672,438,672,412,676,412,676,382,688,382,688,370,722,370,722,530,626,530"}},"file_id":"5047","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5047-800/plan-1711-location-phase2-2021-10-22-niv5.webp"}},"areas":[{"item_id":"343","shape":"rect","coords":"188,478,833,660","building_id":379,"available":true},{"item_id":"344","shape":"rect","coords":"206,875,850,1057","building_id":380,"available":true},{"item_id":"345","shape":"rect","coords":"310,1186,953,1368","building_id":396,"available":true},{"item_id":"342","shape":"poly","coords":"1236,686,1236,1356,1418,1320,1418,686","building_id":343,"available":true},{"item_id":"341","shape":"poly","coords":"1710,615,1710,1267,1891,1231,1890,615","building_id":339,"available":false}],"plan_url":"https://logisco.com/static/vb/6921-800/plan-1711-345-planlocation-implantation1.webp"},{"Available":true,"SourceId":379,"Code":"343","Address":{"NumberStreet":"2215 avenue Chauveau","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2C 0P5","Neighborhood":"Neufch\u00e2tel-Est-Lebourgneuf"},"file_id":"6921","plan_size":{"width":2000,"height":1850},"Floors":{"2":{"level_name":"\u00c9tage #2","level":2,"units":{"201":{"page_id":"9a74cfe7-3c0b-4347-880e-ecdf07b0c0c3","available":false,"unit_number":"201","shape":"poly","coords":"744,442,846,442,846,592,722,592,722,536,744,536,744,536"},"202":{"page_id":"9a74cfea-83b3-4668-ade4-6e17a41b1d70","available":false,"unit_number":"202","shape":"poly","coords":"992,442,992,592,846,590,846,442,846,442"},"203":{"page_id":"9a74cfed-c5a6-4bdc-b8e3-991152cfd846","available":false,"unit_number":"203","shape":"poly","coords":"1042,412,1042,592,1220,592,1222,412"},"204":{"page_id":"9a74cff1-0af8-469f-8569-20230e602242","available":false,"unit_number":"204","shape":"poly","coords":"1218,260,1218,410,992,410,992,258,992,258"},"205":{"page_id":"9a74cff4-3a6e-41db-9a35-f5372c3aa082","available":false,"unit_number":"205","shape":"poly","coords":"834,260,994,260,994,410,836,408"},"206":{"page_id":"9a74cff7-a75b-43f3-80ba-73a45bcca15d","available":false,"unit_number":"206","shape":"poly","coords":"644,412,836,408,836,260,644,260,644,260"},"207":{"page_id":"9a74cffa-c2b4-4490-b63d-3a442a914993","available":false,"unit_number":"207","shape":"poly","coords":"498,410,500,262,644,260,644,410,562,410"},"208":{"page_id":"9a74cffe-07b5-4369-a9d3-2517e62ddc84","available":false,"unit_number":"208","shape":"poly","coords":"382,412,384,260,500,262,498,410"},"209":{"page_id":"9a74d000-f26e-465f-9e28-ed2d29b66bb5","available":false,"unit_number":"209","shape":"poly","coords":"236,262,238,412,382,410,382,262"},"210":{"page_id":"9a74d003-0759-43a6-8977-c7a625cba90e","available":true,"unit_number":"210","shape":"poly","coords":"48,262,238,262,238,442,50,442"},"211":{"page_id":"9a74d005-ffcb-426e-a934-798a6fcf2700","available":false,"unit_number":"211","shape":"poly","coords":"48,592,50,440,274,440,276,592"},"212":{"page_id":"9a74d008-c60a-4ecf-bf5d-4ea8516833d9","available":false,"unit_number":"212","shape":"poly","coords":"324,442,326,592,472,592,470,442"},"213":{"page_id":"9a74d00b-afa1-42f3-b6ad-c2c2da316397","available":false,"unit_number":"213","shape":"poly","coords":"470,592,722,592,722,536,702,536,704,518,658,518,658,512,614,512,616,440,470,442"}},"file_id":"5048","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5048-800/plan-1711-343-2022-10-06-planlocation-niveau2.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"301":{"page_id":"9a74d00e-9cba-400d-bec4-6ee27ee95b8f","available":false,"unit_number":"301","shape":"poly","coords":"718,540,718,596,846,596,842,442,742,444,742,538"},"302":{"page_id":"9a74d010-641b-4db9-ba24-72fe57a25b0f","available":false,"unit_number":"302","shape":"poly","coords":"988,594,842,594,842,442,988,442"},"303":{"page_id":"9a74d013-085c-48d2-ab76-88783aa95086","available":false,"unit_number":"303","shape":"poly","coords":"1038,594,1218,592,1218,412,1038,414"},"304":{"page_id":"9a74d015-1395-4a13-9d08-7ff453f10055","available":false,"unit_number":"304","shape":"poly","coords":"1216,262,1218,414,990,412,990,262"},"305":{"page_id":"9a74d017-38d9-44bf-acb0-dfc411e12ab2","available":false,"unit_number":"305","shape":"poly","coords":"832,410,992,410,990,260,832,262"},"306":{"page_id":"9a74d019-2a65-43e6-b49e-7a193c48816a","available":false,"unit_number":"306","shape":"poly","coords":"640,412,834,410,834,262,640,262"},"307":{"page_id":"9a74d01b-82fe-4a2a-a9de-9939ff0ab0dd","available":false,"unit_number":"307","shape":"poly","coords":"494,412,642,412,640,262,494,262"},"308":{"page_id":"9a74d01d-577a-48ee-ac13-965e952da291","available":false,"unit_number":"308","shape":"poly","coords":"378,410,496,412,494,260,378,262"},"309":{"page_id":"9a74d01f-f436-4182-bae7-1fcc07bd21ec","available":true,"unit_number":"309","shape":"poly","coords":"232,412,380,412,378,260,232,262"},"310":{"page_id":"9a74d021-d5a2-4ada-9a2d-f52490795220","available":false,"unit_number":"310","shape":"poly","coords":"42,262,44,444,234,444,234,260"},"311":{"page_id":"9a74d024-4b18-4483-b92b-b3cde500f3c9","available":false,"unit_number":"311","shape":"poly","coords":"268,442,270,596,42,594,44,442"},"312":{"page_id":"9a74d026-3527-488a-b6e9-048ade1da1d9","available":false,"unit_number":"312","shape":"poly","coords":"320,444,320,594,468,592,466,444"},"313":{"page_id":"9a74d028-93ac-4836-a9bf-30f0897e64f6","available":false,"unit_number":"313","shape":"poly","coords":"468,442,468,594,720,592,718,538,700,538,702,522,654,522,654,512,610,512,612,442"}},"file_id":"5049","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5049-800/plan-1711-343-2022-10-06-planlocation-niveau3.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"401":{"page_id":"9a74d02a-5cf8-4398-ba59-58080ae0dae7","available":false,"unit_number":"401","shape":"poly","coords":"724,538,724,594,850,594,848,440,748,444,746,538"},"402":{"page_id":"9a74d02c-c7a0-428b-ab08-976225199036","available":false,"unit_number":"402","shape":"poly","coords":"848,594,998,592,998,440,850,442"},"403":{"page_id":"9a74d02e-b026-4ad5-a7bd-f9186d32cd06","available":false,"unit_number":"403","shape":"poly","coords":"1046,594,1226,594,1226,410,1046,412"},"404":{"page_id":"9a74d030-f4ba-4e08-99cc-78c83c670ee9","available":false,"unit_number":"404","shape":"poly","coords":"1224,258,1228,414,998,410,998,258"},"405":{"page_id":"9a74d032-ee56-4b09-a7c4-4ba9eed8b977","available":false,"unit_number":"405","shape":"poly","coords":"838,410,998,410,998,258,838,258"},"406":{"page_id":"9a74d034-b4f2-4532-bcb2-8cc80d66ae22","available":false,"unit_number":"406","shape":"poly","coords":"646,410,842,410,838,258,646,258"},"407":{"page_id":"9a74d036-91c1-4b06-8f7d-a74f273f0096","available":false,"unit_number":"407","shape":"poly","coords":"496,410,646,410,646,258,500,258"},"408":{"page_id":"9a74d039-1406-4912-8682-37ae858891a0","available":false,"unit_number":"408","shape":"poly","coords":"380,410,500,408,498,258,380,260"},"409":{"page_id":"9a74d03a-debd-4d74-abb6-93f70434dc9b","available":false,"unit_number":"409","shape":"poly","coords":"232,410,382,408,380,256,234,258"},"410":{"page_id":"9a74d03d-767b-419e-b351-a2a3edd10fe9","available":false,"unit_number":"410","shape":"poly","coords":"42,442,236,440,234,256,44,258"},"411":{"page_id":"9a74d03f-6d72-480a-9200-932a9efb1592","available":false,"unit_number":"411","shape":"poly","coords":"42,596,274,592,272,442,42,440"},"412":{"page_id":"9a74d041-f3c0-442d-b946-eeb5bf2ae0c0","available":false,"unit_number":"412","shape":"poly","coords":"324,594,472,592,470,440,324,440"},"413":{"page_id":"9a74d044-5634-417a-af9d-0b527fd5be6d","available":false,"unit_number":"413","shape":"poly","coords":"470,596,472,440,618,442,618,512,658,512,658,520,708,518,708,540,726,540,724,594"}},"file_id":"5050","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5050-800/plan-1711-343-2022-10-06-planlocation-niveau4.webp"},"5":{"level_name":"\u00c9tage #5","level":5,"units":{"501":{"page_id":"9a74d046-dcf2-43e5-b0aa-d91c2acff582","available":false,"unit_number":"501","shape":"poly","coords":"708,540,708,596,988,594,986,440,734,440,732,538"},"502":{"page_id":"9a74d049-8cc8-4931-949b-10c67843ca66","available":false,"unit_number":"502","shape":"rect","coords":"1038,410,1220,594"},"503":{"page_id":"9a74d04b-d334-493d-9a56-2fefea966c97","available":false,"unit_number":"503","shape":"rect","coords":"986,254,1220,404"},"504":{"page_id":"9a74d04d-bcd7-473a-a0c0-acb6dc2ba8af","available":false,"unit_number":"504","shape":"rect","coords":"826,254,984,406"},"505":{"page_id":"9a74d050-2e7e-4dc4-9e8c-4d6441832217","available":false,"unit_number":"505","shape":"rect","coords":"626,252,822,404"},"506":{"page_id":"9a74d052-9613-4b62-9633-635707debbc8","available":false,"unit_number":"506","shape":"rect","coords":"358,254,624,404"},"507":{"page_id":"9a74d055-6804-4133-8f36-3e0ee954b4da","available":false,"unit_number":"507","shape":"rect","coords":"208,252,356,404"},"508":{"page_id":"9a74d057-a944-482b-8d63-951eb304de74","available":false,"unit_number":"508","shape":"rect","coords":"298,440,446,594"},"509":{"page_id":"9a74d059-9c97-4267-aac8-374c93286d84","available":false,"unit_number":"509","shape":"poly","coords":"598,516,640,516,638,522,690,522,690,540,708,540,708,596,448,594,448,440,600,440"}},"file_id":"5051","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5051-800/plan-1711-343-2022-10-06-planlocation-niveau5.webp"},"6":{"level_name":"\u00c9tage #6","level":6,"units":{"601":{"page_id":"9a74d05b-f7a2-4034-928d-cffa270fbcab","available":false,"unit_number":"601","shape":"poly","coords":"632,550,634,608,928,606,926,444,658,444,658,550"},"602":{"page_id":"9a74d05e-0040-419b-808c-ea342468fac0","available":false,"unit_number":"602","shape":"rect","coords":"982,410,1170,604"},"603":{"page_id":"9a74d060-76eb-46c6-a8b6-b1b4894d1230","available":false,"unit_number":"603","shape":"rect","coords":"928,246,1172,406"},"604":{"page_id":"9a74d062-62b6-4afa-8b71-69465ba2997d","available":false,"unit_number":"604","shape":"rect","coords":"754,246,926,406"},"605":{"page_id":"9a74d064-88fb-46e1-a07c-cebca9d10e49","available":false,"unit_number":"605","shape":"rect","coords":"550,246,754,406"},"606":{"page_id":"9a74d066-9393-44d2-b111-60e50271fbab","available":false,"unit_number":"606","shape":"rect","coords":"266,246,548,406"},"607":{"page_id":"9a74d069-4639-4da3-919e-4285dd75b240","available":false,"unit_number":"607","shape":"rect","coords":"108,246,264,406"},"608":{"page_id":"9a74d06c-1d44-4b28-9d55-58d4342a771f","available":false,"unit_number":"608","shape":"rect","coords":"206,442,360,604"},"609":{"page_id":"9a74d06e-4072-413e-bedd-b08ae5132613","available":false,"unit_number":"609","shape":"poly","coords":"518,444,518,518,564,518,564,528,616,526,616,548,634,548,632,606,362,604,362,444"}},"file_id":"5052","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5052-800/plan-1711-343-2022-10-06-planlocation-niveau6.webp"},"1":{"level_name":"\u00c9tage #1","level":1,"units":{"110":{"page_id":"9a74cfda-fc30-4338-873f-894623a6e788","available":false,"unit_number":"110","shape":"rect","coords":"108,310,254,450"},"109":{"page_id":"9a74cfd8-8344-41ea-9555-df3f80f1f4ed","available":false,"unit_number":"109","shape":"rect","coords":"250,306,366,426"},"108":{"page_id":"9a74cfd6-1e3a-4eae-a326-070d6ae0a86f","available":false,"unit_number":"108","shape":"rect","coords":"366,310,456,426"},"107":{"page_id":"9a74cfd3-4e22-4424-9b77-9f8460da7a2e","available":false,"unit_number":"107","shape":"rect","coords":"458,310,570,426"},"106":{"page_id":"9a74cfd0-0f81-4e9f-9f78-178ea2068788","available":false,"unit_number":"106","shape":"rect","coords":"568,310,716,428"},"105":{"page_id":"9a74cfcc-e6c0-46d8-9ca3-b28c5ad95b28","available":false,"unit_number":"105","shape":"rect","coords":"718,310,840,426"},"104":{"page_id":"9a74cfca-2da4-44db-80b9-c74f13704e54","available":false,"unit_number":"104","shape":"rect","coords":"840,310,1014,426"},"103":{"page_id":"9a74cfc7-2def-4055-8e63-cba58e6ac2d8","available":false,"unit_number":"103","shape":"rect","coords":"876,450,1014,568"},"102":{"page_id":"9a74cfc4-59f8-4e69-896c-bd260411a3b5","available":false,"unit_number":"102","shape":"poly","coords":"726,448,726,566,838,566,838,448"},"101":{"page_id":"9a74cfc1-1a75-4cf0-ba93-89e251021a97","available":false,"unit_number":"101","shape":"poly","coords":"646,450,720,448,720,566,628,566,628,526,646,526"},"113":{"page_id":"9a74cfe4-0ecb-456c-b728-a93dcb65f59d","available":false,"unit_number":"113","shape":"poly","coords":"434,450,546,450,546,504,570,506,570,566,434,566"},"112":{"page_id":"9a74cfe0-f2ba-4d69-8267-11d30f9163b7","available":false,"unit_number":"112","shape":"rect","coords":"322,450,434,566"},"111":{"page_id":"9a74cfdd-b952-41ec-9b0a-5ff8d66eecb0","available":false,"unit_number":"111","shape":"rect","coords":"106,450,282,568"}},"file_id":"5639","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5639-800/plan-1711-343-344-planlocation-p3-niv1png.webp"}},"areas":[{"item_id":"343","shape":"rect","coords":"188,478,833,660","building_id":379,"available":true},{"item_id":"344","shape":"rect","coords":"206,875,850,1057","building_id":380,"available":true},{"item_id":"345","shape":"rect","coords":"310,1186,953,1368","building_id":396,"available":true},{"item_id":"342","shape":"poly","coords":"1236,686,1236,1356,1418,1320,1418,686","building_id":343,"available":true},{"item_id":"341","shape":"poly","coords":"1710,615,1710,1267,1891,1231,1890,615","building_id":339,"available":false}],"plan_url":"https://logisco.com/static/vb/6921-800/plan-1711-345-planlocation-implantation1.webp"},{"Available":true,"SourceId":380,"Code":"344","Address":{"NumberStreet":"2235 avenue Chauveau","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2C 0P6","Neighborhood":"Neufch\u00e2tel-Est-Lebourgneuf"},"file_id":"6921","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"101":{"page_id":"9a74d070-a70b-4cc2-869f-c5bb061c5dce","available":false,"unit_number":"101","shape":"poly","coords":"748,434,852,434,850,282,724,284,726,340,748,340"},"102":{"page_id":"9a74d073-ef70-4384-8226-f77f0966e2b9","available":false,"unit_number":"102","shape":"rect","coords":"850,282,998,432"},"103":{"page_id":"9a74d076-f2dc-4b0d-b380-91915f909f66","available":false,"unit_number":"103","shape":"rect","coords":"1046,282,1224,462"},"104":{"page_id":"9a74d07a-2f11-4f6b-aa2b-99393a7f014b","available":false,"unit_number":"104","shape":"rect","coords":"998,466,1222,614"},"105":{"page_id":"9a74d07d-b5ba-4245-b3b8-d03254a6df59","available":false,"unit_number":"105","shape":"rect","coords":"838,466,996,614"},"106":{"page_id":"9a74d080-d90f-422e-bead-9e42889e2dc5","available":false,"unit_number":"106","shape":"rect","coords":"646,466,836,614"},"107":{"page_id":"9a74d084-4757-4006-bf43-86987c678734","available":false,"unit_number":"107","shape":"rect","coords":"500,466,644,614"},"108":{"page_id":"9a74d087-82dc-4fa8-98a2-86f2eb9ff446","available":false,"unit_number":"108","shape":"rect","coords":"386,466,498,614"},"109":{"page_id":"9a74d08a-9248-4245-9e4a-250fde64d468","available":false,"unit_number":"109","shape":"rect","coords":"238,466,382,614"},"110":{"page_id":"9a74d08d-6cdb-48ed-afb8-47233281ea98","available":false,"unit_number":"110","shape":"rect","coords":"48,434,236,614"},"111":{"page_id":"9a74d091-212c-41d0-957d-9475a6036d91","available":false,"unit_number":"111","shape":"rect","coords":"48,282,272,432"},"113":{"page_id":"9a74d094-6f31-45c8-97a7-103575233b31","available":false,"unit_number":"113","shape":"poly","coords":"472,284,652,284,652,364,614,362,618,434,472,434,472,434"}},"file_id":"5054","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5054-800/plan-1711-344-2022-10-06-planlocation-niveau1.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"201":{"page_id":"9a74d097-aa9c-47db-809b-1b55251de631","available":false,"unit_number":"201","shape":"poly","coords":"846,264,846,412,746,412,746,318,720,316,720,264"},"202":{"page_id":"9a74d09c-e63d-48ab-8476-b149fc7a4cc3","available":false,"unit_number":"202","shape":"rect","coords":"846,262,990,410"},"203":{"page_id":"9a74d0a0-0037-4ed2-96c4-c656c2266088","available":false,"unit_number":"203","shape":"rect","coords":"1042,262,1218,440"},"204":{"page_id":"9a74d0a3-4ca2-422c-9dd3-441120cedc5f","available":false,"unit_number":"204","shape":"rect","coords":"994,444,1218,592"},"205":{"page_id":"9a74d0a6-7bc0-4daf-9d2e-8c7433961440","available":false,"unit_number":"205","shape":"rect","coords":"834,444,990,590"},"206":{"page_id":"9a74d0a9-ef2e-4473-a9c6-6c8d8740b114","available":false,"unit_number":"206","shape":"rect","coords":"644,444,834,590"},"207":{"page_id":"9a74d0ad-5e8d-4e9a-a0d9-b0043e388985","available":false,"unit_number":"207","shape":"rect","coords":"498,444,642,590"},"208":{"page_id":"9a74d0b0-ba1d-4977-907e-537d6fd567eb","available":false,"unit_number":"208","shape":"rect","coords":"382,444,496,590"},"209":{"page_id":"9a74d0b3-ce2e-41b3-a888-eaaa6633b5d9","available":false,"unit_number":"209","shape":"rect","coords":"238,444,380,590"},"210":{"page_id":"9a74d0b6-18b5-4ffd-9c33-935bfab94e83","available":true,"unit_number":"210","shape":"rect","coords":"46,412,234,592"},"211":{"page_id":"9a74d0b9-3250-42f1-a899-00c7d17b6cc7","available":false,"unit_number":"211","shape":"rect","coords":"46,264,270,410"},"212":{"page_id":"9a74d0bc-8c11-4474-9119-0bdf6147c1a2","available":false,"unit_number":"212","shape":"rect","coords":"324,262,468,410"},"213":{"page_id":"9a74d0c1-9539-40a1-8934-41e440cf055b","available":false,"unit_number":"213","shape":"poly","coords":"614,344,648,342,648,332,708,334,708,316,722,316,722,262,468,264,472,412,616,412"}},"file_id":"5055","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5055-800/plan-1711-344-2022-10-06-planlocation-niveau2.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"301":{"page_id":"9a74d0c4-94b5-4eb4-8c0b-7625310c721c","available":false,"unit_number":"301","shape":"poly","coords":"718,264,842,264,842,410,742,408,740,312,718,312"},"302":{"page_id":"9a74d0c6-8292-4c83-8871-b0ac679e524f","available":false,"unit_number":"302","shape":"poly","coords":"986,264,986,412,840,410,840,262"},"303":{"page_id":"9a74d0c8-c71c-4d3b-87b1-67a770217e35","available":false,"unit_number":"303","shape":"rect","coords":"1038,262,1210,436"},"304":{"page_id":"9a74d0cb-1f0d-425d-9114-35cf26382690","available":false,"unit_number":"304","shape":"rect","coords":"988,442,1212,588"},"305":{"page_id":"9a74d0cd-136b-4e89-b00a-dc6fc7e15be1","available":false,"unit_number":"305","shape":"rect","coords":"832,442,988,586"},"306":{"page_id":"9a74d0cf-78f5-4516-a37a-887e392d3d97","available":false,"unit_number":"306","shape":"rect","coords":"642,442,832,586"},"307":{"page_id":"9a74d0d1-85b5-4420-8ec4-9c292b3db3b9","available":false,"unit_number":"307","shape":"rect","coords":"496,442,642,588"},"308":{"page_id":"9a74d0d3-cacc-4c98-be64-42e62b8ad2aa","available":false,"unit_number":"308","shape":"rect","coords":"382,440,496,588"},"309":{"page_id":"9a74d0d5-e06f-494b-b022-878a46338148","available":false,"unit_number":"309","shape":"rect","coords":"236,440,382,588"},"310":{"page_id":"9a74d0d8-529a-465e-9ec4-85f3e8fbf179","available":false,"unit_number":"310","shape":"rect","coords":"50,410,236,586"},"311":{"page_id":"9a74d0da-b27e-4501-8959-3a2042a59f89","available":false,"unit_number":"311","shape":"rect","coords":"50,260,270,408"},"312":{"page_id":"9a74d0dc-bd6f-4dbb-b4d2-9622c8695413","available":false,"unit_number":"312","shape":"rect","coords":"324,260,466,408"},"313":{"page_id":"9a74d0df-43e6-487e-955d-ea0547aef84d","available":false,"unit_number":"313","shape":"poly","coords":"614,338,614,410,468,410,468,260,720,260,716,314,698,312,700,330,644,330,648,338"}},"file_id":"5056","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5056-800/plan-1711-344-2022-10-06-planlocation-niveau3.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"401":{"page_id":"9a74d0e1-8dfa-4c4f-b9cc-29b118f50049","available":false,"unit_number":"401","shape":"poly","coords":"722,262,846,262,844,412,744,410,744,316,722,316"},"402":{"page_id":"9a74d0e3-bbe0-4f9d-8cf7-6bc86730814a","available":false,"unit_number":"402","shape":"rect","coords":"844,262,986,408"},"403":{"page_id":"9a74d0e6-24ee-452d-aeab-b53d75df8981","available":false,"unit_number":"403","shape":"rect","coords":"1036,262,1210,438"},"404":{"page_id":"9a74d0e8-76e8-4832-99b7-bd9216cbaf6b","available":false,"unit_number":"404","shape":"rect","coords":"990,440,1210,586"},"405":{"page_id":"9a74d0ea-bdd2-46bf-a440-7647f643c33a","available":false,"unit_number":"405","shape":"rect","coords":"834,442,984,586"},"406":{"page_id":"9a74d0ed-2f85-4aad-9da7-c439f8b6bfd4","available":false,"unit_number":"406","shape":"rect","coords":"644,442,832,588"},"407":{"page_id":"9a74d0ef-701c-4a85-a731-87648deb0aa2","available":false,"unit_number":"407","shape":"rect","coords":"502,440,642,586"},"408":{"page_id":"9a74d0f1-8fe0-4efb-9c94-22c25616dfe6","available":false,"unit_number":"408","shape":"rect","coords":"386,442,498,586"},"409":{"page_id":"9a74d0f3-e0d2-40c0-b5a1-81df57fb3bb2","available":false,"unit_number":"409","shape":"rect","coords":"244,440,386,586"},"410":{"page_id":"9a74d0f6-6519-4fdc-9484-e04e479e8d7c","available":false,"unit_number":"410","shape":"rect","coords":"54,410,242,586"},"411":{"page_id":"9a74d0f8-aee1-46c1-bfb3-8c530d3dbe7f","available":false,"unit_number":"411","shape":"rect","coords":"56,262,280,408"},"412":{"page_id":"9a74d0fa-a0d5-4aea-b312-584018d3899e","available":false,"unit_number":"412","shape":"rect","coords":"328,262,472,408"},"413":{"page_id":"9a74d0fc-f821-480d-b6a2-1de7ced2f184","available":false,"unit_number":"413","shape":"poly","coords":"616,340,616,412,474,408,474,260,724,264,720,316,702,316,704,334,648,332,650,340"}},"file_id":"5057","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5057-800/plan-1711-344-2022-10-06-planlocation-niveau4.webp"},"5":{"level_name":"\u00c9tage #5","level":5,"units":{"501":{"page_id":"9a74d0ff-b170-4338-8cbd-e17b04fa704f","available":false,"unit_number":"501","shape":"poly","coords":"706,260,984,260,982,416,730,414,730,314,704,314"},"502":{"page_id":"9a74d102-a4fc-4af2-9bb8-75a180a4b9b4","available":false,"unit_number":"502","shape":"rect","coords":"1034,258,1214,442"},"503":{"page_id":"9a74d104-f090-41b1-97f4-306acedffe74","available":false,"unit_number":"503","shape":"rect","coords":"984,446,1214,596"},"504":{"page_id":"9a74d107-28a9-4522-9fb2-bb449ae06550","available":false,"unit_number":"504","shape":"rect","coords":"824,446,982,596"},"505":{"page_id":"9a74d109-2efb-44c4-98b2-f181b25d9d3f","available":false,"unit_number":"505","shape":"rect","coords":"626,446,822,596"},"506":{"page_id":"9a74d10c-2b3b-405b-bea2-613f735a8150","available":false,"unit_number":"506","shape":"rect","coords":"358,446,626,598"},"507":{"page_id":"9a74d10e-c5c8-489d-bd66-1d86a3ab32b2","available":false,"unit_number":"507","shape":"rect","coords":"208,446,356,598"},"508":{"page_id":"9a74d111-1ea1-4060-b4f1-421ba8062944","available":false,"unit_number":"508","shape":"rect","coords":"298,258,446,410"},"509":{"page_id":"9a74d113-6789-46da-a37b-06f232d8ac3f","available":false,"unit_number":"509","shape":"poly","coords":"688,314,688,334,636,332,638,340,596,340,598,414,452,412,448,258,708,260,708,316"}},"file_id":"5058","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5058-800/plan-1711-344-2022-10-06-planlocation-niveau5.webp"},"6":{"level_name":"\u00c9tage #6","level":6,"units":{"601":{"page_id":"9a74d115-fb93-4c83-8d27-7371a5701fe7","available":false,"unit_number":"601","shape":"poly","coords":"634,236,942,236,940,406,660,404,660,296,634,294"},"602":{"page_id":"9a74d118-5884-4646-8333-f004c2816217","available":false,"unit_number":"602","shape":"rect","coords":"996,234,1194,436"},"603":{"page_id":"9a74d11a-d85e-4ec6-927c-a1faa8d1eb21","available":false,"unit_number":"603","shape":"rect","coords":"940,440,1196,608"},"604":{"page_id":"9a74d11c-f164-4c42-8190-a2809af8a64b","available":false,"unit_number":"604","shape":"rect","coords":"762,440,938,606"},"605":{"page_id":"9a74d11f-55d8-4daa-a192-9cf2511e48ed","available":false,"unit_number":"605","shape":"rect","coords":"548,440,760,606"},"606":{"page_id":"9a74d121-b50c-4a81-9b99-a5448c7558df","available":false,"unit_number":"606","shape":"rect","coords":"250,440,546,606"},"607":{"page_id":"9a74d126-6efb-441e-b54d-2b652a8b39e3","available":false,"unit_number":"607","shape":"rect","coords":"86,440,248,606"},"608":{"page_id":"9a74d129-7128-43b8-9695-2a4a88e39237","available":false,"unit_number":"608","shape":"rect","coords":"186,234,348,402"},"609":{"page_id":"9a74d12b-8c7f-4dad-8458-6699a8488169","available":false,"unit_number":"609","shape":"poly","coords":"512,326,512,404,350,404,352,232,636,236,632,296,612,296,614,316,560,316,560,324"}},"file_id":"5059","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5059-800/plan-1711-344-2022-10-06-planlocation-niveau6.webp"}},"areas":[{"item_id":"343","shape":"rect","coords":"188,478,833,660","building_id":379,"available":true},{"item_id":"344","shape":"rect","coords":"206,875,850,1057","building_id":380,"available":true},{"item_id":"345","shape":"rect","coords":"310,1186,953,1368","building_id":396,"available":true},{"item_id":"342","shape":"poly","coords":"1236,686,1236,1356,1418,1320,1418,686","building_id":343,"available":true},{"item_id":"341","shape":"poly","coords":"1710,615,1710,1267,1891,1231,1890,615","building_id":339,"available":false}],"plan_url":"https://logisco.com/static/vb/6921-800/plan-1711-345-planlocation-implantation1.webp"},{"Available":true,"SourceId":396,"Code":"345","Address":{"NumberStreet":"2805 rue Coursol","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2C 0P8","Neighborhood":"Neufch\u00e2tel-Est-Lebourgneuf"},"file_id":"6921","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"101":{"page_id":"9bd2d29c-efae-4a73-a6b9-8c9748eb43e1","available":false,"unit_number":"101","shape":"poly","coords":"724,608,722,556,744,556,744,460,844,460,842,608"},"102":{"page_id":"9bd2d29d-e562-41fc-94b9-311e57ef2dec","available":false,"unit_number":"102","shape":"rect","coords":"846,460,990,606"},"103":{"page_id":"9bd2d29e-bc45-4f4c-95d4-d83d6581b07a","available":false,"unit_number":"103","shape":"rect","coords":"1044,430,1216,606"},"104":{"page_id":"9bd2d29f-da0b-4834-ab35-1e85d04b1f4c","available":false,"unit_number":"104","shape":"rect","coords":"994,280,1214,426"},"105":{"page_id":"9bd2d2a0-b8be-4df1-a14d-46e05eeaed03","available":false,"unit_number":"105","shape":"rect","coords":"836,280,990,426"},"106":{"page_id":"9bd2d2a1-fab6-4795-a6c4-89f82eb5431a","available":false,"unit_number":"106","shape":"rect","coords":"646,280,832,426"},"107":{"page_id":"9bd2d2a2-f595-480a-9c83-c1a4206feabb","available":false,"unit_number":"107","shape":"rect","coords":"500,280,644,426"},"108":{"page_id":"9bd2d2a4-be64-4dd5-8e1b-cedbd06aba84","available":false,"unit_number":"108","shape":"rect","coords":"386,280,498,426"},"109":{"page_id":"9bd2d2a5-aad6-4d98-b8a6-a2566811ca16","available":false,"unit_number":"109","shape":"rect","coords":"240,280,380,428"},"110":{"page_id":"9bd2d2a7-2a5a-4139-9f38-84ae1d60ed0b","available":true,"unit_number":"110","shape":"rect","coords":"52,280,236,458"},"111":{"page_id":"9bd2d2a8-d0f1-4179-9376-845256dc474c","available":false,"unit_number":"111","shape":"rect","coords":"52,460,272,608"},"112":{"page_id":"9bd2d2aa-a57d-4343-98ad-fb9d83057cb5","available":false,"unit_number":"112","shape":"rect","coords":"328,460,468,608"},"113":{"page_id":"9bd2d2ac-a252-43a3-b106-f34c03cc89ed","available":false,"unit_number":"113","shape":"poly","coords":"474,462,612,460,612,530,642,532,642,608,474,608"}},"file_id":"6808","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6808-800/plan-1711-345-planlocation-p5-niv1png.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"201":{"page_id":"9bd2d2ad-90cd-44d1-a8cc-f10ed4447d9a","available":false,"unit_number":"201","shape":"poly","coords":"728,542,750,542,748,448,844,450,844,592,726,592"},"202":{"page_id":"9bd2d2ae-fff2-4cf1-b7cd-e6dd65f9566c","available":false,"unit_number":"202","shape":"rect","coords":"846,448,984,592"},"203":{"page_id":"9bd2d2b0-0629-46c3-929a-92e0007bad09","available":false,"unit_number":"203","shape":"rect","coords":"1036,420,1202,590"},"204":{"page_id":"9bd2d2b1-4e76-4f00-ba7c-2ab2069169e7","available":false,"unit_number":"204","shape":"rect","coords":"988,276,1202,418"},"205":{"page_id":"9bd2d2b3-1d5c-4ec2-9f91-0f0e03dd0a28","available":false,"unit_number":"205","shape":"rect","coords":"838,276,986,418"},"206":{"page_id":"9bd2d2b4-e7aa-4e08-a666-815ead5119ad","available":false,"unit_number":"206","shape":"rect","coords":"652,276,832,418"},"207":{"page_id":"9bd2d2b6-d6fd-4a7b-b2a2-750e1b53ac82","available":false,"unit_number":"207","shape":"rect","coords":"512,276,650,418"},"208":{"page_id":"9bd2d2b9-0514-48b2-a7bb-6ce31c9b72a1","available":false,"unit_number":"208","shape":"rect","coords":"402,276,508,418"},"209":{"page_id":"9bd2d2b9-e316-4d98-9b50-34441204fc9a","available":false,"unit_number":"209","shape":"rect","coords":"262,276,398,418"},"210":{"page_id":"9bd2d2bb-b0e2-460b-9c3b-1951cb5c3980","available":false,"unit_number":"210","shape":"rect","coords":"80,276,258,446"},"211":{"page_id":"9bd2d2bc-90e1-42e1-a193-2275a564aeb3","available":false,"unit_number":"211","shape":"rect","coords":"82,450,294,590"},"212":{"page_id":"9bd2d2bd-aba7-4d1d-83c6-e6ddc03ebd8e","available":false,"unit_number":"212","shape":"rect","coords":"346,450,480,592"},"213":{"page_id":"9bd2d2be-b0a8-4da2-bc2f-4c9cee040310","available":false,"unit_number":"213","shape":"poly","coords":"486,450,622,450,622,518,660,516,660,524,706,524,706,542,722,542,724,592,486,592"}},"file_id":"6809","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6809-800/plan-1711-345-planlocation-p5-niv2png.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"301":{"page_id":"9bd2d2bf-a072-4626-bee1-f0be2ebffe5f","available":false,"unit_number":"301","shape":"poly","coords":"746,456,844,456,844,604,722,604,722,554,744,552"},"302":{"page_id":"9bd2d2c0-7abc-4324-b723-25bf228c186c","available":false,"unit_number":"302","shape":"rect","coords":"846,458,986,604"},"303":{"page_id":"9bd2d2c1-e941-47ea-8f47-2da6a9241907","available":false,"unit_number":"303","shape":"rect","coords":"1044,426,1216,604"},"304":{"page_id":"9bd2d2c2-bd9d-4df0-a502-fb53280d528b","available":false,"unit_number":"304","shape":"rect","coords":"994,276,1216,422"},"305":{"page_id":"9bd2d2c3-b266-4aa4-8317-6cad062ac73e","available":false,"unit_number":"305","shape":"rect","coords":"836,276,988,422"},"306":{"page_id":"9bd2d2c6-03b5-4635-9853-9e4d67af895d","available":false,"unit_number":"306","shape":"rect","coords":"644,276,832,422"},"307":{"page_id":"9bd2d2c7-47b0-4b8d-94ea-52c8e68bac00","available":false,"unit_number":"307","shape":"rect","coords":"500,276,642,424"},"308":{"page_id":"9bd2d2c8-c219-40fb-a2a1-f91a62421f99","available":false,"unit_number":"308","shape":"rect","coords":"386,276,496,422"},"309":{"page_id":"9bd2d2c9-e7ae-4eb4-af78-ae3b8a0de715","available":false,"unit_number":"309","shape":"rect","coords":"240,276,382,422"},"310":{"page_id":"9bd2d2ca-e7b6-4309-9e91-dac612a30414","available":false,"unit_number":"310","shape":"rect","coords":"52,276,236,454"},"311":{"page_id":"9bd2d2cc-184b-45e1-a6da-7e0fd98915e8","available":false,"unit_number":"311","shape":"rect","coords":"52,456,274,602"},"312":{"page_id":"9bd2d2ce-31ab-43cd-b372-2aaad514eb28","available":false,"unit_number":"312","shape":"rect","coords":"326,456,468,604"},"313":{"page_id":"9bd2d2cf-ecfb-435d-b7db-0fd924b90405","available":false,"unit_number":"313","shape":"poly","coords":"474,458,612,456,614,526,654,526,654,534,700,536,700,552,718,554,718,604,472,604"}},"file_id":"6810","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6810-800/plan-1711-345-planlocation-p5-niv3png.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"401":{"page_id":"9bd2d2d1-cc5b-45ef-9378-f2e5a8609420","available":false,"unit_number":"401","shape":"poly","coords":"746,456,844,456,844,602,720,606,722,552,746,554"},"402":{"page_id":"9bd2d2d3-2a06-457e-9ac3-24aa59076877","available":false,"unit_number":"402","shape":"rect","coords":"848,458,990,604"},"403":{"page_id":"9bd2d2d5-19a4-4c4d-9441-531e353a3aee","available":false,"unit_number":"403","shape":"rect","coords":"1042,426,1216,604"},"404":{"page_id":"9bd2d2d6-7a4f-40ac-9ca3-3fc315b3e61f","available":false,"unit_number":"404","shape":"rect","coords":"994,276,1216,422"},"405":{"page_id":"9bd2d2d7-67c1-4aa6-9653-fe6887b4060e","available":false,"unit_number":"405","shape":"rect","coords":"838,276,992,424"},"406":{"page_id":"9bd2d2d8-a7d3-46ad-8661-1886f922c14e","available":false,"unit_number":"406","shape":"rect","coords":"646,276,834,422"},"407":{"page_id":"9bd2d2da-023a-4849-bc94-3599bb8830ea","available":false,"unit_number":"407","shape":"rect","coords":"502,278,644,424"},"408":{"page_id":"9bd2d2db-a39a-416a-a84f-4cd637360fd4","available":false,"unit_number":"408","shape":"rect","coords":"386,276,498,422"},"409":{"page_id":"9bd2d2dc-e188-4b1e-808e-d63727c17f3f","available":false,"unit_number":"409","shape":"rect","coords":"240,278,384,424"},"410":{"page_id":"9bd2d2de-0d50-4ab4-9094-cabd51e1717e","available":false,"unit_number":"410","shape":"rect","coords":"52,276,238,452"},"411":{"page_id":"9bd2d2df-91e2-47a7-97c4-4cc3282fce35","available":false,"unit_number":"411","shape":"rect","coords":"52,456,276,604"},"412":{"page_id":"9bd2d2e1-f126-4222-9c10-d831ec6ed310","available":false,"unit_number":"412","shape":"rect","coords":"328,456,472,604"},"413":{"page_id":"9bd2d2e4-0e21-4949-9d3d-1a4745184d6f","available":false,"unit_number":"413","shape":"poly","coords":"474,456,614,456,616,526,656,526,656,534,704,536,702,552,720,552,720,604,474,604"}},"file_id":"6811","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6811-800/plan-1711-345-planlocation-p5-niv4png.webp"},"5":{"level_name":"\u00c9tage #5","level":5,"units":{"501":{"page_id":"9bd2d2e5-47f9-498d-85e9-2a2c6d852383","available":false,"unit_number":"501","shape":"poly","coords":"708,548,730,546,728,452,972,452,974,600,708,600"},"502":{"page_id":"9bd2d2e6-fbc4-4100-8124-b88fedbf893b","available":false,"unit_number":"502","shape":"rect","coords":"1028,422,1202,600"},"503":{"page_id":"9bd2d2e9-58ea-4d5c-a95a-08e33f7b219e","available":false,"unit_number":"503","shape":"rect","coords":"978,272,1200,420"},"504":{"page_id":"9bd2d2eb-031d-4a59-8a23-7ab05bc8c7d2","available":false,"unit_number":"504","shape":"rect","coords":"822,272,974,420"},"505":{"page_id":"9bd2d2ec-47d7-4b0c-ba67-35f477ade5f6","available":false,"unit_number":"505","shape":"rect","coords":"630,272,818,420"},"506":{"page_id":"9bd2d2ed-e11d-44aa-b3e8-6069c00f86bf","available":false,"unit_number":"506","shape":"rect","coords":"370,272,626,418"},"507":{"page_id":"9bd2d2ef-01ac-43e0-badb-9288f2f34ce5","available":false,"unit_number":"507","shape":"rect","coords":"226,272,368,418"},"508":{"page_id":"9bd2d2f0-5ec6-456d-9cfa-db5bf18223e6","available":false,"unit_number":"508","shape":"rect","coords":"312,452,456,598"},"509":{"page_id":"9bd2d2f1-a631-4e0b-8f23-ad5661e46549","available":false,"unit_number":"509","shape":"poly","coords":"458,452,600,452,600,522,638,520,640,530,686,530,688,546,706,546,706,600,458,600"}},"file_id":"6885","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6885-800/plan-1711-345-planlocation-p5-niv5png.webp"},"6":{"level_name":"\u00c9tage #6","level":6,"units":{"601":{"page_id":"9bd2d2f3-1a93-4d63-9843-3a2ac86e1bd3","available":false,"unit_number":"601","shape":"poly","coords":"652,448,894,446,894,596,626,596,628,540,648,542"},"602":{"page_id":"9bd2d2f5-396a-4dde-a60f-8544a92b0880","available":false,"unit_number":"602","shape":"rect","coords":"948,418,1122,594"},"603":{"page_id":"9bd2d2f6-d9c2-4a30-bb38-d290f6dee172","available":false,"unit_number":"603","shape":"rect","coords":"898,268,1120,416"},"604":{"page_id":"9bd2d2f8-8061-4681-bac7-f7424dbbb6a6","available":false,"unit_number":"604","shape":"rect","coords":"742,268,896,414"},"605":{"page_id":"9bd2d2f9-dffb-40e8-9bc0-e3f079502068","available":false,"unit_number":"605","shape":"rect","coords":"552,268,738,416"},"606":{"page_id":"9bd2d2fb-6446-40a3-8fa2-f1d0acbc6182","available":false,"unit_number":"606","shape":"rect","coords":"290,266,546,414"},"607":{"page_id":"9bd2d2fc-ed8b-4e0d-a8ba-d4279b8675d9","available":false,"unit_number":"607","shape":"rect","coords":"146,268,286,414"},"608":{"page_id":"9bd2d2ff-8e73-40fc-a3bd-08e5918ff147","available":false,"unit_number":"608","shape":"rect","coords":"232,448,374,596"},"609":{"page_id":"9bd2d300-fff3-41d9-8933-6afca033ab44","available":false,"unit_number":"609","shape":"poly","coords":"378,448,520,448,520,518,560,518,560,526,608,526,608,544,624,544,624,596,378,594"}},"file_id":"6812","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/6812-800/plan-1711-345-planlocation-p5-niv6png.webp"}},"areas":[{"item_id":"343","shape":"rect","coords":"188,478,833,660","building_id":379,"available":true},{"item_id":"344","shape":"rect","coords":"206,875,850,1057","building_id":380,"available":true},{"item_id":"345","shape":"rect","coords":"310,1186,953,1368","building_id":396,"available":true},{"item_id":"342","shape":"poly","coords":"1236,686,1236,1356,1418,1320,1418,686","building_id":343,"available":true},{"item_id":"341","shape":"poly","coords":"1710,615,1710,1267,1891,1231,1890,615","building_id":339,"available":false}],"plan_url":"https://logisco.com/static/vb/6921-800/plan-1711-345-planlocation-implantation1.webp"}]" | |
| 892 | + :project-name=""KOS"" | |
| 893 | + :building-id="343" | |
| 894 | + :floor="6" | |
| 895 | + ></plan-view> | |
| 896 | +</section> | |
| 897 | + | |
| 898 | + | |
| 899 | + </div> | |
| 900 | + | |
| 901 | +<div class="unitSection"> | |
| 902 | + <carousel-gallery> | |
| 903 | + <template #title> | |
| 904 | + <div class="blockText blockText-style--medium"> | |
| 905 | + <h2 class="blockText-surtitle">Perspectives du projet résidentiel</h2> | |
| 906 | + <p class="blockText-title">Capturer l'âme du projet à travers les images</p> | |
| 907 | + </div> | |
| 908 | + </template> | |
| 909 | + <template #images> | |
| 910 | + <carousel-gallery-slide> | |
| 911 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/6451-1800/kos-phase-1-et-2-vue-aerienne.webp" | |
| 912 | + alt="KOS phase 1 et 2 - Vue aérienne"> | |
| 913 | + <template #description> | |
| 914 | + <a class="c2a c2a-text c2a--tertiary" | |
| 915 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 916 | + <span class="c2a-name"> | |
| 917 | + Découvrir KOS | |
| 918 | + </span> | |
| 919 | + </a> | |
| 920 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 921 | + KOS phase 1 et 2 - Vue aérienne | |
| 922 | + </h3> | |
| 923 | + </template> | |
| 924 | + </carousel-gallery-slide> | |
| 925 | + <carousel-gallery-slide> | |
| 926 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7087-1800/kos-phase-3-et-4-vue-aerienne.webp" | |
| 927 | + alt="KOS phase 3 et 4 - Vue aérienne"> | |
| 928 | + <template #description> | |
| 929 | + <a class="c2a c2a-text c2a--tertiary" | |
| 930 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 931 | + <span class="c2a-name"> | |
| 932 | + Découvrir KOS | |
| 933 | + </span> | |
| 934 | + </a> | |
| 935 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 936 | + KOS phase 3 et 4 - Vue aérienne | |
| 937 | + </h3> | |
| 938 | + </template> | |
| 939 | + </carousel-gallery-slide> | |
| 940 | + <carousel-gallery-slide> | |
| 941 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/5020-1800/kos-3-cuisine.webp" | |
| 942 | + alt="KOS - 3 ½ - Cuisine "> | |
| 943 | + <template #description> | |
| 944 | + <a class="c2a c2a-text c2a--tertiary" | |
| 945 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 946 | + <span class="c2a-name"> | |
| 947 | + Découvrir KOS | |
| 948 | + </span> | |
| 949 | + </a> | |
| 950 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 951 | + KOS - 3 ½ - Cuisine | |
| 952 | + </h3> | |
| 953 | + </template> | |
| 954 | + </carousel-gallery-slide> | |
| 955 | + <carousel-gallery-slide> | |
| 956 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/5021-1800/kos-3-cuisine-et-salle-a-manger.webp" | |
| 957 | + alt="KOS - 3 ½ - Cuisine et salle à manger"> | |
| 958 | + <template #description> | |
| 959 | + <a class="c2a c2a-text c2a--tertiary" | |
| 960 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 961 | + <span class="c2a-name"> | |
| 962 | + Découvrir KOS | |
| 963 | + </span> | |
| 964 | + </a> | |
| 965 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 966 | + KOS - 3 ½ - Cuisine et salle à manger | |
| 967 | + </h3> | |
| 968 | + </template> | |
| 969 | + </carousel-gallery-slide> | |
| 970 | + <carousel-gallery-slide> | |
| 971 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/5022-1800/kos-3-aire-de-vie.webp" | |
| 972 | + alt="KOS - 3 ½ - Aire de vie"> | |
| 973 | + <template #description> | |
| 974 | + <a class="c2a c2a-text c2a--tertiary" | |
| 975 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 976 | + <span class="c2a-name"> | |
| 977 | + Découvrir KOS | |
| 978 | + </span> | |
| 979 | + </a> | |
| 980 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 981 | + KOS - 3 ½ - Aire de vie | |
| 982 | + </h3> | |
| 983 | + </template> | |
| 984 | + </carousel-gallery-slide> | |
| 985 | + <carousel-gallery-slide> | |
| 986 | + <img width="1800" height="1334" src="https://logisco.com/static/vb/5023-1800/kos-3-salle-de-bain.webp" | |
| 987 | + alt="KOS - 3 ½ - Salle de bain "> | |
| 988 | + <template #description> | |
| 989 | + <a class="c2a c2a-text c2a--tertiary" | |
| 990 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 991 | + <span class="c2a-name"> | |
| 992 | + Découvrir KOS | |
| 993 | + </span> | |
| 994 | + </a> | |
| 995 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 996 | + KOS - 3 ½ - Salle de bain | |
| 997 | + </h3> | |
| 998 | + </template> | |
| 999 | + </carousel-gallery-slide> | |
| 1000 | + <carousel-gallery-slide> | |
| 1001 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/5024-1800/kos-3-salle-de-bain.webp" | |
| 1002 | + alt="KOS - 3 ½ - Salle de bain "> | |
| 1003 | + <template #description> | |
| 1004 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1005 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1006 | + <span class="c2a-name"> | |
| 1007 | + Découvrir KOS | |
| 1008 | + </span> | |
| 1009 | + </a> | |
| 1010 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1011 | + KOS - 3 ½ - Salle de bain | |
| 1012 | + </h3> | |
| 1013 | + </template> | |
| 1014 | + </carousel-gallery-slide> | |
| 1015 | + <carousel-gallery-slide> | |
| 1016 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/5025-1800/kos-3-chambre-a-coucher.webp" | |
| 1017 | + alt="KOS - 3 ½ - Chambre à coucher "> | |
| 1018 | + <template #description> | |
| 1019 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1020 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1021 | + <span class="c2a-name"> | |
| 1022 | + Découvrir KOS | |
| 1023 | + </span> | |
| 1024 | + </a> | |
| 1025 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1026 | + KOS - 3 ½ - Chambre à coucher | |
| 1027 | + </h3> | |
| 1028 | + </template> | |
| 1029 | + </carousel-gallery-slide> | |
| 1030 | + <carousel-gallery-slide> | |
| 1031 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8071-1800/kos-phase-5-solarium.webp" | |
| 1032 | + alt="KOS phase 5 - Solarium"> | |
| 1033 | + <template #description> | |
| 1034 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1035 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1036 | + <span class="c2a-name"> | |
| 1037 | + Découvrir KOS | |
| 1038 | + </span> | |
| 1039 | + </a> | |
| 1040 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1041 | + KOS phase 5 - Solarium | |
| 1042 | + </h3> | |
| 1043 | + </template> | |
| 1044 | + </carousel-gallery-slide> | |
| 1045 | + <carousel-gallery-slide> | |
| 1046 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8072-1800/kos-phase-5-solarium.webp" | |
| 1047 | + alt="KOS phase 5 - Solarium"> | |
| 1048 | + <template #description> | |
| 1049 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1050 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1051 | + <span class="c2a-name"> | |
| 1052 | + Découvrir KOS | |
| 1053 | + </span> | |
| 1054 | + </a> | |
| 1055 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1056 | + KOS phase 5 - Solarium | |
| 1057 | + </h3> | |
| 1058 | + </template> | |
| 1059 | + </carousel-gallery-slide> | |
| 1060 | + <carousel-gallery-slide> | |
| 1061 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/8073-1800/kos-phase-5-solarium.webp" | |
| 1062 | + alt="KOS phase 5 - Solarium"> | |
| 1063 | + <template #description> | |
| 1064 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1065 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1066 | + <span class="c2a-name"> | |
| 1067 | + Découvrir KOS | |
| 1068 | + </span> | |
| 1069 | + </a> | |
| 1070 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1071 | + KOS phase 5 - Solarium | |
| 1072 | + </h3> | |
| 1073 | + </template> | |
| 1074 | + </carousel-gallery-slide> | |
| 1075 | + <carousel-gallery-slide> | |
| 1076 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/5019-1800/kos-hall-dentree.webp" | |
| 1077 | + alt="KOS - Hall d'entrée"> | |
| 1078 | + <template #description> | |
| 1079 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1080 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1081 | + <span class="c2a-name"> | |
| 1082 | + Découvrir KOS | |
| 1083 | + </span> | |
| 1084 | + </a> | |
| 1085 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1086 | + KOS - Hall d'entrée | |
| 1087 | + </h3> | |
| 1088 | + </template> | |
| 1089 | + </carousel-gallery-slide> | |
| 1090 | + <carousel-gallery-slide> | |
| 1091 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/5026-1800/kos-phase-1-solarium.webp" | |
| 1092 | + alt="KOS phase 1 - Solarium"> | |
| 1093 | + <template #description> | |
| 1094 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1095 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1096 | + <span class="c2a-name"> | |
| 1097 | + Découvrir KOS | |
| 1098 | + </span> | |
| 1099 | + </a> | |
| 1100 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1101 | + KOS phase 1 - Solarium | |
| 1102 | + </h3> | |
| 1103 | + </template> | |
| 1104 | + </carousel-gallery-slide> | |
| 1105 | + <carousel-gallery-slide> | |
| 1106 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/5027-1800/kos-phase-1-solarium.webp" | |
| 1107 | + alt="KOS phase 1 - Solarium"> | |
| 1108 | + <template #description> | |
| 1109 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1110 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1111 | + <span class="c2a-name"> | |
| 1112 | + Découvrir KOS | |
| 1113 | + </span> | |
| 1114 | + </a> | |
| 1115 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1116 | + KOS phase 1 - Solarium | |
| 1117 | + </h3> | |
| 1118 | + </template> | |
| 1119 | + </carousel-gallery-slide> | |
| 1120 | + <carousel-gallery-slide> | |
| 1121 | + <img width="1800" height="1197" src="https://logisco.com/static/vb/5028-1800/kos-phase-2-solarium.webp" | |
| 1122 | + alt="KOS phase 2 - Solarium"> | |
| 1123 | + <template #description> | |
| 1124 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1125 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1126 | + <span class="c2a-name"> | |
| 1127 | + Découvrir KOS | |
| 1128 | + </span> | |
| 1129 | + </a> | |
| 1130 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1131 | + KOS phase 2 - Solarium | |
| 1132 | + </h3> | |
| 1133 | + </template> | |
| 1134 | + </carousel-gallery-slide> | |
| 1135 | + <carousel-gallery-slide> | |
| 1136 | + <img width="1800" height="1197" src="https://logisco.com/static/vb/5031-1800/kos-phase-1-terrasse-sur-le-toit.webp" | |
| 1137 | + alt="KOS phase 1 - Terrasse sur le toit"> | |
| 1138 | + <template #description> | |
| 1139 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1140 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1141 | + <span class="c2a-name"> | |
| 1142 | + Découvrir KOS | |
| 1143 | + </span> | |
| 1144 | + </a> | |
| 1145 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1146 | + KOS phase 1 - Terrasse sur le toit | |
| 1147 | + </h3> | |
| 1148 | + </template> | |
| 1149 | + </carousel-gallery-slide> | |
| 1150 | + <carousel-gallery-slide> | |
| 1151 | + <img width="1800" height="1197" src="https://logisco.com/static/vb/5032-1800/kos-phase-1-terrasse-sur-le-toit.webp" | |
| 1152 | + alt="KOS phase 1 - Terrasse sur le toit"> | |
| 1153 | + <template #description> | |
| 1154 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1155 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1156 | + <span class="c2a-name"> | |
| 1157 | + Découvrir KOS | |
| 1158 | + </span> | |
| 1159 | + </a> | |
| 1160 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1161 | + KOS phase 1 - Terrasse sur le toit | |
| 1162 | + </h3> | |
| 1163 | + </template> | |
| 1164 | + </carousel-gallery-slide> | |
| 1165 | + <carousel-gallery-slide> | |
| 1166 | + <img width="1800" height="1197" src="https://logisco.com/static/vb/5029-1800/kos-phase-2-solarium.webp" | |
| 1167 | + alt="KOS phase 2 - Solarium"> | |
| 1168 | + <template #description> | |
| 1169 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1170 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1171 | + <span class="c2a-name"> | |
| 1172 | + Découvrir KOS | |
| 1173 | + </span> | |
| 1174 | + </a> | |
| 1175 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1176 | + KOS phase 2 - Solarium | |
| 1177 | + </h3> | |
| 1178 | + </template> | |
| 1179 | + </carousel-gallery-slide> | |
| 1180 | + <carousel-gallery-slide> | |
| 1181 | + <img width="1800" height="1197" src="https://logisco.com/static/vb/5030-1800/kos-phase-2-solarium.webp" | |
| 1182 | + alt="KOS phase 2 - Solarium"> | |
| 1183 | + <template #description> | |
| 1184 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1185 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1186 | + <span class="c2a-name"> | |
| 1187 | + Découvrir KOS | |
| 1188 | + </span> | |
| 1189 | + </a> | |
| 1190 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1191 | + KOS phase 2 - Solarium | |
| 1192 | + </h3> | |
| 1193 | + </template> | |
| 1194 | + </carousel-gallery-slide> | |
| 1195 | + <carousel-gallery-slide> | |
| 1196 | + <img width="1800" height="1197" src="https://logisco.com/static/vb/5033-1800/kos-phase-1-terrasse-sur-le-toit.webp" | |
| 1197 | + alt="KOS phase 1 - Terrasse sur le toit"> | |
| 1198 | + <template #description> | |
| 1199 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1200 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1201 | + <span class="c2a-name"> | |
| 1202 | + Découvrir KOS | |
| 1203 | + </span> | |
| 1204 | + </a> | |
| 1205 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1206 | + KOS phase 1 - Terrasse sur le toit | |
| 1207 | + </h3> | |
| 1208 | + </template> | |
| 1209 | + </carousel-gallery-slide> | |
| 1210 | + <carousel-gallery-slide> | |
| 1211 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6350-1800/kos-phase-3-espace-agora.webp" | |
| 1212 | + alt="KOS phase 3- Espace agora"> | |
| 1213 | + <template #description> | |
| 1214 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1215 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1216 | + <span class="c2a-name"> | |
| 1217 | + Découvrir KOS | |
| 1218 | + </span> | |
| 1219 | + </a> | |
| 1220 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1221 | + KOS phase 3- Espace agora | |
| 1222 | + </h3> | |
| 1223 | + </template> | |
| 1224 | + </carousel-gallery-slide> | |
| 1225 | + <carousel-gallery-slide> | |
| 1226 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6351-1800/kos-phase-3-salle-dentrainement.webp" | |
| 1227 | + alt="KOS phase 3 - Salle d'entrainement"> | |
| 1228 | + <template #description> | |
| 1229 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1230 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1231 | + <span class="c2a-name"> | |
| 1232 | + Découvrir KOS | |
| 1233 | + </span> | |
| 1234 | + </a> | |
| 1235 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1236 | + KOS phase 3 - Salle d'entrainement | |
| 1237 | + </h3> | |
| 1238 | + </template> | |
| 1239 | + </carousel-gallery-slide> | |
| 1240 | + <carousel-gallery-slide> | |
| 1241 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7092-1800/kos-piscine-exterieure-chauffee.webp" | |
| 1242 | + alt="KOS - Piscine extérieure chauffée"> | |
| 1243 | + <template #description> | |
| 1244 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1245 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1246 | + <span class="c2a-name"> | |
| 1247 | + Découvrir KOS | |
| 1248 | + </span> | |
| 1249 | + </a> | |
| 1250 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1251 | + KOS - Piscine extérieure chauffée | |
| 1252 | + </h3> | |
| 1253 | + </template> | |
| 1254 | + </carousel-gallery-slide> | |
| 1255 | + <carousel-gallery-slide> | |
| 1256 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7093-1800/kos-phase-4-salle-de-divertissement.webp" | |
| 1257 | + alt="KOS phase 4 - Salle de divertissement "> | |
| 1258 | + <template #description> | |
| 1259 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1260 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1261 | + <span class="c2a-name"> | |
| 1262 | + Découvrir KOS | |
| 1263 | + </span> | |
| 1264 | + </a> | |
| 1265 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1266 | + KOS phase 4 - Salle de divertissement | |
| 1267 | + </h3> | |
| 1268 | + </template> | |
| 1269 | + </carousel-gallery-slide> | |
| 1270 | + <carousel-gallery-slide> | |
| 1271 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7173-1800/kos-phase-4-espace-teletravail.webp" | |
| 1272 | + alt="KOS phase 4 - Espace télétravail"> | |
| 1273 | + <template #description> | |
| 1274 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1275 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1276 | + <span class="c2a-name"> | |
| 1277 | + Découvrir KOS | |
| 1278 | + </span> | |
| 1279 | + </a> | |
| 1280 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1281 | + KOS phase 4 - Espace télétravail | |
| 1282 | + </h3> | |
| 1283 | + </template> | |
| 1284 | + </carousel-gallery-slide> | |
| 1285 | + <carousel-gallery-slide> | |
| 1286 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7172-1800/kos-phase-2-terrasse-sur-le-toit.webp" | |
| 1287 | + alt="KOS Phase 2 - Terrasse sur le toit"> | |
| 1288 | + <template #description> | |
| 1289 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1290 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1291 | + <span class="c2a-name"> | |
| 1292 | + Découvrir KOS | |
| 1293 | + </span> | |
| 1294 | + </a> | |
| 1295 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1296 | + KOS Phase 2 - Terrasse sur le toit | |
| 1297 | + </h3> | |
| 1298 | + </template> | |
| 1299 | + </carousel-gallery-slide> | |
| 1300 | + <carousel-gallery-slide> | |
| 1301 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7174-1800/kos-potager-urbain.webp" | |
| 1302 | + alt="KOS - Potager urbain"> | |
| 1303 | + <template #description> | |
| 1304 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1305 | + href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos"> | |
| 1306 | + <span class="c2a-name"> | |
| 1307 | + Découvrir KOS | |
| 1308 | + </span> | |
| 1309 | + </a> | |
| 1310 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1311 | + KOS - Potager urbain | |
| 1312 | + </h3> | |
| 1313 | + </template> | |
| 1314 | + </carousel-gallery-slide> | |
| 1315 | + </template> | |
| 1316 | + </carousel-gallery> | |
| 1317 | +</div> | |
| 1318 | + | |
| 1319 | + | |
| 1320 | +<div id="projectType" data-project-type="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83"></div> | |
| 1321 | +<div id="unitFull" data-unit-dispo="01 oct. 2026"></div> | |
| 1322 | + <section | |
| 1323 | + class="section section-background gap--1x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-bottom--1x padding-left--2x padding-right--2x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x id_d6ab60b6e3815869e4fdde2fb0d50af7a4d9d4ea" | |
| 1324 | + > | |
| 1325 | + | |
| 1326 | +<div class="id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e layout-full padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1327 | + <div class="blockText blockText-style--small " > | |
| 1328 | + <h2 class="blockText-title">On n’est jamais bien loin pour vous accompagner</h2> | |
| 1329 | + </div> | |
| 1330 | + | |
| 1331 | + </div> | |
| 1332 | + | |
| 1333 | + | |
| 1334 | + | |
| 1335 | +<div class="id_4f9de2cf2b5c2fe600683f36917305105bb82785 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_5x layout-rowGap--0x layout-rowGapMobile--2x"> | |
| 1336 | + | |
| 1337 | + <a class="blockText blockText--link " href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" > | |
| 1338 | + <div class="blockText-container"> | |
| 1339 | + <h3 class="blockText-subtitle">Centre d’aide</h3> | |
| 1340 | + <p class="blockText-description">Trouvez rapidement les informations dont vous avez besoin grâce à notre foire aux questions sur le résidentiel, le commercial et les emplois. </p> | |
| 1341 | + </div> | |
| 1342 | + <i class="blockText-icon icon-cms-arrow-right"></i> | |
| 1343 | +</a> | |
| 1344 | + <a class="blockText blockText--link " href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" > | |
| 1345 | + <div class="blockText-container"> | |
| 1346 | + <h3 class="blockText-subtitle">Nouvel arrivant</h3> | |
| 1347 | + <p class="blockText-description">Vous prévoyez vous installer dans la région de Québec? On offre un service d’accompagnement entièrement gratuit pour vous aider à trouver votre futur chez-vous, et ce, depuis votre pays d’origine.</p> | |
| 1348 | + </div> | |
| 1349 | + <i class="blockText-icon icon-cms-arrow-right"></i> | |
| 1350 | +</a> | |
| 1351 | + | |
| 1352 | + </div> | |
| 1353 | + | |
| 1354 | + </section> | |
| 1355 | + | |
| 1356 | + <section | |
| 1357 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-left--1x padding-right--1x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundColor--lightblue id_e9d7ad3426ce6ac21fa5430b9012695c42bd1dbe" | |
| 1358 | + > | |
| 1359 | + | |
| 1360 | + | |
| 1361 | +<div class="id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f layout-columns modifier-h--start padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_5x layout-rowGap--2x"> | |
| 1362 | + <div class="blockText blockText-style--small " > | |
| 1363 | + <h2 class="blockText-surtitle">Conseils sur l’immobilier </h2> | |
| 1364 | + <p class="blockText-title">On se veut utile </p> | |
| 1365 | + <span class="c2aBlock"> | |
| 1366 | + <a | |
| 1367 | + data-gtm-event="clickButton" data-gtm-id="conseils-en-immobilier-residentiel" | |
| 1368 | + | |
| 1369 | + href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="c2a c2a-text c2a--tertiary" | |
| 1370 | + aria-label="Conseils en immobilier résidentiel" | |
| 1371 | +> | |
| 1372 | + <span class="c2a-name"> | |
| 1373 | + Conseils en immobilier résidentiel | |
| 1374 | + </span> | |
| 1375 | + <i class="icon-cms-arrow-right"></i> | |
| 1376 | + </a> | |
| 1377 | + | |
| 1378 | + </span> | |
| 1379 | + </div> | |
| 1380 | + | |
| 1381 | + | |
| 1382 | + <div class="layout-carousel swiper js-carousel layout-carousel--mobile id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columns-desktop" | |
| 1383 | + data-breakpoint="750" | |
| 1384 | + data-speed="500" | |
| 1385 | + data-autoplay="false" | |
| 1386 | + data-delay="4000" | |
| 1387 | + data-direction="" | |
| 1388 | + | |
| 1389 | + data-slides-per-view-desktop="1" | |
| 1390 | + data-slides-per-view-mobile="1" | |
| 1391 | + | |
| 1392 | + data-space-between-slides="16" | |
| 1393 | + data-space-between-slides-mobile="8" | |
| 1394 | + | |
| 1395 | + data-effect="slide"> | |
| 1396 | + <div class="swiper-wrapper carousel-wrapper js-carouselWrapper layout-columnsGap--0_25x layout-rowGap--0x"> | |
| 1397 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/2025-on-a-vu-grand-chez-logisco" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="En 2025, on a vu grand chez LOGISCO"> | |
| 1398 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1399 | + <img class="cardItems-picture" width="475" height="267" src="https://logisco.com/static/vb/8181-475/2025-une-annee-de-plus-a-repousser-les-limites-logisco.webp" alt="2025 : Une année de plus à repousser les limites | LOGISCO"> | |
| 1400 | + </div> | |
| 1401 | + <span class="article-type">Nouvelles</span> | |
| 1402 | + <span class="article-date">17 décembre 2025 - 1 min. de lecture</span> | |
| 1403 | + <h3 class="article-title">En 2025, on a vu grand chez LOGISCO</h3> | |
| 1404 | + <span class="article-text">Retour sur 2025 : une année de réalisations, de projets livrés et d’innovations qui façonnent notre vision pour l’avenir.</span> | |
| 1405 | + </a> | |
| 1406 | +</div> | |
| 1407 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/et-si-la-tranquillite-desprit-passait-par-la-location" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="Et si la tranquillité d’esprit passait par la location?"> | |
| 1408 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1409 | + <img class="cardItems-picture" width="475" height="317" src="https://logisco.com/static/vb/7704-475/vivre-librement-grace-a-la-location-logisco.webp" alt="Vivre librement grâce à la location | LOGISCO"> | |
| 1410 | + </div> | |
| 1411 | + <span class="article-type">Immobilier résidentiel</span> | |
| 1412 | + <span class="article-date">19 juin 2025 - 3 min. de lecture</span> | |
| 1413 | + <h3 class="article-title">Et si la tranquillité d’esprit passait par la location?</h3> | |
| 1414 | + <span class="article-text">Et si la liberté passait par la location? Marcel partage son choix de vie au District GC.</span> | |
| 1415 | + </a> | |
| 1416 | +</div> | |
| 1417 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/experience-logisco" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="L’Expérience LOGISCO : plus qu’une simple transaction"> | |
| 1418 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1419 | + <img class="cardItems-picture" width="475" height="317" src="https://logisco.com/static/vb/7445-475/lexperience-logisco-plus-quune-simple-transaction-logisco.webp" alt="L’Expérience LOGISCO : plus qu’une simple transaction | LOGISCO"> | |
| 1420 | + </div> | |
| 1421 | + <span class="article-type">Immobilier résidentiel</span> | |
| 1422 | + <span class="article-date">30 janvier 2025 - 3 min. de lecture</span> | |
| 1423 | + <h3 class="article-title">L’Expérience LOGISCO : plus qu’une simple transaction</h3> | |
| 1424 | + <span class="article-text">Huit clients sur dix se disent satisfaits de nos services, et ce taux est en constante progression grâce à nos efforts continus. Signer un bail ou collaborer avec LOGISCO, c’est avant tout un lien humain, guidé par nos valeurs d’entreprise. Découvrez comment!</span> | |
| 1425 | + </a> | |
| 1426 | +</div> | |
| 1427 | + </div> | |
| 1428 | + <div class="carousel-nav carousel-navDots--center "> | |
| 1429 | + <div class="carousel-dots swiper-pagination js-carouselPagination carousel-dots--mobile"></div> | |
| 1430 | + </div> | |
| 1431 | + </div> | |
| 1432 | + | |
| 1433 | + | |
| 1434 | + </div> | |
| 1435 | + | |
| 1436 | + </section> | |
| 1437 | + | |
| 1438 | + | |
| 1439 | + | |
| 1440 | + | |
| 1441 | + </main> | |
| 1442 | + | |
| 1443 | + <footer class="footer" data-gtm-creative-slot="footer"> | |
| 1444 | + <section | |
| 1445 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1_5x padding-left--0x padding-right--0x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundEffect--roundedCornersTop id_4ab8b59e9ace372edff7af94b2f0ecfe8af887d9" | |
| 1446 | + style="background-color: rgba(19, 24, 52, 1)" > | |
| 1447 | + | |
| 1448 | + | |
| 1449 | +<div class="id_eca944e94897a9b2d2823841936b19315bf3c414 layout-columns modifier-h--start padding-top--0x padding-bottom--1x padding-left--1x padding-right--1x paddingMobile-top--0x paddingMobile-bottom--2x paddingMobile-left--0x paddingMobile-right--0x layout-rowGap--0x layout-columnsGap--0x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1450 | + | |
| 1451 | +<div class="id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1452 | + <single-expand | |
| 1453 | + class="" | |
| 1454 | + :mobile-breakpoint="750" | |
| 1455 | + :mobile-expanded="true" | |
| 1456 | + :expanded="false" | |
| 1457 | + is-link > | |
| 1458 | + <template #label> | |
| 1459 | + <span class="item item--bolder item--white"> | |
| 1460 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" > | |
| 1461 | + <p class="expand-labelName">À propos</p> | |
| 1462 | + </a> | |
| 1463 | + </span> | |
| 1464 | + </template> | |
| 1465 | + <template #content> | |
| 1466 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1467 | + | |
| 1468 | + <span class="item item--white70"> | |
| 1469 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" class="item-link " > | |
| 1470 | + Qui est LOGISCO | |
| 1471 | + </a> | |
| 1472 | + </span> | |
| 1473 | + | |
| 1474 | + | |
| 1475 | + <span class="item item--white70"> | |
| 1476 | + <a href="https://logisco.com/fr/emplois" data-gtm-page-type="Page" data-gtm-page-name="Emplois marque-employeur" class="item-link " > | |
| 1477 | + Emplois | |
| 1478 | + </a> | |
| 1479 | + </span> | |
| 1480 | + | |
| 1481 | + | |
| 1482 | + <span class="item item--white70"> | |
| 1483 | + <a href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="item-link " > | |
| 1484 | + Blogue | |
| 1485 | + </a> | |
| 1486 | + </span> | |
| 1487 | + | |
| 1488 | + | |
| 1489 | + <span class="item item--white70"> | |
| 1490 | + <a href="https://logisco.com/fr/dons-et-commandites" data-gtm-page-type="Page" data-gtm-page-name="Dons et commandites" class="item-link " > | |
| 1491 | + Dons et commandites | |
| 1492 | + </a> | |
| 1493 | + </span> | |
| 1494 | + | |
| 1495 | + | |
| 1496 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1497 | + | |
| 1498 | + </template> | |
| 1499 | +</single-expand> | |
| 1500 | + | |
| 1501 | + <single-expand | |
| 1502 | + class="" | |
| 1503 | + :mobile-breakpoint="750" | |
| 1504 | + :mobile-expanded="true" | |
| 1505 | + :expanded="false" | |
| 1506 | + is-link > | |
| 1507 | + <template #label> | |
| 1508 | + <span class="item item--bolder item--white"> | |
| 1509 | + <a href="https://logisco.com/fr/futurs-projets-immobiliers" data-gtm-page-type="Page" data-gtm-page-name="Futurs projets immobiliers" > | |
| 1510 | + <p class="expand-labelName">Futurs projets immobiliers</p> | |
| 1511 | + </a> | |
| 1512 | + </span> | |
| 1513 | + </template> | |
| 1514 | + <template #content> | |
| 1515 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1516 | + | |
| 1517 | + <span class="item item--white70"> | |
| 1518 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/axel" data-gtm-page-type="Projet" data-gtm-page-name="Axel" data-gtm-project-id="1738" data-gtm-tag="Location à venir" class="item-link " > | |
| 1519 | + Axel | |
| 1520 | + </a> | |
| 1521 | + </span> | |
| 1522 | + | |
| 1523 | + | |
| 1524 | + <span class="item item--white70"> | |
| 1525 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/tria" data-gtm-page-type="Projet" data-gtm-page-name="Tria" data-gtm-project-id="1736" data-gtm-average-price="1857.5" data-gtm-listable-unit-count="28" data-gtm-tag="Projet neuf" class="item-link " > | |
| 1526 | + Tria | |
| 1527 | + </a> | |
| 1528 | + </span> | |
| 1529 | + | |
| 1530 | + | |
| 1531 | + | |
| 1532 | + </template> | |
| 1533 | +</single-expand> | |
| 1534 | + | |
| 1535 | + </div> | |
| 1536 | + | |
| 1537 | + <single-expand | |
| 1538 | + class="" | |
| 1539 | + :mobile-breakpoint="750" | |
| 1540 | + :mobile-expanded="true" | |
| 1541 | + :expanded="false" | |
| 1542 | + is-link > | |
| 1543 | + <template #label> | |
| 1544 | + <span class="item item--bolder item--white"> | |
| 1545 | + <a href="https://logisco.com/fr/appartements-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Appartements à louer" > | |
| 1546 | + <p class="expand-labelName">Appartements</p> | |
| 1547 | + </a> | |
| 1548 | + </span> | |
| 1549 | + </template> | |
| 1550 | + <template #content> | |
| 1551 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1552 | + | |
| 1553 | + <span class="item item--white70"> | |
| 1554 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1555 | + Québec | |
| 1556 | + </a> | |
| 1557 | + </span> | |
| 1558 | + | |
| 1559 | + | |
| 1560 | + <span class="item item--white70"> | |
| 1561 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1562 | + Beauport | |
| 1563 | + </a> | |
| 1564 | + </span> | |
| 1565 | + | |
| 1566 | + | |
| 1567 | + <span class="item item--white70"> | |
| 1568 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/charlesbourg" data-gtm-page-type="Quartier" data-gtm-page-name="Charlesbourg" class="item-link " > | |
| 1569 | + Charlesbourg | |
| 1570 | + </a> | |
| 1571 | + </span> | |
| 1572 | + | |
| 1573 | + | |
| 1574 | + <span class="item item--white70"> | |
| 1575 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/duberger-les-saules" data-gtm-page-type="Quartier" data-gtm-page-name="Duberger-Les-Saules" class="item-link " > | |
| 1576 | + Duberger-Les Saules | |
| 1577 | + </a> | |
| 1578 | + </span> | |
| 1579 | + | |
| 1580 | + | |
| 1581 | + <span class="item item--white70"> | |
| 1582 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville" data-gtm-page-type="Quartier" data-gtm-page-name="Loretteville" class="item-link " > | |
| 1583 | + Loretteville | |
| 1584 | + </a> | |
| 1585 | + </span> | |
| 1586 | + | |
| 1587 | + | |
| 1588 | + <span class="item item--white70"> | |
| 1589 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf" data-gtm-page-type="Quartier" data-gtm-page-name="Neufchâtel-Est-Lebourgneuf" class="item-link " > | |
| 1590 | + Neufchâtel-Est-Lebourgneuf | |
| 1591 | + </a> | |
| 1592 | + </span> | |
| 1593 | + | |
| 1594 | + | |
| 1595 | + <span class="item item--white70"> | |
| 1596 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1597 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1598 | + </a> | |
| 1599 | + </span> | |
| 1600 | + | |
| 1601 | + | |
| 1602 | + <span class="item item--white70"> | |
| 1603 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/saint-emile" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Émile" class="item-link " > | |
| 1604 | + Saint-Émile | |
| 1605 | + </a> | |
| 1606 | + </span> | |
| 1607 | + | |
| 1608 | + | |
| 1609 | + <span class="item item--white70"> | |
| 1610 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/val-belair" data-gtm-page-type="Quartier" data-gtm-page-name="Val-Bélair" class="item-link " > | |
| 1611 | + Val-Bélair | |
| 1612 | + </a> | |
| 1613 | + </span> | |
| 1614 | + | |
| 1615 | + | |
| 1616 | + <span class="item item--white70"> | |
| 1617 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/vanier" data-gtm-page-type="Quartier" data-gtm-page-name="Vanier" class="item-link " > | |
| 1618 | + Vanier | |
| 1619 | + </a> | |
| 1620 | + </span> | |
| 1621 | + | |
| 1622 | + | |
| 1623 | + <span class="item item--white70"> | |
| 1624 | + <a href="https://logisco.com/fr/appartements-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1625 | + Lévis | |
| 1626 | + </a> | |
| 1627 | + </span> | |
| 1628 | + | |
| 1629 | + | |
| 1630 | + <span class="item item--white70"> | |
| 1631 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1632 | + Desjardins | |
| 1633 | + </a> | |
| 1634 | + </span> | |
| 1635 | + | |
| 1636 | + | |
| 1637 | + <span class="item item--white70"> | |
| 1638 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-david" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-David" class="item-link " > | |
| 1639 | + Saint-David | |
| 1640 | + </a> | |
| 1641 | + </span> | |
| 1642 | + | |
| 1643 | + | |
| 1644 | + <span class="item item--white70"> | |
| 1645 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-nicolas" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Nicolas" class="item-link " > | |
| 1646 | + Saint-Nicolas | |
| 1647 | + </a> | |
| 1648 | + </span> | |
| 1649 | + | |
| 1650 | + | |
| 1651 | + <span class="item item--white70"> | |
| 1652 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1653 | + Saint-Romuald | |
| 1654 | + </a> | |
| 1655 | + </span> | |
| 1656 | + | |
| 1657 | + | |
| 1658 | + <span class="item item--white70"> | |
| 1659 | + <a href="https://logisco.com/fr/appartements-a-louer/donnacona" data-gtm-page-type="Ville" data-gtm-page-name="Donnacona" class="item-link " > | |
| 1660 | + Donnacona | |
| 1661 | + </a> | |
| 1662 | + </span> | |
| 1663 | + | |
| 1664 | + | |
| 1665 | + <span class="item item--white70"> | |
| 1666 | + <a href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures" data-gtm-page-type="Ville" data-gtm-page-name="Saint-Augustin-de-Desmaures" class="item-link " > | |
| 1667 | + Saint-Augustin-De-Desmaures | |
| 1668 | + </a> | |
| 1669 | + </span> | |
| 1670 | + | |
| 1671 | + | |
| 1672 | + </template> | |
| 1673 | +</single-expand> | |
| 1674 | + | |
| 1675 | + | |
| 1676 | +<div class="id_750d3332f0d42f874d235808f8c66a7d1d9c6129 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1677 | + <single-expand | |
| 1678 | + class="" | |
| 1679 | + :mobile-breakpoint="750" | |
| 1680 | + :mobile-expanded="true" | |
| 1681 | + :expanded="false" | |
| 1682 | + is-link > | |
| 1683 | + <template #label> | |
| 1684 | + <span class="item item--bolder item--white"> | |
| 1685 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Espaces commerciaux à louer" > | |
| 1686 | + <p class="expand-labelName">Espaces commerciaux</p> | |
| 1687 | + </a> | |
| 1688 | + </span> | |
| 1689 | + </template> | |
| 1690 | + <template #content> | |
| 1691 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1692 | + | |
| 1693 | + <span class="item item--white70"> | |
| 1694 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1695 | + Québec | |
| 1696 | + </a> | |
| 1697 | + </span> | |
| 1698 | + | |
| 1699 | + | |
| 1700 | + <span class="item item--white70"> | |
| 1701 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1702 | + Beauport | |
| 1703 | + </a> | |
| 1704 | + </span> | |
| 1705 | + | |
| 1706 | + | |
| 1707 | + <span class="item item--white70"> | |
| 1708 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1709 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1710 | + </a> | |
| 1711 | + </span> | |
| 1712 | + | |
| 1713 | + | |
| 1714 | + <span class="item item--white70"> | |
| 1715 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1716 | + Lévis | |
| 1717 | + </a> | |
| 1718 | + </span> | |
| 1719 | + | |
| 1720 | + | |
| 1721 | + <span class="item item--white70"> | |
| 1722 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/charny" data-gtm-page-type="Quartier" data-gtm-page-name="Charny" class="item-link " > | |
| 1723 | + Charny | |
| 1724 | + </a> | |
| 1725 | + </span> | |
| 1726 | + | |
| 1727 | + | |
| 1728 | + <span class="item item--white70"> | |
| 1729 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1730 | + Desjardins | |
| 1731 | + </a> | |
| 1732 | + </span> | |
| 1733 | + | |
| 1734 | + | |
| 1735 | + <span class="item item--white70"> | |
| 1736 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-jean-chrysostome" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Jean-Chrysostome" class="item-link " > | |
| 1737 | + Saint-Jean-Chrysostome | |
| 1738 | + </a> | |
| 1739 | + </span> | |
| 1740 | + | |
| 1741 | + | |
| 1742 | + <span class="item item--white70"> | |
| 1743 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1744 | + Saint-Romuald | |
| 1745 | + </a> | |
| 1746 | + </span> | |
| 1747 | + | |
| 1748 | + | |
| 1749 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1750 | + | |
| 1751 | + </template> | |
| 1752 | +</single-expand> | |
| 1753 | + | |
| 1754 | + | |
| 1755 | + <single-expand | |
| 1756 | + class="" | |
| 1757 | + :mobile-breakpoint="750" | |
| 1758 | + :mobile-expanded="true" | |
| 1759 | + :expanded="false" | |
| 1760 | + is-link > | |
| 1761 | + <template #label> | |
| 1762 | + <span class="item item--bolder item--white"> | |
| 1763 | + <a href="https://logisco.com/fr/hotels" data-gtm-page-type="Page" data-gtm-page-name="Hôtels" > | |
| 1764 | + <p class="expand-labelName">Hôtels</p> | |
| 1765 | + </a> | |
| 1766 | + </span> | |
| 1767 | + </template> | |
| 1768 | + <template #content> | |
| 1769 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1770 | + | |
| 1771 | + <span class="item item--white70"> | |
| 1772 | + <a href="https://www.hilton.com/fr/hotels/yqbwhht-home2-suites-quebec-city/" class="item-link " > | |
| 1773 | + Home2 Suites par Hilton Québec | |
| 1774 | + </a> | |
| 1775 | + </span> | |
| 1776 | + | |
| 1777 | + | |
| 1778 | + <span class="item item--white70"> | |
| 1779 | + <a href="https://www.hilton.com/fr/hotels/yqbbphx-hampton-suites-quebec-city-beauport/" class="item-link " > | |
| 1780 | + Hampton Inn & Suites Québec/Beauport | |
| 1781 | + </a> | |
| 1782 | + </span> | |
| 1783 | + | |
| 1784 | + | |
| 1785 | + <span class="item item--white70"> | |
| 1786 | + <a href="https://www.hilton.com/fr/hotels/yqbsrhx-hampton-suites-quebec-city-saint-romuald/" class="item-link " > | |
| 1787 | + Hampton Inn & Suites Québec/Lévis | |
| 1788 | + </a> | |
| 1789 | + </span> | |
| 1790 | + | |
| 1791 | + | |
| 1792 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1793 | + | |
| 1794 | + </template> | |
| 1795 | +</single-expand> | |
| 1796 | + | |
| 1797 | + </div> | |
| 1798 | + | |
| 1799 | + | |
| 1800 | +<div class="id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 blockGroup modifier-v--center modifier-vm--left padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1801 | + <span class="item item--bolder item--white"> | |
| 1802 | + <span class="item-link " > | |
| 1803 | + Téléphone sans frais | |
| 1804 | + </span> | |
| 1805 | + </span> | |
| 1806 | + | |
| 1807 | + | |
| 1808 | + <span class="item item--bigger item--white desktopOnly"> | |
| 1809 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1810 | + + 1-833-564-4726 | |
| 1811 | + </a> | |
| 1812 | + </span> | |
| 1813 | + <span class="item item--bigger item--white mobileOnly"> | |
| 1814 | + <a href="tel:+18335644726" class="item-link " data-gtm-event="appelFooter" > | |
| 1815 | + + 1-833-564-4726 | |
| 1816 | + </a> | |
| 1817 | + </span> | |
| 1818 | + | |
| 1819 | + | |
| 1820 | + <div class="items-row items-row--center "> | |
| 1821 | + <modal-button class-names="js-open-modal c2a c2a-hours " aria-label="Heures d'ouverture" modal-id="99e74ab5-6702-4826-8d7d-d6963262fe2d" data-gtm-event="clickButton" data-gtm-id="heures-douverture"> | |
| 1822 | + <div class="c2a-hoursIcon"> | |
| 1823 | + <span class="c2a-hoursIconCenter"></span> | |
| 1824 | + </div> | |
| 1825 | + Heures d’ouverture | |
| 1826 | + </modal-button> | |
| 1827 | + | |
| 1828 | + | |
| 1829 | + </div> | |
| 1830 | + | |
| 1831 | + <single-expand | |
| 1832 | + class="" | |
| 1833 | + :mobile-breakpoint="750" | |
| 1834 | + :mobile-expanded="true" | |
| 1835 | + :expanded="false" | |
| 1836 | + > | |
| 1837 | + <template #label> | |
| 1838 | + <span class="item item--bolder item--white"> | |
| 1839 | + <div > | |
| 1840 | + <p class="expand-labelName">Support</p> | |
| 1841 | + </div> | |
| 1842 | + </span> | |
| 1843 | + </template> | |
| 1844 | + <template #content> | |
| 1845 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1846 | + | |
| 1847 | + <span class="item item--white70"> | |
| 1848 | + <a href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="item-link " > | |
| 1849 | + Centre d'aide | |
| 1850 | + </a> | |
| 1851 | + </span> | |
| 1852 | + | |
| 1853 | + | |
| 1854 | + <span class="item item--white70"> | |
| 1855 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1856 | + Nous joindre | |
| 1857 | + </a> | |
| 1858 | + </span> | |
| 1859 | + | |
| 1860 | + | |
| 1861 | + | |
| 1862 | + <span class="item item--white70"> | |
| 1863 | + <a href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" class="item-link " > | |
| 1864 | + Nouvel arrivant | |
| 1865 | + </a> | |
| 1866 | + </span> | |
| 1867 | + | |
| 1868 | + | |
| 1869 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1870 | + | |
| 1871 | + </template> | |
| 1872 | +</single-expand> | |
| 1873 | + | |
| 1874 | + </div> | |
| 1875 | + | |
| 1876 | + </div> | |
| 1877 | + | |
| 1878 | + | |
| 1879 | +<div class="id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 layout-full padding-top--0x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile-left--0x layout-rowGap--0x"> | |
| 1880 | + <a | |
| 1881 | + data-gtm-event="clickButton" data-gtm-id="donnez-votre-avis-pour-gagner-100" | |
| 1882 | + target=_blank | |
| 1883 | + href="https://logisco.qualtrics.com/jfe/form/SV_2c2Qx298zKfhg34" class="c2a c2a-text c2a--secondary c2a-style--secondary" | |
| 1884 | + aria-label="Donnez votre avis pour gagner 100$" | |
| 1885 | +> | |
| 1886 | + <span class="c2a-name"> | |
| 1887 | + Donnez votre avis pour gagner 100$ | |
| 1888 | + </span> | |
| 1889 | + </a> | |
| 1890 | + | |
| 1891 | + </div> | |
| 1892 | + | |
| 1893 | + | |
| 1894 | + | |
| 1895 | +<div class="id_53475154bf3a1ec91c439fa85367d8e43e69cb6d layout-columns modifier-h--center padding-top--0_5x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_25x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1896 | + | |
| 1897 | +<div class="id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 blockGroup modifier-v--around modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1898 | + <div class="items-row items-row--start "> | |
| 1899 | + <span class="item item--white"> | |
| 1900 | + <a href="https://logisco.com/fr/politique-de-cookies" data-gtm-page-type="Page" data-gtm-page-name="Politique de cookies" class="item-link " > | |
| 1901 | + Politique d'utilisation des cookies | |
| 1902 | + </a> | |
| 1903 | + </span> | |
| 1904 | + | |
| 1905 | + | |
| 1906 | + <span class="item item--white"> | |
| 1907 | + <a href="https://logisco.com/fr/politique-de-protection-des-renseignements-personnels" data-gtm-page-type="Page" data-gtm-page-name="Politique de protection des renseignements personnels" class="item-link " > | |
| 1908 | + Politique de protection des renseignements personnels | |
| 1909 | + </a> | |
| 1910 | + </span> | |
| 1911 | + | |
| 1912 | + | |
| 1913 | + <span class="item item--label item--gray"> | |
| 1914 | + <span class="item-link " > | |
| 1915 | + © Tous droits réservés LOGISCO 2026 | |
| 1916 | + </span> | |
| 1917 | + </span> | |
| 1918 | + | |
| 1919 | + | |
| 1920 | + </div> | |
| 1921 | + | |
| 1922 | + </div> | |
| 1923 | + | |
| 1924 | + | |
| 1925 | +<div class="id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 blockGroup modifier-v--center modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1926 | + <div class="items-row items-row--even "> | |
| 1927 | + <a class="icon-link " href="https://www.facebook.com/logiscogroupe/?locale=fr_CA"> | |
| 1928 | + <i class="icon-social icon-cms-social-facebook"></i> | |
| 1929 | +</a> | |
| 1930 | + | |
| 1931 | + <a class="icon-link " href="https://www.instagram.com/logiscogroupeimmo/"> | |
| 1932 | + <i class="icon-social icon-cms-social-instagram"></i> | |
| 1933 | +</a> | |
| 1934 | + | |
| 1935 | + <a class="icon-link " href="https://www.pinterest.ca/logiscogroupeimmobilier/"> | |
| 1936 | + <i class="icon-social icon-cms-social-pinterest"></i> | |
| 1937 | +</a> | |
| 1938 | + | |
| 1939 | + <a class="icon-link " href="https://www.youtube.com/user/LogiscoGroupeImmo"> | |
| 1940 | + <i class="icon-social icon-cms-social-youtube"></i> | |
| 1941 | +</a> | |
| 1942 | + | |
| 1943 | + <a class="icon-link " href="https://ca.linkedin.com/company/logisco-groupe-immobilier"> | |
| 1944 | + <i class="icon-social icon-cms-social-linkedin"></i> | |
| 1945 | +</a> | |
| 1946 | + | |
| 1947 | + </div> | |
| 1948 | + | |
| 1949 | + </div> | |
| 1950 | + | |
| 1951 | + </div> | |
| 1952 | + | |
| 1953 | + </section> | |
| 1954 | + | |
| 1955 | + </footer> | |
| 1956 | + | |
| 1957 | + | |
| 1958 | + <logisco-chat></logisco-chat> | |
| 1959 | +</div> | |
| 1960 | + | |
| 1961 | + | |
| 1962 | + | |
| 1963 | + | |
| 1964 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vendor-Cx6hDgs3.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/lodash-DsaPwWhQ.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/swiper-BiYw9q3L.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/axios-ngrFHoWO.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/@vue-tv7FT8X3.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/date-fns-BBWgIHR2.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vue-tel-input-DOM-M7oJ.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f" /><script type="module" src="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="gQtpawLua8rWIwmxYxM5CyZIJLb08z0f"></script><script type="application/ld+json">{ | |
| 1965 | + "@context": "https://schema.org", | |
| 1966 | + "@type": "apartment", | |
| 1967 | + "@id": "1711:10635", | |
| 1968 | + "address": { | |
| 1969 | + "@type": "PostalAddress", | |
| 1970 | + "streetAddress": "607-2825 rue Coursol", | |
| 1971 | + "addressLocality": "Québec", | |
| 1972 | + "addressRegion": "Québec", | |
| 1973 | + "postalCode": "G2C 0P3", | |
| 1974 | + "addressCountry": "Canada" | |
| 1975 | + }, | |
| 1976 | + "branchCode": "10635", | |
| 1977 | + "floorLevel": "6", | |
| 1978 | + "image": "https://logisco.com/static/vb/5549/plan-1711-342-planlocation-207-307-407-209-309-409-507-607.webp", | |
| 1979 | + "map": "https://www.google.com/maps?q=607-2825+rue+Coursol%2C+Qu%C3%A9bec%2C+Qu%C3%A9bec%2C+G2C+0P3", | |
| 1980 | + "name": "Appartement 607", | |
| 1981 | + "numberOfBedrooms": "3 1/2", | |
| 1982 | + "telephone": "+14185644726", | |
| 1983 | + "url": "https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607" | |
| 1984 | +} | |
| 1985 | +</script> | |
| 1986 | + | |
| 1987 | +<script type="application/ld+json">{ | |
| 1988 | + "@context": "https://schema.org", | |
| 1989 | + "@type": "BreadcrumbList", | |
| 1990 | + "itemListElement": [ | |
| 1991 | + { | |
| 1992 | + "@type": "ListItem", | |
| 1993 | + "position": 1, | |
| 1994 | + "name": "Accueil", | |
| 1995 | + "item": "https://logisco.com/fr" | |
| 1996 | + }, | |
| 1997 | + { | |
| 1998 | + "@type": "ListItem", | |
| 1999 | + "position": 2, | |
| 2000 | + "name": "Appartements \u00e0 louer", | |
| 2001 | + "item": "https://logisco.com/fr/appartements-a-louer" | |
| 2002 | + }, | |
| 2003 | + { | |
| 2004 | + "@type": "ListItem", | |
| 2005 | + "position": 3, | |
| 2006 | + "name": "Qu\u00e9bec", | |
| 2007 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec" | |
| 2008 | + }, | |
| 2009 | + { | |
| 2010 | + "@type": "ListItem", | |
| 2011 | + "position": 4, | |
| 2012 | + "name": "Neufch\u00e2tel-Est-Lebourgneuf", | |
| 2013 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf" | |
| 2014 | + }, | |
| 2015 | + { | |
| 2016 | + "@type": "ListItem", | |
| 2017 | + "position": 5, | |
| 2018 | + "name": "KOS", | |
| 2019 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos" | |
| 2020 | + }, | |
| 2021 | + { | |
| 2022 | + "@type": "ListItem", | |
| 2023 | + "position": 6, | |
| 2024 | + "name": "Appartement 607", | |
| 2025 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf/kos/2825-appartement-607" | |
| 2026 | + } | |
| 2027 | + ] | |
| 2028 | +}</script> | |
| 2029 | + | |
| 2030 | + | |
| 2031 | +</body> | |
| 2032 | + | |
| 2033 | +</html> | |
added
tests/fixtures/logisco/04d868de4af4ed8f22ea.html
+1632 −0
@@ -0,0 +1,1632 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + <script nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG"> | |
| 5 | + window.dataLayer = [] | |
| 6 | +</script> | |
| 7 | + <!-- Google Tag Manager --> | |
| 8 | + <script nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 9 | + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 10 | + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 11 | + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;var n=d.querySelector('[nonce]'); | |
| 12 | + n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f); | |
| 13 | + })(window,document,'script','dataLayer','GTM-PR75X6VZ');</script> | |
| 14 | + <!-- End Google Tag Manager --> | |
| 15 | + <meta name="csrf-token" content="RcK0g54Vsq52dUtLxz6zGOlBZlnXZoocezFO9jj4"> | |
| 16 | + <meta charset="utf-8"> | |
| 17 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 18 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes"> | |
| 19 | + | |
| 20 | + <style nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG">@charset "UTF-8";:root{--vs-colors--lightest: rgba(60, 60, 60, .26);--vs-colors--light: rgba(60, 60, 60, .5);--vs-colors--dark: #333;--vs-colors--darkest: rgba(0, 0, 0, .15);--vs-search-input-color: inherit;--vs-search-input-placeholder-color: inherit;--vs-font-size: 1rem;--vs-line-height: 1.4;--vs-state-disabled-bg: rgb(248, 248, 248);--vs-state-disabled-color: var(--vs-colors--light);--vs-state-disabled-controls-color: var(--vs-colors--light);--vs-border-color: var(--vs-colors--lightest);--vs-border-width: 1px;--vs-border-style: solid;--vs-border-radius: 4px;--vs-actions-padding: 4px 6px 0 3px;--vs-controls-color: var(--vs-colors--light);--vs-controls-size: 1;--vs-controls--deselect-text-shadow: 0 1px 0 #fff;--vs-selected-bg: #f0f0f0;--vs-selected-color: var(--vs-colors--dark);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: #fff;--vs-dropdown-color: inherit;--vs-dropdown-z-index: 1000;--vs-dropdown-min-width: 160px;--vs-dropdown-max-height: 350px;--vs-dropdown-box-shadow: 0px 3px 6px 0px var(--vs-colors--darkest);--vs-dropdown-option-bg: #000;--vs-dropdown-option-color: var(--vs-dropdown-color);--vs-dropdown-option-padding: 3px 20px;--vs-dropdown-option--active-bg: #5897fb;--vs-dropdown-option--active-color: #fff;--vs-dropdown-option--deselect-bg: #fb5858;--vs-dropdown-option--deselect-color: #fff}:root{--vs-disabled-bg: var(--vs-state-disabled-bg);--vs-disabled-color: var(--vs-state-disabled-color)}html,body,p,ul,li,h1,h2,h3{margin:0;padding:0}h1,h2,h3{font-size:100%;font-weight:400}ul{list-style:none}input{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img{height:auto;max-width:100%}html{line-height:normal;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2rem}a{text-decoration:none;background-color:transparent}strong{font-weight:bolder}img{border-style:none}input{margin:0;font-family:inherit}input{overflow:visible}[type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner{padding:0;border-style:none}[type=button]:-moz-focusring{outline:1px dotted ButtonText}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}:root{--base-font: $base-font;--spacing-0x: 0;--spacing-0_25x: 1.6em;--spacing-0_5x: 3.2em;--spacing-1x: 6.4em;--spacing-1_25x: 8em;--spacing-1_5x: 9.6em;--spacing-2x: 12em;--border-radius-none: 0;--border-radius-sm: 2rem;--border-radius-md: 4rem;--border-radius-lg: 6rem}@media (max-width:750px){:root{--spacing-0x: 0;--spacing-0_5x: .8em;--spacing-1x: 1.6em;--spacing-2x: 4em}}html{font-size:.7320644217vw}body{line-height:normal}h1,h2,h3{font-weight:400;font-size:1em}a{color:currentColor}img{display:block;width:100%;height:100%}html{font-size:.6944444444vw}@media (max-width:750px){html{font-size:2.7777777778vw}}html{scroll-behavior:smooth}.unitHeader-infoValue,.blockText-title,.alertTop-close,.c2a-text,.blockText-surtitle{color:#363636;font-family:Macan}.unitHeader-infoValue,.blockText-title{font-weight:300;font-size:4rem}@media (max-width:750px){.unitHeader-infoValue,.blockText-title{font-weight:300;font-size:2.6rem}}.alertTop-close{font-weight:400;font-size:2rem}@media (max-width:750px){.alertTop-close{font-weight:400;font-size:1.8rem}}.c2a-text{font-weight:500;font-size:1.5rem}@media (max-width:750px){.c2a-text{font-weight:500;font-size:1.4rem}}.blockText-surtitle{font-weight:400;font-size:1.6rem}@media (max-width:750px){.blockText-surtitle{font-weight:300;font-size:1.4rem}}.unitHeader-priceNumber,.blockText-style--medium .blockText-title{font-family:Macan;font-weight:400;font-size:3rem;line-height:1.3}@media (max-width:750px){.unitHeader-priceNumber,.blockText-style--medium .blockText-title{font-size:2.5rem;line-height:1.2}}.unitHeader-priceText{font-family:Macan;font-weight:400;font-size:2.4rem;line-height:1.3}@media (max-width:750px){.unitHeader-priceText{font-size:2.3rem;margin-bottom:.5em}}.projectServices-title{font-family:Macan;font-weight:400;font-size:2.2rem;line-height:1.3}@media (max-width:750px){.projectServices-title{font-size:2.1rem;line-height:1.4}}.unitHeader-infoValue,.blockText-title{font-family:Macan;font-weight:600;font-size:1.6rem;line-height:1.4}.projectServices-listItem,.alertTop-content{font-family:Macan;font-weight:300;font-size:1.6rem;line-height:1.4}.unitHeader-infoLabel{font-family:Macan;font-weight:300;font-size:1.4rem;line-height:1.4}.breadcrumb-item{font-family:Macan;font-weight:400;font-size:1.2rem;line-height:1.3}.unitHeader-address{font-family:Macan;font-weight:400;font-size:1.5rem;line-height:1.5}.blockText-style--medium .blockText-surtitle,.blockText-surtitle{font-family:Macan;font-weight:400;font-size:1.4rem;line-height:1.2}.mainMenu-elementLink,.c2a-text{font-family:Macan;font-weight:500;font-size:1.7rem;line-height:1}.tooltip-subtitle{font-family:Macan;font-weight:500;font-size:1.3rem;line-height:1}.blockText-title{font-family:Macan;font-weight:300;font-size:5.6rem;line-height:1.2}@media (max-width:750px){.blockText-title{font-size:3.8rem;line-height:1.3}}.unitHeader-label{font-family:Macan;font-weight:300;font-size:4.4rem;line-height:1.3}@media (max-width:750px){.unitHeader-label{font-size:3.2rem;line-height:1.2}}@font-face{font-family:icon-cms;src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4);src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-cms-DWd4ei5T.woff2?39a3p4) format("woff2"),url(/theme/build/assets/icomoon-cms-DQc2SeWf.ttf?39a3p4) format("truetype"),url(/theme/build/assets/icomoon-cms-PZ9bTWPn.woff?39a3p4) format("woff"),url(/theme/build/assets/icomoon-cms-B-zWZdiB.svg?39a3p4#icomoon-cms) format("svg");font-weight:400;font-style:normal;font-display:block}[class^=icon-cms-],[class*=" icon-cms-"]{font-family:icon-cms!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-cms-]:after,[class*=" icon-cms-"]:after{position:absolute;top:0;left:0}.icon-cms-close:before{content:""}.icon-cms-social-share:before{content:""}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Semibold-P894naFN.woff2) format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Book-BKtKbQB6.woff2) format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Regular-Tnze7Wf6.woff2) format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Light-D0XdM3nR.woff2) format("woff2");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Thin-D8KRJN3P.woff2) format("woff2");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:icomoon-logisco;src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j);src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-logisco-3ELZv8tI.ttf?u4aq2j) format("truetype"),url(/theme/build/assets/icomoon-logisco-DAB2sWOk.woff?u4aq2j) format("woff"),url(/theme/build/assets/icomoon-logisco-CJnwMfM_.svg?u4aq2j#icomoon) format("svg");font-weight:400;font-style:normal;font-display:swap}[class^=icon-logisco-],[class*=" icon-logisco-"]{font-weight:400;font-family:icomoon-logisco!important;font-style:normal;font-variant:normal;line-height:1;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-logisco-]:after,[class*=" icon-logisco-"]:after{position:absolute;top:0;left:0}.icon-logisco-service--dishwasher_connection:before{content:""}.icon-logisco-service--entrance_washer_dryer:before{content:""}.icon-logisco-service--unheated_outdoor_pool:before{content:""}.icon-logisco-service--outdoor_or_indoor_parking:before{content:""}.icon-logisco-service--guest_parking:before{content:""}.icon-logisco-service--bike_rack:before{content:""}.icon-logisco-service--disabled_access:before{content:""}.icon-logisco-service--concrete_floor:before{content:""}.icon-logisco-service--intercom:before{content:""}.icon-logisco-service--secure_post_office_locker:before{content:""}.icon-logisco-service--charging_station:before{content:""}.icon-logisco-service--elevator:before{content:""}.icon-logisco-service--indoor_parking:before{content:""}.icon-logisco-service--outdoor_parking:before{content:""}.icon-logisco-phone:before{content:""}.icon-logisco-information:before{content:""}.icon-logisco-download:before{content:""}.icon-cms-close{font-family:icomoon-logisco!important}.icon-cms-close:before{content:""}.icon-cms-social-share{font-family:icomoon-logisco!important}.icon-cms-social-share:before{content:""}.c2a{display:block;width:max-content;height:max-content;padding:.9333333333em 1.3333333333em;color:#fff;font-family:Macan;letter-spacing:normal;text-align:center;border:0;border-radius:.8rem}.c2a-text{display:flex;gap:1em;align-items:center;margin:0;color:#fff;font-weight:400;text-decoration:none}.c2a--tertiary{background:#8895a0}.c2a{padding:1.86rem 2.4rem}.c2a-text{gap:.4em}.c2a--tertiary{background:none;color:#0f1223;padding:0}.c2a--tertiary .c2a-name{text-decoration:underline}.alertTop{position:fixed;top:0;z-index:100;display:flex;align-items:center;justify-content:center;width:100%;height:4.8em;padding-top:1em;padding-bottom:1em;color:#fff;font-family:Macan}@media (max-width:750px){.alertTop{justify-content:space-between}}.alertTop-on .alertTop-placeholder{height:4.8em}.alertTop--main{background-color:#0385d4}.alertTop--main .alertTop-close{color:#fff}@media (min-width:751px){.alertTop-text--mobile{display:none}}@media (max-width:750px){.alertTop-text--desktop{display:none}}.alertTop-close{position:absolute;right:1em;font-size:1.2em!important;font-style:normal}@media (max-width:750px){.alertTop-close{right:1.5em}}.alertTop{padding-top:1.2em;padding-bottom:1.2em}.alertTop-close{position:absolute;font-size:3em!important}.alertTop-content a{text-decoration:underline;text-underline-offset:.1em}@media (max-width:750px){.alertTop{padding:.8em 4em .8em 1.6em}.alertTop-close{right:.5rem}.alertTop-content{font-size:1.2em}}.breadcrumb-list{display:flex;gap:1.2rem;margin-bottom:4em;padding-bottom:4em;border-bottom:.1rem solid #0F1223}.breadcrumb-item{display:flex;color:#0f1223}.breadcrumb-item:not(:last-child):after{display:block;padding-left:1.2rem;content:"|"}@media (max-width:750px){.breadcrumb-list{padding:1rem 0;margin:0 0 .6rem;border-bottom:none;overflow-x:scroll}.breadcrumb-item{white-space:nowrap}}.mainMenu{display:flex;gap:3em;align-items:center;justify-content:flex-end}.mainMenu-item{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;width:100%}.mainMenu-element{display:flex;align-items:center}.mainMenu-elementLink{display:flex;flex-direction:row;gap:.25em;align-items:center;padding:.3571428571em;color:#000;font-weight:500;font-size:1.4em;font-family:Macan;line-height:1.2142857143em;letter-spacing:.0642857143em;white-space:nowrap}.mainMenu-list{display:flex;gap:4.4em}@media (max-width:750px){.mainMenu{gap:1em}.mainMenu-list{display:none}}.mainMenu{gap:0;width:100%;justify-content:space-between;padding:0 6.4em}.mainMenu-list{margin-right:auto;margin-left:auto;gap:3.2em}.mainMenu-item{white-space:nowrap}.mainMenu-item:last-child{display:flex;flex-direction:row;align-items:center;gap:3.2em}.mainMenu-item:last-child:before{content:"";background-color:#c9d5dc;width:.1em;height:2.4em}.mainMenu-elementLink{font-size:1.7rem;letter-spacing:0}@media (max-width:750px){.mainMenu{padding:0 1.6em}}.mainHeader{position:fixed;top:0;left:0;z-index:100;width:100%;background-color:#fff}.mainHeader-placeholder{height:5.5em}@media (max-width:750px){.mainHeader-placeholder{height:5em}}.mainHeader-shadow{opacity:0}.mainHeader-bg{position:absolute;left:0;display:block;width:100%;height:5.5em;background-color:#fff;transform:translateY(-100%)}.mainHeader-nav{position:relative;display:flex;align-items:center;justify-content:space-between;height:5.5em;padding:1.5em 6.4em}.mainHeader-brand{display:flex;align-items:center}.mainHeader-logo{display:flex;width:70%;height:100%}.mainHeader-logo.mainHeader-logo--white{display:none}@media (max-width:750px){.mainHeader-bg{height:5em;transform:translateY(0)}.mainHeader-brand{font-size:.15em}.mainHeader-logo{width:85em}.mainHeader-nav{height:5em;padding:0 4em}}.mainHeader-nav{padding:0;border-bottom:.1em solid #C9D5DC}.mainHeader-logo{width:13.7em}.mainHeader-linksList{display:flex;gap:.8em;align-items:center}.mainHeader-listItem{display:flex;align-items:center;justify-content:center;height:max-content}@media (min-width:751px){.mainHeader-listItem{min-width:6.3rem;min-height:4.5rem;padding-right:.8rem;padding-left:.8rem;border:.2rem solid transparent;border-radius:8rem}}.icon-logisco-phone{display:flex;align-items:center;justify-content:center;padding:0;color:#000;font-size:2em;background-color:transparent;border:none;aspect-ratio:1}@supports not (aspect-ratio:1){.icon-logisco-phone{position:relative}.icon-logisco-phone:after{display:block;content:"";width:100%;padding-top:100%}}.icon-logisco-phone{font-size:2.3em}@media (max-width:750px){.mainHeader-nav{padding:0}.mainHeader-brand{margin-right:auto}.mainHeader-logo{width:70em}.mainHeader-linksList{gap:2.2rem}}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.blockText{display:flex;flex-direction:column;gap:2em;align-items:flex-start;text-align:left}.blockText-surtitle,.blockText-title{width:auto}.blockText{gap:0}.blockText :not(:first-child):last-child{margin-bottom:0}.blockText-surtitle{color:#0385d4;font-size:1.8rem;width:100%;text-transform:uppercase;margin-bottom:.6666666667em}@media (max-width:750px){.blockText-surtitle{font-size:1.4rem}}.blockText-title{color:#0f1223;width:100%;margin-bottom:.4285714286em}.blockText-style--medium .blockText-surtitle{color:#0385d4;width:100%;text-transform:uppercase}.blockText-style--medium .blockText-title{width:100%}@media (max-width:750px){.blockText-style--medium .blockText-title{margin-bottom:1em}}:root{--dp-font-family: Macan !important;--dp-input-padding: 1em 3em 1em 1.2em !important;--dp-font-size: 1.6rem !important;--dp-preview-font-size: 1.3rem !important;--dp-border-radius: .8rem !important;--dp-cell-size: 1.8em !important}.logisco-unit .projectServices-list{grid-template-columns:repeat(2,1fr)}@media (max-width:750px){.logisco-unit .projectServices-list{grid-template-columns:repeat(1,1fr)}}.unitHeader{position:relative;display:flex;flex-direction:column;gap:3.2em;padding-top:4em;padding-right:12.9rem;padding-bottom:8em;padding-left:12.9rem;background-color:#f3f8ff}.unitHeader .breadcrumb-list{margin-bottom:1em;padding-bottom:0;border-bottom:none}.unitSection{padding-right:12.9rem;padding-left:12.9rem}@media (max-width:750px){.unitSection{padding-right:1.6em;padding-left:1.6em}}.unitSection .blockText{margin-bottom:4rem}.unitHeader-background{position:absolute;top:75em;right:0;bottom:0;left:0;background-color:#fff}.unitHeader-topContainer{display:flex;align-items:center;justify-content:space-between}.unitHeader-bottomContainer{z-index:20;display:flex;gap:1.6em;justify-content:space-between}.unitHeader-imageWrapper--mobile{display:none}.unitHeader-label{display:inline-block;align-items:center}.unitHeader-labelDivider{margin-right:.3em}.unitHeader-address{color:#0385d4;text-decoration:underline}.unitHeader-callToActions{position:absolute;top:1.5em;right:1.5em;z-index:20;display:flex;gap:.8em;justify-content:flex-end;width:100%}.unitHeader-callToActions .icon-cms-social-share{color:#0f1223!important;font-size:1.3em}.unitHeader-link{display:block;height:max-content;margin-top:1.6em}.unitHeader-imageWrapper{position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;background-color:#fff;border-radius:.8em;aspect-ratio:1.5068226121}@supports not (aspect-ratio:calc(773 / 513)){.unitHeader-imageWrapper{position:relative}.unitHeader-imageWrapper:after{display:block;content:"";width:100%;padding-top:66.3648124191%}.unitHeader-imageWrapper>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper img{width:unset;max-width:100%;height:100%;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-bottomLeft{position:relative;display:flex;flex-direction:column;width:65%;height:100%}.unitHeader-bottomLeft .projectServices{margin:0}.unitHeader-bottomRight{display:flex;width:35%}.unitHeader-unitInfos{position:sticky;top:12.3em;width:100%;height:max-content;padding:2.4em 2.4em 1.7em;background-color:#fff;border-radius:.8em;box-shadow:0 0 1.2em #32325d1a}.unitHeader-unitInfos .c2a-download{padding-top:.8em}.unitHeader-price{display:flex;flex-wrap:wrap;gap:.8em;align-items:flex-end;padding-bottom:.8em;border-bottom:.1em solid #C9D5DC}.unitHeader-infosContainer{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6em;padding-top:1.6em}.unitHeader-info{display:flex;flex-direction:column}.unitHeader-infoLabel{color:#566772}.unitHeader-infoValue{color:#0f1223}.unitHeader-infosLink{display:flex;flex-direction:column;gap:.8em;margin-top:3.2em}.unitHeader-infosLink .c2a{justify-content:center;width:100%}.unitHeader-infosLink .c2a:last-child{margin-top:.8rem}.unitHeader-imageOverlay{display:none}@media (max-width:750px){.unitHeader-labelDivider{display:none}.unitHeader-imageWrapper--mobile{position:relative;display:block;aspect-ratio:1.3333333333}@supports not (aspect-ratio:calc(360 / 270)){.unitHeader-imageWrapper--mobile{position:relative}.unitHeader-imageWrapper--mobile:after{display:block;content:"";width:100%;padding-top:75%}.unitHeader-imageWrapper--mobile>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper--mobile img{width:unset;max-width:100%;height:unset;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-imageWrapper--mobile .unitHeader-callToActions{display:flex}.unitHeader-imageWrapper--mobile .unitHeader-callToActions .icon-cms-social-share{font-size:1.5em}.unitHeader-callToActions,.unitHeader-imageWrapper{display:none}.unitHeader{padding:0;background-color:#fff}.unitHeader .projectServices{padding:3.2em 1.6em}.unitHeader-background{display:none}.unitHeader-imageWrapper{border-radius:0}.unitHeader-imageOverlay{position:absolute;z-index:10;display:block;background:linear-gradient(180deg,#02002405,#02002405),linear-gradient(180deg,#02002466,#00d4ff00 35%);top:0;right:0;bottom:0;left:0}.unitHeader-topContainer .breadcrumb-list{margin:0;padding:1rem 0 1rem 1.6em}.unitHeader-text{width:100%}.unitHeader-label{display:flex;flex-direction:column;align-items:flex-start;margin-top:1.6rem}.unitHeader-label--small{font-size:2.8rem}.unitHeader-label,.unitHeader-link{padding-right:1.6rem;padding-left:1.6rem}.unitHeader-bottomContainer{flex-direction:column}.unitHeader-bottomLeft,.unitHeader-bottomRight{width:100%}.unitHeader-bottomRight{order:-1}.unitHeader-infosGroup{position:fixed;top:unset;right:0;bottom:0;left:0;z-index:90;display:flex;flex-direction:column;justify-content:space-around;height:14.5em;padding:1em;background-color:#fff;box-shadow:0 -1em 1em #0000000d}.unitHeader-infosLink{position:relative}.unitHeader-infosLink .c2a{margin-top:0}.unitHeader-unitInfos{position:unset;padding:0 1.6em;box-shadow:none}.unitHeader-priceText{margin-bottom:0!important}}.tooltip-container{display:none}.tooltip-subtitle{margin-bottom:1.6em}.projectServices-title .tooltip-subtitle{margin-bottom:0;font-size:1.3rem}.projectServices{display:flex;flex-direction:column;margin-right:14.4em;margin-left:14.4em;padding-top:12em;padding-bottom:0;gap:4em}.unitHeader-bottomLeft .projectServices{padding-top:8em}.unitHeader-bottomLeft .projectServices+.projectServices{padding-top:2.4em}.projectServices-title{position:relative;display:flex;gap:.4em}.projectServices-title .icon-logisco-information{color:#0385d4;margin-top:.2em}.projectServices-list{display:grid;padding-top:2.4em;padding-bottom:4em;border-bottom:.1em solid #EEF0F2;grid-template-columns:repeat(3,1fr);column-gap:3.2em;row-gap:1.6em}.unitHeader-bottomLeft .projectServices-list{padding-bottom:2.4em}.projectServices-itemContainer{display:flex;gap:.8em;align-items:center}.projectServices-icon{font-size:3em}.projectServices-listItem{display:flex;gap:.8em;align-items:center}@media (max-width:750px){.projectServices{margin-right:1.6em;margin-left:1.6em}.projectServices-list{grid-template-columns:repeat(1,1fr);gap:2em 1em}}</style> | |
| 21 | + <script | |
| 22 | + id="locallogic-sdk" | |
| 23 | + nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" | |
| 24 | + async | |
| 25 | + src="https://sdk.locallogic.co/sdks-js/1.23.32/index.umd.js" | |
| 26 | +></script> | |
| 27 | + | |
| 28 | +<script nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG"> | |
| 29 | + (function() { | |
| 30 | + let sdkLoaded = false; | |
| 31 | + let domReady = false; | |
| 32 | + | |
| 33 | + const globalOptions = { | |
| 34 | + locale: "fr", | |
| 35 | + appearance: { | |
| 36 | + theme: "day", | |
| 37 | + variables: { | |
| 38 | + "--ll-color-primary": "#002d5c", | |
| 39 | + "--ll-color-primary-variant1": "#219cd7", | |
| 40 | + "--ll-font-family": "Macan, sans-serif" | |
| 41 | + } | |
| 42 | + } | |
| 43 | + }; | |
| 44 | + | |
| 45 | + function tryInitialize() { | |
| 46 | + if (!sdkLoaded || !domReady) { | |
| 47 | + return; | |
| 48 | + } | |
| 49 | + | |
| 50 | + const sdkContainer = document.getElementById("local-content-widget"); | |
| 51 | + | |
| 52 | + if (!sdkContainer) { | |
| 53 | + return; | |
| 54 | + } | |
| 55 | + | |
| 56 | + const rect = sdkContainer.getBoundingClientRect(); | |
| 57 | + if (rect.width === 0 || rect.height === 0) { | |
| 58 | + setTimeout(tryInitialize, 100); | |
| 59 | + return; | |
| 60 | + } | |
| 61 | + | |
| 62 | + const lat = parseFloat(sdkContainer.dataset.localLogicLat); | |
| 63 | + const lng = parseFloat(sdkContainer.dataset.localLogicLng); | |
| 64 | + | |
| 65 | + const ll = LLSDKsJS("420d1d42c48e9186122576db04e678af.41a932d2-2a53-461a-b85f-b5dd90355bce", globalOptions); | |
| 66 | + | |
| 67 | + const sdkOptions = { | |
| 68 | + lat: lat, | |
| 69 | + lng: lng, | |
| 70 | + marker: { | |
| 71 | + lat: lat, | |
| 72 | + lng: lng | |
| 73 | + }, | |
| 74 | + mapProvider: { | |
| 75 | + name: "google", | |
| 76 | + key: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q" | |
| 77 | + }, | |
| 78 | + scoresMenu: { | |
| 79 | + categories: { | |
| 80 | + transport: { | |
| 81 | + hide: JSON.parse(sdkContainer.dataset.localLogicTransport || 'false'), | |
| 82 | + scores: { | |
| 83 | + pedestrian_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportPedestrianFriendly || 'false') }, | |
| 84 | + cycling_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCyclingFriendly || 'false') }, | |
| 85 | + transit_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportTransitFriendly || 'false') }, | |
| 86 | + car_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCarFriendly || 'false') } | |
| 87 | + } | |
| 88 | + }, | |
| 89 | + education: { | |
| 90 | + hide: JSON.parse(sdkContainer.dataset.localLogicEducation || 'false'), | |
| 91 | + scores: { | |
| 92 | + daycares: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationDaycares || 'false') }, | |
| 93 | + primary_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationPrimarySchools || 'false') }, | |
| 94 | + high_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationHighSchools || 'false') } | |
| 95 | + } | |
| 96 | + }, | |
| 97 | + amenities: { | |
| 98 | + hide: JSON.parse(sdkContainer.dataset.localLogicAmenities || 'false'), | |
| 99 | + scores: { | |
| 100 | + shopping: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesShopping || 'false') }, | |
| 101 | + groceries: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesGroceries || 'false') }, | |
| 102 | + restaurants: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesRestaurants || 'false') }, | |
| 103 | + cafes: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesCafes || 'false') } | |
| 104 | + } | |
| 105 | + }, | |
| 106 | + character: { | |
| 107 | + hide: JSON.parse(sdkContainer.dataset.localLogicCharacter || 'false'), | |
| 108 | + scores: { | |
| 109 | + nightlife: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterNightlife || 'false') }, | |
| 110 | + vibrant: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterVibrant || 'false') }, | |
| 111 | + historic: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterHistoric || 'false') }, | |
| 112 | + quiet: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterQuiet || 'false') } | |
| 113 | + } | |
| 114 | + }, | |
| 115 | + nature: { | |
| 116 | + hide: JSON.parse(sdkContainer.dataset.localLogicNature || 'false'), | |
| 117 | + scores: { | |
| 118 | + parks: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureParks || 'false') }, | |
| 119 | + greenery: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureGreenery || 'false') } | |
| 120 | + } | |
| 121 | + }, | |
| 122 | + wellness: { hide: JSON.parse(sdkContainer.dataset.localLogicWellness || 'false') }, | |
| 123 | + health: { hide: JSON.parse(sdkContainer.dataset.localLogicHealth || 'false') } | |
| 124 | + } | |
| 125 | + } | |
| 126 | + }; | |
| 127 | + | |
| 128 | + ll.create("local-content", sdkContainer, sdkOptions); | |
| 129 | + } | |
| 130 | + | |
| 131 | + document.getElementById('locallogic-sdk').addEventListener('load', function() { | |
| 132 | + sdkLoaded = true; | |
| 133 | + tryInitialize(); | |
| 134 | + }); | |
| 135 | + | |
| 136 | + if (document.readyState === 'loading') { | |
| 137 | + document.addEventListener('DOMContentLoaded', function() { | |
| 138 | + domReady = true; | |
| 139 | + tryInitialize(); | |
| 140 | + }); | |
| 141 | + } else { | |
| 142 | + domReady = true; | |
| 143 | + tryInitialize(); | |
| 144 | + } | |
| 145 | + })(); | |
| 146 | +</script> | |
| 147 | + | |
| 148 | + <script async src="https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="f89f0a00-9a89-4d45-9a32-8a86321619f9"></script> | |
| 149 | + <script type="text/javascript" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG"> | |
| 150 | + function OptanonWrapper() {} | |
| 151 | + </script> | |
| 152 | + | |
| 153 | + <link rel="icon" type="image/png" href="https://logisco.com/theme/images/favicon_logisco-57x57.png" sizes="57x57" /> | |
| 154 | + | |
| 155 | + <!-- TODO this is blocking.... revert to old script --> | |
| 156 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /> <script nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG"> | |
| 157 | + window.Cheetah = { | |
| 158 | + locale: 'fr', | |
| 159 | + themeDir: "theme", | |
| 160 | + gMapKey: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q", | |
| 161 | + isMobile: false, | |
| 162 | + chatbotBaseUrl: "https:\/\/chatbot-api.logisco.com\/v1", | |
| 163 | + form: { | |
| 164 | + maxFileSize: parseInt("4"), | |
| 165 | + maxFileCount: parseInt("5"), | |
| 166 | + fileExtensions: ["jpg","jpeg","png","docx","doc","pdf","txt"] }, | |
| 167 | + formSecurity: { | |
| 168 | + default: 'turnstile', | |
| 169 | + isDisabled: false, | |
| 170 | + config: {"fallback":["turnstile","captcha"],"captcha":{"key":""},"turnstile":{"key":"0x4AAAAAAAc7m33H9T6pSzmR"}} }, | |
| 171 | + reservation: { | |
| 172 | + locationUrl: "https:\/\/logisco.com\/fr\/appartements-a-louer" } | |
| 173 | + } | |
| 174 | + </script> | |
| 175 | + | |
| 176 | + | |
| 177 | + <noscript> | |
| 178 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /> </noscript> | |
| 179 | + <style nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG"> .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } @media (max-width: 750px) { .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr 3fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 .carousel-wrapper { grid-template-columns: 1fr 1fr 1fr; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { grid-template-columns: ; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr; } } .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } @media (max-width: 750px) { .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } } .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } @media (max-width: 750px) { .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } } .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } @media (max-width: 750px) { .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } } .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } @media (max-width: 750px) { .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr; } } .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } @media (max-width: 750px) { .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } } .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 100%; } @media (max-width: 750px) { .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 80%; } } </style> | |
| 180 | + <!-- SEO --> | |
| 181 | + <title>Appartement 211 | Les Boisés de la Colline LOGISCO</title> | |
| 182 | +<meta name="description" content=""> | |
| 183 | +<meta property="og:title" content="Appartement 211 | Les Boisés de la Colline LOGISCO"> | |
| 184 | +<meta property="og:url" content="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211"> | |
| 185 | + <meta property="og:image" content="https://logisco.com/static/vb/2468-1200/appartement-211-les-boises-de-la-colline-logisco.webp"> | |
| 186 | +<meta property="og:description" content=""> | |
| 187 | + | |
| 188 | +<meta id="gtm-page-info" data-gtm-page-type="Unité" data-gtm-page-name="Appartement 211" data-gtm-project-id="618" data-gtm-unit-id="1511" data-gtm-unit-type="APARTMENT" data-gtm-available="1" data-gtm-is-in-wishlist="" data-gtm-is-in-reservation="" data-gtm-unit-price="152.4" data-gtm-nom-liste="unites_du_projet_les_boises_de_la_colline"> | |
| 189 | + | |
| 190 | + | |
| 191 | + <link rel="canonical" href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211"/> | |
| 192 | + | |
| 193 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211" | |
| 194 | + hreflang="x-default"> | |
| 195 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211" | |
| 196 | + hreflang="fr"> | |
| 197 | + <meta id="gtm-additional-page-info" data-gtm-wishlist-count="0" data-gtm-reservation-count="0" data-gtm-device_type="desktop"> | |
| 198 | + | |
| 199 | + <meta id="mobile_menu_preload" href="https://logisco.com/mobile_menu.json" /> | |
| 200 | + <!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET--> | |
| 201 | + <script type='text/javascript' nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG"> | |
| 202 | + (function(){var g=function(e,h,f,g){ | |
| 203 | + this.get=function(a){for(var a=a+"=",c=document.cookie.split(";"),b=0,e=c.length;b<e;b++){for(var d=c[b];" "==d.charAt(0);)d=d.substring(1,d.length);if(0==d.indexOf(a))return d.substring(a.length,d.length)}return null}; | |
| 204 | + this.set=function(a,c){var b="",b=new Date;b.setTime(b.getTime()+6048E5);b="; expires="+b.toGMTString();document.cookie=a+"="+c+b+"; path=/; "}; | |
| 205 | + this.check=function(){var a=this.get(f);if(a)a=a.split(":");else if(100!=e)"v"==h&&(e=Math.random()>=e/100?0:100),a=[h,e,0],this.set(f,a.join(":"));else return!0;var c=a[1];if(100==c)return!0;switch(a[0]){case "v":return!1;case "r":return c=a[2]%Math.floor(100/c),a[2]++,this.set(f,a.join(":")),!c}return!0}; | |
| 206 | + this.go=function(){if(this.check()){var a=document.createElement("script");a.type="text/javascript";a.src=g;document.body&&document.body.appendChild(a)}}; | |
| 207 | + this.start=function(){var t=this;"complete"!==document.readyState?window.addEventListener?window.addEventListener("load",function(){t.go()},!1):window.attachEvent&&window.attachEvent("onload",function(){t.go()}):t.go()};}; | |
| 208 | + try{(new g(100,"r","QSI_S_ZN_9H0SsDLTgAxOu1M","https://zn9h0ssdltgaxou1m-logisco.siteintercept.qualtrics.com/SIE/?Q_ZID=ZN_9H0SsDLTgAxOu1M")).start()}catch(i){}})(); | |
| 209 | + </script><div id='ZN_9H0SsDLTgAxOu1M'><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div> | |
| 210 | + <!--END WEBSITE FEEDBACK SNIPPET--> | |
| 211 | + | |
| 212 | + <script type="text/javascript" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG"> | |
| 213 | + !function(e,t){ | |
| 214 | + (e=t.createElement("script")).src="https://cdn.convertbox.com/convertbox/js/embed.js", | |
| 215 | + e.id="app-convertbox-script", | |
| 216 | + e.async=true, | |
| 217 | + e.dataset.uuid="a2c68abb-6a6e-496a-a1ca-455b6413a4c4", | |
| 218 | + document.getElementsByTagName("head")[0].appendChild(e) | |
| 219 | + }(window,document); | |
| 220 | + </script> | |
| 221 | +</head> | |
| 222 | +<body class="logisco-unit alertTop-on "> | |
| 223 | + | |
| 224 | +<noscript> | |
| 225 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PR75X6VZ" height="0" width="0" | |
| 226 | + style="display:none; visibility:hidden"></iframe> | |
| 227 | + </noscript> | |
| 228 | + | |
| 229 | +<div id="app"> | |
| 230 | + | |
| 231 | + <header class="mainHeader not_searchable" data-gtm-creative-slot="entete"> | |
| 232 | + | |
| 233 | + <div id="alertTop--650b259e98957" class="alertTop alertTop--main js-promotion-viewed" data-gtm-creative-slot="alertTop" data-gtm-creative-name="AlertTop" data-gtm-promotion-name="Nouveau site web - Centre d'aide"> | |
| 234 | +<div class="alertTop-container"> | |
| 235 | + <p class="alertTop-content alertTop-text--desktop">Trouvez votre prochain appartement à Québec et Lévis où <i><strong>vous </strong></i>serez bien chez vous– <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 236 | + <p class="alertTop-content alertTop-text--mobile">Trouvez votre prochain appartement à Québec et Lévis – <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 237 | + </div> | |
| 238 | +<i class="alertTop-close js-alertTop-close icon-cms-close"></i> | |
| 239 | +</div> | |
| 240 | + | |
| 241 | +<div class="alertTop-placeholder"></div> | |
| 242 | + | |
| 243 | + <div class="mainHeader-bg"></div> | |
| 244 | + <nav class="mainHeader-nav"> | |
| 245 | + <div class="mainMenu"> | |
| 246 | + <sliding-panel class="topMenu" context="topMenu"> | |
| 247 | + <template #button> | |
| 248 | + <button class="topMenu-button" data-gtm-event="clicEntete-menuHamburger"> | |
| 249 | + <i class="topMenu-toggle icon-cms-burger" | |
| 250 | + aria-label="Ouvrir le menu secondaire"> | |
| 251 | + </i> | |
| 252 | + </button> | |
| 253 | + </template> | |
| 254 | + <template #close> | |
| 255 | + <button class="hamburger-close" type="button" aria-label="Fermer le menu secondaire"> | |
| 256 | + <i class="icon-cms-close"></i> | |
| 257 | + </button> | |
| 258 | + <img class="mobileMenu-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 259 | + </template> | |
| 260 | + <template #content> | |
| 261 | + <ul class="slidingPanel-utilsMenuList slidingPanel-level-0"> | |
| 262 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 263 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 264 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 265 | + data-gtm-event="clicMenu" | |
| 266 | + data-gtm-label="Appartements" | |
| 267 | + > | |
| 268 | + Appartements | |
| 269 | + </a> | |
| 270 | + </li> | |
| 271 | + | |
| 272 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 273 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 274 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 275 | + data-gtm-event="clicMenu" | |
| 276 | + data-gtm-label="Espaces commerciaux" | |
| 277 | + > | |
| 278 | + Espaces commerciaux | |
| 279 | + </a> | |
| 280 | + </li> | |
| 281 | + | |
| 282 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 283 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 284 | + href="https://logisco.com/fr/futurs-projets-immobiliers" | |
| 285 | + data-gtm-event="clicMenu" | |
| 286 | + data-gtm-label="Futurs projets immobiliers" | |
| 287 | + > | |
| 288 | + Futurs projets immobiliers | |
| 289 | + </a> | |
| 290 | + </li> | |
| 291 | + | |
| 292 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 293 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 294 | + href="https://logisco.com/fr/hotels" | |
| 295 | + data-gtm-event="clicMenu" | |
| 296 | + data-gtm-label="Hôtels" | |
| 297 | + > | |
| 298 | + Hôtels | |
| 299 | + </a> | |
| 300 | + </li> | |
| 301 | + | |
| 302 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 303 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 304 | + href="https://logisco.com/fr/emplois" | |
| 305 | + data-gtm-event="clicMenu" | |
| 306 | + data-gtm-label="Emplois" | |
| 307 | + > | |
| 308 | + Emplois | |
| 309 | + </a> | |
| 310 | + </li> | |
| 311 | + | |
| 312 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 313 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 314 | + href="https://logisco.com/fr/nouvel-arrivant" | |
| 315 | + data-gtm-event="clicMenu" | |
| 316 | + data-gtm-label="Nouvel arrivant" | |
| 317 | + > | |
| 318 | + Nouvel arrivant | |
| 319 | + </a> | |
| 320 | + </li> | |
| 321 | + | |
| 322 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 323 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 324 | + href="https://logisco.com/fr/a-propos" | |
| 325 | + data-gtm-event="clicMenu" | |
| 326 | + data-gtm-label="Qui est LOGISCO" | |
| 327 | + > | |
| 328 | + Qui est LOGISCO | |
| 329 | + </a> | |
| 330 | + </li> | |
| 331 | + | |
| 332 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 333 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 334 | + href="https://logisco.com/fr/blogue" | |
| 335 | + data-gtm-event="clicMenu" | |
| 336 | + data-gtm-label="Blogue" | |
| 337 | + > | |
| 338 | + Blogue | |
| 339 | + </a> | |
| 340 | + </li> | |
| 341 | + | |
| 342 | + </ul> | |
| 343 | + </template> | |
| 344 | + <template #footer> | |
| 345 | + <div class="slidingPanel-c2a"> | |
| 346 | + <a | |
| 347 | + data-gtm-event="clickButton" data-gtm-id="centre-daide" | |
| 348 | + | |
| 349 | + href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="c2a c2a-text c2a--tertiary" | |
| 350 | + aria-label="Centre d'aide" | |
| 351 | +> | |
| 352 | + <span class="c2a-name"> | |
| 353 | + Centre d’aide | |
| 354 | + </span> | |
| 355 | + <i class="icon-cms-arrow-right"></i> | |
| 356 | + </a> | |
| 357 | + | |
| 358 | + </div> | |
| 359 | + <div class="slidingPanel-c2a"> | |
| 360 | + <a | |
| 361 | + data-gtm-event="clickButton" data-gtm-id="nous-joindre" | |
| 362 | + | |
| 363 | + href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="c2a c2a-text c2a--tertiary" | |
| 364 | + aria-label="Nous joindre" | |
| 365 | +> | |
| 366 | + <span class="c2a-name"> | |
| 367 | + Nous joindre | |
| 368 | + </span> | |
| 369 | + <i class="icon-cms-arrow-right"></i> | |
| 370 | + </a> | |
| 371 | + | |
| 372 | + </div> | |
| 373 | + </template> | |
| 374 | + </sliding-panel> | |
| 375 | + <div class="mainHeader-brand"> | |
| 376 | + <a class="mainHeader-logoLink" href="https://logisco.com/fr"> | |
| 377 | + <img class="mainHeader-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 378 | +<img class="mainHeader-logo mainHeader-logo--white" src="https://logisco.com/theme/images/logo-white.svg" height="49" width="193" alt="Logisco"> </a> | |
| 379 | + </div> | |
| 380 | + <ul class="mainMenu-list"> | |
| 381 | + | |
| 382 | +<li class="mainMenu-item "> | |
| 383 | + <div class="mainMenu-element"> | |
| 384 | + <a class="mainMenu-elementLink" | |
| 385 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 386 | + data-gtm-event="clicMenu" | |
| 387 | + data-gtm-label="Appartements" | |
| 388 | + > | |
| 389 | + Appartements | |
| 390 | + </a> | |
| 391 | + </div> | |
| 392 | + </li> | |
| 393 | + | |
| 394 | + | |
| 395 | +<li class="mainMenu-item "> | |
| 396 | + <div class="mainMenu-element"> | |
| 397 | + <a class="mainMenu-elementLink" | |
| 398 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 399 | + data-gtm-event="clicMenu" | |
| 400 | + data-gtm-label="Espaces commerciaux" | |
| 401 | + > | |
| 402 | + Espaces commerciaux | |
| 403 | + </a> | |
| 404 | + </div> | |
| 405 | + </li> | |
| 406 | + | |
| 407 | + | |
| 408 | +<li class="mainMenu-item "> | |
| 409 | + <div class="mainMenu-element"> | |
| 410 | + <a class="mainMenu-elementLink" | |
| 411 | + href="https://logisco.com/fr/hotels" | |
| 412 | + data-gtm-event="clicMenu" | |
| 413 | + data-gtm-label="Hôtels" | |
| 414 | + > | |
| 415 | + Hôtels | |
| 416 | + </a> | |
| 417 | + </div> | |
| 418 | + </li> | |
| 419 | + | |
| 420 | + | |
| 421 | +<li class="mainMenu-item "> | |
| 422 | + <div class="mainMenu-element"> | |
| 423 | + <a class="mainMenu-elementLink" | |
| 424 | + href="https://logisco.com/fr/centre-daide" | |
| 425 | + data-gtm-event="clicMenu" | |
| 426 | + data-gtm-label="Centre d'aide" | |
| 427 | + > | |
| 428 | + Centre d'aide | |
| 429 | + </a> | |
| 430 | + </div> | |
| 431 | + </li> | |
| 432 | + | |
| 433 | + </ul> | |
| 434 | + <div class="mainHeader-links"> | |
| 435 | + <ul class="mainHeader-linksList"> | |
| 436 | + <li class="mainHeader-listItem"> | |
| 437 | + <a id="mainHeader-contact" | |
| 438 | + href="https://logisco.com/fr/nous-joindre" | |
| 439 | + class="icon-logisco-phone" | |
| 440 | + type="button" | |
| 441 | + aria-label="vanilla::header.phone" | |
| 442 | + data-gtm-event="clicEntete-appelLogisco" | |
| 443 | + data-contact-cp="https://logisco.com/fr/nous-joindre" | |
| 444 | + ></a> | |
| 445 | + </li> | |
| 446 | + <li class="mainHeader-listItem"> | |
| 447 | + <wishlist-redirect-icon | |
| 448 | + :href-url="'https://logisco.com/fr/favoris'" | |
| 449 | + :default-count="0" | |
| 450 | + label="Vers page 'Favoris'" | |
| 451 | + > | |
| 452 | + </wishlist-redirect-icon> | |
| 453 | + </li> | |
| 454 | + <li class="mainHeader-listItem"> | |
| 455 | + <reservation-panel | |
| 456 | + :default-count="0" | |
| 457 | + label="Vers le 'Planificateur de visites'" | |
| 458 | + > | |
| 459 | + </reservation-panel> | |
| 460 | + </li> | |
| 461 | + </ul> | |
| 462 | +</div> | |
| 463 | +</div> | |
| 464 | + </nav> | |
| 465 | + <div class="mainHeader-shadow"></div> | |
| 466 | +</header> | |
| 467 | + | |
| 468 | +<div class="alertTop-placeholder"></div> | |
| 469 | +<div class="mainHeader-placeholder"></div> | |
| 470 | + | |
| 471 | + <input id="currentId" type="hidden" value="99c9d25f-6144-4a2a-aa90-deac85f20faa"> | |
| 472 | + <input id="ancestors" type="hidden" value="["99c9a187-9f29-4895-a92e-5d01818e748d","990a9815-0c2d-41ed-be1a-0aea582d0ccf","9a745908-d289-4e4f-bafe-2c512caafe6c","9a74590b-a3e4-445c-906d-3a5ac3873dac","99c9a7fe-daa3-4bf2-a955-9f6eebc38f79","99c9d25f-6144-4a2a-aa90-deac85f20faa"]"> | |
| 473 | + <nav class="left-nav"> | |
| 474 | + </nav> | |
| 475 | + | |
| 476 | + <main id="main" class="vb js-vb" data-gtm-creative-slot="mainContent"> | |
| 477 | + <div class="unitHeader js-zoom"> | |
| 478 | + <div class="unitHeader-background"></div> | |
| 479 | + <div class="unitHeader-topContainer"> | |
| 480 | + <div class="unitHeader-text"> | |
| 481 | + <div class="breadcrumb-list"> | |
| 482 | + <a class="breadcrumb-item" href="https://logisco.com/fr">Accueil</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer">Appartements à louer</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec">Québec</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville">Loretteville</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline">Les Boisés de la Colline</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211">Appartement 211</a> </div> | |
| 483 | + <div class="unitHeader-imageWrapper--mobile"> | |
| 484 | + <div class="unitHeader-callToActions"> | |
| 485 | + <share-button | |
| 486 | + class="unitHeader-shareButton" | |
| 487 | + url="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211" | |
| 488 | + data-gtm-event="pageUnite-partager" | |
| 489 | + :classes="'c2a c2a-text c2a--secondary c2a-style--secondary'"> | |
| 490 | + <i class="icon-cms-social-share"></i> | |
| 491 | + <span class="c2a-name"> | |
| 492 | + Partager | |
| 493 | + </span> | |
| 494 | + </share-button> | |
| 495 | + <wishlist-toggle-icon :is-button="false" page-id="99c9d25f-6144-4a2a-aa90-deac85f20faa" | |
| 496 | + :exist="false"/> | |
| 497 | + </div> | |
| 498 | + <div class="unitHeader-imageOverlay"></div> | |
| 499 | + <img class="js-zoomMobileImage" width="1200" height="1350" src="https://logisco.com/static/vb/2468-1200/plan-618-331-planlocation111-211-311-411.webp" | |
| 500 | + alt="Plan Appartement 211"> | |
| 501 | + </div> | |
| 502 | + <h1 class="unitHeader-label">Appartement 211 | |
| 503 | + <span class="unitHeader-labelDivider">•</span> | |
| 504 | + <span class="unitHeader-label--small">Les Boisés de la Colline</span> | |
| 505 | + </h1> | |
| 506 | + <a class="unitHeader-link" href="https://www.google.com/maps?q=211-11625+Boulevard+de+la+Colline%2C+Qu%C3%A9bec%2C+Qu%C3%A9bec%2C+G2A+2E1" target="_blank" | |
| 507 | + data-gtm-event="pageUnite-lienAdresse"> | |
| 508 | + <h2 class="unitHeader-address">211-11625 Boulevard de la Colline, Québec, Québec, G2A 2E1</h2> | |
| 509 | + </a> | |
| 510 | + </div> | |
| 511 | + </div> | |
| 512 | + <div class="unitHeader-bottomContainer"> | |
| 513 | + <div class="unitHeader-bottomLeft"> | |
| 514 | + <div class="unitHeader-callToActions"> | |
| 515 | + <share-button | |
| 516 | + class="unitHeader-shareButton" | |
| 517 | + url="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211" | |
| 518 | + data-gtm-event="pageUnite-partager" | |
| 519 | + :classes="'c2a c2a-text c2a--secondary c2a-style--secondary'" | |
| 520 | + data-gtm-page-type="Unité" data-gtm-page-name="Appartement 211" data-gtm-project-id="618" data-gtm-unit-id="1511" data-gtm-unit-type="APARTMENT" data-gtm-available="1" data-gtm-is-in-wishlist="" data-gtm-is-in-reservation="" data-gtm-unit-price="152.4" data-gtm-nom-liste="unites_du_projet_les_boises_de_la_colline"> | |
| 521 | + <i class="icon-cms-social-share"></i> | |
| 522 | + <span class="c2a-name"> | |
| 523 | + Partager | |
| 524 | + </span> | |
| 525 | + </share-button> | |
| 526 | + <wishlist-toggle-icon :is-button="false" page-id="99c9d25f-6144-4a2a-aa90-deac85f20faa" | |
| 527 | + :exist="false"/> | |
| 528 | + </div> | |
| 529 | + <div class="unitHeader-imageWrapper js-zoomMagnifierContainer"> | |
| 530 | + <div class="unitHeader-imageOverlay"></div> | |
| 531 | + <img class="js-zoomImage" width="1200" height="1350" src="https://logisco.com/static/vb/2468-1200/plan-618-331-planlocation111-211-311-411.webp" | |
| 532 | + alt="Plan Appartement 211"> | |
| 533 | + </div> | |
| 534 | + | |
| 535 | + | |
| 536 | + <div class="projectServices"> | |
| 537 | + <div class="projectServices-container"> | |
| 538 | + <h2 class="projectServices-title"> | |
| 539 | + Inclusions | |
| 540 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 541 | + <span class="tooltip-container js-tooltipContainer"> | |
| 542 | + <span class="tooltip-subtitle">Il s’agit des inclusions comprises dans le prix mensuel de votre logement.</span> | |
| 543 | + </span> | |
| 544 | + </h2> | |
| 545 | + <ul class="projectServices-list"> | |
| 546 | + <li class="projectServices-itemContainer"> | |
| 547 | + <h3 class="projectServices-listItem"> | |
| 548 | + <i class="projectServices-icon icon-logisco-service--outdoor_or_indoor_parking"></i> | |
| 549 | + Un stationnement intérieur ou extérieur | |
| 550 | + </h3> | |
| 551 | + </li> | |
| 552 | + </ul> | |
| 553 | + </div> | |
| 554 | + </div> | |
| 555 | + | |
| 556 | + | |
| 557 | + <div class="projectServices"> | |
| 558 | + <div class="projectServices-container"> | |
| 559 | + <h2 class="projectServices-title"> | |
| 560 | + Particularités | |
| 561 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 562 | + <span class="tooltip-container js-tooltipContainer"> | |
| 563 | + <span class="tooltip-subtitle">Il s’agit d’éléments distinctifs propres à cet appartement.</span> | |
| 564 | + </span> | |
| 565 | + </h2> | |
| 566 | + <ul class="projectServices-list"> | |
| 567 | + <li class="projectServices-itemContainer"> | |
| 568 | + <h3 class="projectServices-listItem"> | |
| 569 | + <i class="projectServices-icon icon-logisco-service--entrance_washer_dryer"></i> | |
| 570 | + Entrée laveuse et sécheuse | |
| 571 | + </h3> | |
| 572 | + </li> | |
| 573 | + <li class="projectServices-itemContainer"> | |
| 574 | + <h3 class="projectServices-listItem"> | |
| 575 | + <i class="projectServices-icon icon-logisco-service--dishwasher_connection"></i> | |
| 576 | + Entrée lave-vaisselle | |
| 577 | + </h3> | |
| 578 | + </li> | |
| 579 | + </ul> | |
| 580 | + </div> | |
| 581 | + </div> | |
| 582 | + | |
| 583 | + | |
| 584 | + <div class="projectServices"> | |
| 585 | + <div class="projectServices-container"> | |
| 586 | + <h2 class="projectServices-title"> | |
| 587 | + Services offerts | |
| 588 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 589 | + <span class="tooltip-container js-tooltipContainer"> | |
| 590 | + <span class="tooltip-subtitle">Il s'agit des services offerts aux locataires de ce projet immobilier. Notez que les services peuvent varier d'un immeuble à l'autre.</span> | |
| 591 | + </span> | |
| 592 | + </h2> | |
| 593 | + <ul class="projectServices-list"> | |
| 594 | + <li class="projectServices-itemContainer"> | |
| 595 | + <h3 class="projectServices-listItem"> | |
| 596 | + <i class="projectServices-icon icon-logisco-service--elevator"></i> | |
| 597 | + Ascenseur | |
| 598 | + </h3> | |
| 599 | + </li> | |
| 600 | + <li class="projectServices-itemContainer"> | |
| 601 | + <h3 class="projectServices-listItem"> | |
| 602 | + <i class="projectServices-icon icon-logisco-service--concrete_floor"></i> | |
| 603 | + Plancher de béton | |
| 604 | + </h3> | |
| 605 | + </li> | |
| 606 | + <li class="projectServices-itemContainer"> | |
| 607 | + <h3 class="projectServices-listItem"> | |
| 608 | + <i class="projectServices-icon icon-logisco-service--intercom"></i> | |
| 609 | + Interphone | |
| 610 | + </h3> | |
| 611 | + </li> | |
| 612 | + <li class="projectServices-itemContainer"> | |
| 613 | + <h3 class="projectServices-listItem"> | |
| 614 | + <i class="projectServices-icon icon-logisco-service--outdoor_parking"></i> | |
| 615 | + Stationnement extérieur | |
| 616 | + </h3> | |
| 617 | + </li> | |
| 618 | + <li class="projectServices-itemContainer"> | |
| 619 | + <h3 class="projectServices-listItem"> | |
| 620 | + <i class="projectServices-icon icon-logisco-service--disabled_access"></i> | |
| 621 | + Rampe d'accès pour personnes à mobilité réduite | |
| 622 | + </h3> | |
| 623 | + </li> | |
| 624 | + <li class="projectServices-itemContainer"> | |
| 625 | + <h3 class="projectServices-listItem"> | |
| 626 | + <i class="projectServices-icon icon-logisco-service--indoor_parking"></i> | |
| 627 | + Stationnement intérieur ($) | |
| 628 | + </h3> | |
| 629 | + </li> | |
| 630 | + <li class="projectServices-itemContainer"> | |
| 631 | + <h3 class="projectServices-listItem"> | |
| 632 | + <i class="projectServices-icon icon-logisco-service--charging_station"></i> | |
| 633 | + Borne de recharge électrique ($) | |
| 634 | + </h3> | |
| 635 | + </li> | |
| 636 | + <li class="projectServices-itemContainer"> | |
| 637 | + <h3 class="projectServices-listItem"> | |
| 638 | + <i class="projectServices-icon icon-logisco-service--secure_post_office_locker"></i> | |
| 639 | + Espace sécurisé pour colis | |
| 640 | + </h3> | |
| 641 | + </li> | |
| 642 | + <li class="projectServices-itemContainer"> | |
| 643 | + <h3 class="projectServices-listItem"> | |
| 644 | + <i class="projectServices-icon icon-logisco-service--bike_rack"></i> | |
| 645 | + Support pour vélos | |
| 646 | + </h3> | |
| 647 | + </li> | |
| 648 | + <li class="projectServices-itemContainer"> | |
| 649 | + <h3 class="projectServices-listItem"> | |
| 650 | + <i class="projectServices-icon icon-logisco-service--guest_parking"></i> | |
| 651 | + Stationnement visiteur | |
| 652 | + </h3> | |
| 653 | + </li> | |
| 654 | + </ul> | |
| 655 | + </div> | |
| 656 | + </div> | |
| 657 | + | |
| 658 | + | |
| 659 | + <div class="projectServices"> | |
| 660 | + <div class="projectServices-container"> | |
| 661 | + <h2 class="projectServices-title"> | |
| 662 | + Espaces communs | |
| 663 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 664 | + <span class="tooltip-container js-tooltipContainer"> | |
| 665 | + <span class="tooltip-subtitle">Il s'agit des espaces communs accessibles à tous les locataires d'un projet immobilier, peu importe dans quel immeuble ils se trouvent.</span> | |
| 666 | + </span> | |
| 667 | + </h2> | |
| 668 | + <ul class="projectServices-list"> | |
| 669 | + <li class="projectServices-itemContainer"> | |
| 670 | + <h3 class="projectServices-listItem"> | |
| 671 | + <i class="projectServices-icon icon-logisco-service--unheated_outdoor_pool"></i> | |
| 672 | + Piscine extérieure | |
| 673 | + </h3> | |
| 674 | + </li> | |
| 675 | + </ul> | |
| 676 | + </div> | |
| 677 | + </div> | |
| 678 | + </div> | |
| 679 | + <div class="unitHeader-bottomRight"> | |
| 680 | + <div class="unitHeader-unitInfos js-zoomDisplayContainer"> | |
| 681 | + <h3 class="unitHeader-price"> | |
| 682 | + <span class="unitHeader-priceNumber">1524 $</span> | |
| 683 | + <span class="unitHeader-priceText">/ mois</span> | |
| 684 | + </h3> | |
| 685 | + <div class="unitHeader-infosContainer"> | |
| 686 | + <div class="unitHeader-info"> | |
| 687 | + <h3 class="unitHeader-infoLabel">Nombre de pièces</h3> | |
| 688 | + <span class="unitHeader-infoValue">4 1/2</span> | |
| 689 | + </div> | |
| 690 | + <div class="unitHeader-info"> | |
| 691 | + <h3 class="unitHeader-infoLabel">Superficie totale</h3> | |
| 692 | + <span class="unitHeader-infoValue">1003 pi²</span> | |
| 693 | + </div> | |
| 694 | + <div class="unitHeader-info"> | |
| 695 | + <h3 class="unitHeader-infoLabel">Étage</h3> | |
| 696 | + <span class="unitHeader-infoValue">2</span> | |
| 697 | + </div> | |
| 698 | + | |
| 699 | + <div class="unitHeader-info"> | |
| 700 | + <h3 class="unitHeader-infoLabel">Disponibilité</h3> | |
| 701 | + <span class="unitHeader-infoValue">Maintenant</span> | |
| 702 | + </div> | |
| 703 | + </div> | |
| 704 | + <div class="unitHeader-infosLink"> | |
| 705 | + <div class="unitHeader-infosGroup"> | |
| 706 | + <add-reservation-button :unit-page-id="'99c9d25f-6144-4a2a-aa90-deac85f20faa'"> | |
| 707 | + <template #text> | |
| 708 | + Planifier une visite | |
| 709 | + </template> | |
| 710 | + </add-reservation-button> | |
| 711 | + <modal-button class-names="c2a c2a-text c2a--secondary" aria-label="Joindre l’agent de location " | |
| 712 | + modal-id="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83" | |
| 713 | + data-gtm-event="pageUnite-clicJoindreAgentLocation"> | |
| 714 | + <span class="c2a-name"> | |
| 715 | + Joindre l’agent de location | |
| 716 | + </span> | |
| 717 | + </modal-button> | |
| 718 | + </div> | |
| 719 | + <a class="c2a c2a-text c2a--tertiary c2a-download" | |
| 720 | + href="https://pdf.logisco.com/pdf-modele.ashx?id=618&Unite=211&IDImmeuble=173&IDUnite=1511" | |
| 721 | + data-gtm-event="pageUnite-telechargerFiche"> | |
| 722 | + <span class="c2a-name"> | |
| 723 | + Télécharger la fiche | |
| 724 | + </span> | |
| 725 | + <i class="icon-logisco-download"></i> | |
| 726 | + </a> | |
| 727 | + </div> | |
| 728 | + </div> | |
| 729 | + </div> | |
| 730 | + </div> | |
| 731 | +</div> | |
| 732 | + | |
| 733 | +<div class="unitSection"> | |
| 734 | + <div class="blockText blockText-style--medium"> | |
| 735 | + <p class="blockText-surtitle">Découvrez le secteur</p> | |
| 736 | + <h2 class="blockText-title">Explorez les services et attraits à proximité de Les Boisés de la Colline</h2> | |
| 737 | + </div> | |
| 738 | + | |
| 739 | + <div | |
| 740 | + id="local-content-widget" | |
| 741 | + style="height: 700px;" | |
| 742 | + data-local-logic-lat="46.859281" | |
| 743 | + data-local-logic-lng="-71.349056" | |
| 744 | + data-local-logic-transport="false" | |
| 745 | + data-local-logic-transport-pedestrian-friendly="false" | |
| 746 | + data-local-logic-transport-cycling-friendly="false" | |
| 747 | + data-local-logic-transport-transit-friendly="false" | |
| 748 | + data-local-logic-transport-car-friendly="false" | |
| 749 | + data-local-logic-education="false" | |
| 750 | + data-local-logic-education-daycares="false" | |
| 751 | + data-local-logic-education-primary-schools="false" | |
| 752 | + data-local-logic-education-high-schools="false" | |
| 753 | + data-local-logic-amenities="false" | |
| 754 | + data-local-logic-amenities-shopping="false" | |
| 755 | + data-local-logic-amenities-groceries="false" | |
| 756 | + data-local-logic-amenities-restaurants="false" | |
| 757 | + data-local-logic-amenities-cafes="false" | |
| 758 | + data-local-logic-character="false" | |
| 759 | + data-local-logic-character-nightlife="false" | |
| 760 | + data-local-logic-character-vibrant="false" | |
| 761 | + data-local-logic-character-historic="false" | |
| 762 | + data-local-logic-character-quiet="false" | |
| 763 | + data-local-logic-nature="false" | |
| 764 | + data-local-logic-nature-parks="false" | |
| 765 | + data-local-logic-nature-greenery="false" | |
| 766 | + data-local-logic-wellness="false" | |
| 767 | + data-local-logic-health="false" | |
| 768 | + ></div> | |
| 769 | +</div> | |
| 770 | + | |
| 771 | +<div class="unitSection"> | |
| 772 | + <section id="plans" class="project-plans"> | |
| 773 | + <plan-view | |
| 774 | + project-type="RESIDENTIAL" | |
| 775 | + :project="[{"Available":true,"SourceId":50,"Code":"332","Address":{"NumberStreet":"11633 Boulevard de la Colline","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2A 2E1","Neighborhood":"Loretteville"},"file_id":"685","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"103":{"page_id":"99c9b367-0e35-4c8e-9e82-48420a744fcf","available":false,"unit_number":"103","shape":"poly","coords":"506,26,620,28,622,142,618,142,598,162,504,162"},"105":{"page_id":"99c9b381-01b9-4ef8-a67e-567596c4f2a6","available":false,"unit_number":"105","shape":"poly","coords":"634,162,682,162,682,176,736,176,738,268,630,268,630,166"},"106":{"page_id":"99c9b34e-aa91-4b7e-b2bf-b2f903fcd332","available":false,"unit_number":"106","shape":"poly","coords":"630,270,738,268,738,408,638,406,630,396"},"109":{"page_id":"99c9b377-89c9-4617-aad6-4ba54ca547d9","available":false,"unit_number":"109","shape":"poly","coords":"654,592,762,594,760,684,706,684,706,698,660,700,654,694,654,694"},"111":{"page_id":"99c9b361-d08b-467b-87b7-04f031b30caa","available":false,"unit_number":"111","shape":"poly","coords":"530,700,626,700,628,702,646,722,646,834,530,834"},"113":{"page_id":"99c9b364-7344-4b72-9ee7-bd37813d3445","available":false,"unit_number":"113","shape":"poly","coords":"504,424,624,426,636,438,636,564,530,562,530,474,504,472"},"101":{"page_id":"99c9b370-567f-4fec-8abf-db41c4fadf2f","available":false,"unit_number":"101","shape":"poly","coords":"506,266,612,266,612,368,610,372,504,372"},"104":{"page_id":"99c9b36b-9cd0-4582-9c03-36e87775b2a9","available":false,"unit_number":"104","shape":"rect","coords":"622,28,736,144"},"107":{"page_id":"99c9b373-de95-4e98-9c14-a2e43213c798","available":false,"unit_number":"107","shape":"rect","coords":"654,408,762,500"},"108":{"page_id":"99c9b375-a492-40a5-95be-135a76e2f9e1","available":false,"unit_number":"108","shape":"rect","coords":"654,502,760,592"},"110":{"page_id":"99c9b360-7f37-4b8e-882f-7917e50e62f0","available":false,"unit_number":"110","shape":"rect","coords":"646,716,760,830"},"112":{"page_id":"99c9b363-2557-4852-8311-1c0ad2b70d71","available":false,"unit_number":"112","shape":"rect","coords":"530,564,636,698"},"102":{"page_id":"99c9b372-3136-469c-8348-3f5dc9610332","available":false,"unit_number":"102","shape":"rect","coords":"506,162,612,264"}},"file_id":"4245","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4245-800/plan-618-332-plan20location20niveau201.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"203":{"page_id":"99c9b34b-945f-4846-b8a9-cf313d80ddf5","available":false,"unit_number":"203","shape":"poly","coords":"506,26,620,28,622,142,618,142,598,162,504,162"},"205":{"page_id":"99c9b383-ec01-4b93-a8f3-2b0f0319c34d","available":false,"unit_number":"205","shape":"poly","coords":"634,162,682,162,682,176,736,176,738,268,630,268,630,166"},"206":{"page_id":"99c9b34a-4a75-43cd-9ad6-5afff6b49a09","available":false,"unit_number":"206","shape":"poly","coords":"630,270,738,268,738,408,638,406,630,396"},"209":{"page_id":"99c9b37e-0c48-44c8-a769-06eb4dc96ef1","available":false,"unit_number":"209","shape":"poly","coords":"654,592,762,594,760,684,706,684,706,698,660,700,654,694,654,694"},"211":{"page_id":"99c9b354-f622-41a0-8f26-86d6cdc61c4e","available":false,"unit_number":"211","shape":"poly","coords":"530,700,626,700,628,702,646,722,646,834,530,834"},"213":{"page_id":"99c9b35b-b5a7-4e64-b729-9e7fe535fffb","available":false,"unit_number":"213","shape":"poly","coords":"504,424,624,426,636,438,636,564,530,562,530,474,504,472"},"204":{"page_id":"99c9b34d-28b8-4547-ae29-1100b78ec281","available":false,"unit_number":"204","shape":"rect","coords":"622,28,736,144"},"207":{"page_id":"99c9b378-cf5a-4c37-8703-9013997d0b8f","available":false,"unit_number":"207","shape":"rect","coords":"654,408,762,500"},"208":{"page_id":"99c9b37a-6f90-4755-8d9e-0f80c842cb80","available":false,"unit_number":"208","shape":"rect","coords":"654,502,760,592"},"210":{"page_id":"99c9b351-025d-47af-bb44-afaf66617b8f","available":false,"unit_number":"210","shape":"rect","coords":"646,716,760,830"},"212":{"page_id":"99c9b358-41af-4c54-9b6e-56b61a1a58ca","available":false,"unit_number":"212","shape":"rect","coords":"530,564,636,698"},"202":{"page_id":"99c9b382-419c-47ff-9feb-afe8434ec5a0","available":false,"unit_number":"202","shape":"rect","coords":"506,162,612,264"},"201":{"page_id":"99c9b365-be87-41b8-aac6-f70cdd682b8c","available":false,"unit_number":"201","shape":"poly","coords":"504,266,612,266,614,368,608,374,562,372,564,424,504,424"}},"file_id":"4246","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4246-800/plan-618-332-plan20location20niveau202.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"303":{"page_id":"99c9b347-64e3-42ec-84f6-380a3d066a92","available":false,"unit_number":"303","shape":"poly","coords":"506,26,620,28,622,142,618,142,598,162,504,162"},"305":{"page_id":"99c9b386-d01d-4d09-913d-2e8e4d230caa","available":false,"unit_number":"305","shape":"poly","coords":"634,162,682,162,682,176,736,176,738,268,630,268,630,166"},"306":{"page_id":"99c9b337-f82e-4c16-8b36-9a7507ec0791","available":false,"unit_number":"306","shape":"poly","coords":"630,270,738,268,738,408,638,406,630,396"},"311":{"page_id":"99c9b33f-c97e-4942-8fd7-31c0ec3515c9","available":false,"unit_number":"311","shape":"poly","coords":"530,700,626,700,628,702,646,722,646,834,530,834"},"313":{"page_id":"99c9b343-9c0a-4eca-9c29-d8f1032a90b2","available":false,"unit_number":"313","shape":"poly","coords":"504,424,624,426,636,438,636,564,530,562,530,474,504,472"},"304":{"page_id":"99c9b349-13ee-4a62-8ef5-d9011e6ebc8d","available":false,"unit_number":"304","shape":"rect","coords":"622,28,736,144"},"310":{"page_id":"99c9b33c-46dc-48bd-a965-4741833100a4","available":false,"unit_number":"310","shape":"rect","coords":"646,716,760,830"},"312":{"page_id":"99c9b342-165c-435d-91c7-0185db1f7abc","available":false,"unit_number":"312","shape":"rect","coords":"530,564,636,698"},"302":{"page_id":"99c9b385-84e6-4df0-8540-b1bad76459d7","available":false,"unit_number":"302","shape":"rect","coords":"506,162,612,264"},"301":{"page_id":"99c9b35e-edc3-42fb-8730-67fee33659d7","available":false,"unit_number":"301","shape":"poly","coords":"504,266,612,266,614,368,608,374,562,372,564,424,504,424"},"308":{"page_id":"99c9b33a-d90b-4785-8fc5-2973ad7026c1","available":false,"unit_number":"308","shape":"poly","coords":"656,550,762,550,762,686,706,686,706,698,660,698,654,694,656,570"},"307":{"page_id":"99c9b339-6afb-4e59-b7ad-8f888fe63e66","available":false,"unit_number":"307","shape":"rect","coords":"654,408,760,546"}},"file_id":"4247","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4247-800/plan-618-332-plan20location20niveau203.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"403":{"page_id":"99c9b36d-1ac6-45d0-a0a6-34a591b9a17f","available":false,"unit_number":"403","shape":"poly","coords":"506,26,620,28,622,142,618,142,598,162,504,162"},"405":{"page_id":"99c9b388-34c5-4605-b8c3-005da7f59774","available":false,"unit_number":"405","shape":"poly","coords":"634,162,682,162,682,176,736,176,738,268,630,268,630,166"},"406":{"page_id":"99c9b32a-e3aa-490b-bc4b-4d365961300c","available":false,"unit_number":"406","shape":"poly","coords":"630,270,738,268,738,408,638,406,630,396"},"411":{"page_id":"99c9b333-87a0-4e2d-b100-69c6ca275f0a","available":false,"unit_number":"411","shape":"poly","coords":"530,700,626,700,628,702,646,722,646,834,530,834"},"413":{"page_id":"99c9b336-e3e0-4c11-b1bf-956322e2d968","available":false,"unit_number":"413","shape":"poly","coords":"504,424,624,426,636,438,636,564,530,562,530,474,504,472"},"404":{"page_id":"99c9b36e-65b2-454c-a5e8-c626b2a19620","available":false,"unit_number":"404","shape":"rect","coords":"622,28,736,144"},"410":{"page_id":"99c9b331-d435-4dd9-809d-5ac419cf0aeb","available":false,"unit_number":"410","shape":"rect","coords":"646,716,760,830"},"412":{"page_id":"99c9b335-327e-42aa-8a2f-9e96c69c1029","available":false,"unit_number":"412","shape":"rect","coords":"530,564,636,698"},"402":{"page_id":"99c9b389-9f6f-4794-9319-b95ad4697dd7","available":false,"unit_number":"402","shape":"rect","coords":"506,162,612,264"},"401":{"page_id":"99c9b345-bac5-4a0c-bcfa-25f1b78effc8","available":false,"unit_number":"401","shape":"poly","coords":"504,266,612,266,614,368,608,374,562,372,564,424,504,424"},"408":{"page_id":"99c9b330-3c20-4f22-b133-8a86c9f54ea2","available":false,"unit_number":"408","shape":"poly","coords":"656,550,762,550,762,686,706,686,706,698,660,698,654,694,656,570"},"407":{"page_id":"99c9b32e-a355-4b13-b644-263041d07448","available":false,"unit_number":"407","shape":"rect","coords":"654,408,760,546"}},"file_id":"4248","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4248-800/plan-618-332-plan20location20niveau204.webp"}},"areas":[{"item_id":"331","shape":"poly","coords":"69,420,236,420,236,483,252,484,252,549,236,548,236,675,269,675,269,707,239,706,239,751,270,751,270,782,254,782,254,864,269,864,269,928,253,929,253,992,86,992,86,949,70,949,70,917,100,917,100,876,70,876,70,846,86,846,86,757,69,756,71,725,68,725,68,688,52,688,53,625,68,625,68,565,53,565,53,535,83,534,83,495,53,495,53,465,69,464,68,429","building_id":173,"available":true},{"item_id":"332","shape":"poly","coords":"456,735,621,735,621,777,639,778,637,810,619,809,620,848,638,847,638,879,619,879,620,970,637,970,637,970,637,1037,655,1036,655,1101,638,1101,639,1160,655,1160,655,1191,637,1191,637,1230,655,1230,655,1262,638,1262,637,1304,473,1303,473,1241,456,1241,456,1177,473,1176,474,1047,439,1048,439,1021,457,1020,457,973,440,973,440,944,456,944,457,858,439,860,440,799,457,799","building_id":50,"available":false},{"item_id":"333","shape":"poly","coords":"720,572,781,572,783,553,846,555,846,573,976,572,976,537,1006,537,1006,555,1050,555,1050,539,1080,539,1080,555,1164,556,1166,539,1227,539,1227,556,1288,556,1288,718,1244,717,1246,734,1216,733,1217,717,1174,717,1174,734,1147,734,1147,718,1051,717,1051,736,986,735,986,753,924,752,925,733,861,734,862,751,835,752,834,734,794,735,793,754,764,752,763,736,721,736","building_id":51,"available":true},{"item_id":"334","shape":"poly","coords":"1353,733,1520,733,1521,798,1537,797,1536,862,1519,860,1520,989,1554,988,1554,1021,1525,1020,1525,1064,1554,1064,1554,1095,1538,1095,1538,1177,1554,1177,1554,1242,1539,1242,1538,1305,1371,1305,1372,1261,1355,1260,1356,1229,1384,1230,1385,1189,1357,1190,1356,1158,1371,1159,1372,1067,1356,1067,1356,1038,1354,1037,1353,1002,1338,1002,1339,938,1354,938,1354,878,1339,877,1339,848,1367,848,1366,808,1339,809,1338,779,1354,778","building_id":52,"available":true}],"plan_url":"https://logisco.com/static/vb/685-800/plan-618-331-338-planimplantation-2017.webp"},{"Available":true,"SourceId":51,"Code":"333","Address":{"NumberStreet":"11645 Boulevard de la Colline","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2A 2E1","Neighborhood":"Loretteville"},"file_id":"685","plan_size":{"width":2000,"height":1850},"Floors":{"2":{"level_name":"\u00c9tage #2","level":2,"units":{"211":{"page_id":"99c9b3dc-6b6d-46f5-a7db-7412063c6741","available":false,"unit_number":"211","shape":"poly","coords":"120,234,290,236,294,362,268,386,122,384,122,378"},"212":{"page_id":"99c9b3dd-f29a-4c27-aba4-a476a0780899","available":false,"unit_number":"212","shape":"poly","coords":"294,236,474,238,472,374,298,374"},"213":{"page_id":"99c9b3df-beed-41aa-a803-ab09eef3aa41","available":false,"unit_number":"213","shape":"poly","coords":"474,236,582,232,584,202,652,204,648,356,632,374,474,376"},"201":{"page_id":"99c9b3f1-d628-4fc4-8eca-4b007debfc2b","available":false,"unit_number":"201","shape":"poly","coords":"654,204,852,202,856,342,724,344,714,334,716,278,654,280"},"202":{"page_id":"99c9b39c-89f0-4aad-bf40-5cbae7a343d3","available":false,"unit_number":"202","shape":"poly","coords":"858,204,986,204,988,342,856,342,856,342"},"203":{"page_id":"99c9b3c6-aaf5-4344-b785-f0f5312618d1","available":false,"unit_number":"203","shape":"poly","coords":"992,202,1162,204,1160,352,1020,354,992,328,990,204"},"204":{"page_id":"99c9b3c8-23c0-4527-8f51-46927c4387c5","available":true,"unit_number":"204","shape":"poly","coords":"1010,356,1158,352,1160,502,1008,504"},"205":{"page_id":"99c9b39d-e241-4186-a593-e2549ccc4367","available":false,"unit_number":"205","shape":"poly","coords":"852,364,974,364,986,372,986,430,966,430,970,504,850,502"},"206":{"page_id":"99c9b3c4-f538-4306-b536-92c81bb21226","available":false,"unit_number":"206","shape":"poly","coords":"672,378,688,364,848,364,848,508,672,504,668,372"},"207":{"page_id":"99c9b395-3c91-4a7c-8af1-0e46b58e869a","available":false,"unit_number":"207","shape":"poly","coords":"552,396,668,396,670,536,550,536"},"208":{"page_id":"99c9b396-d280-43d2-bdb3-71d3a4d144a7","available":false,"unit_number":"208","shape":"poly","coords":"550,398,550,538,430,536,430,396"},"209":{"page_id":"99c9b398-75aa-4eb4-827c-3a1fa06c17ed","available":false,"unit_number":"209","shape":"poly","coords":"296,462,296,404,304,396,428,398,428,538,312,536,314,464"},"210":{"page_id":"99c9b3da-ca6d-4dbb-9596-4d7495462866","available":false,"unit_number":"210","shape":"poly","coords":"122,386,274,388,274,538,122,536"}},"file_id":"4249","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4249-800/plan-618-333-planlocationniveau2.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"311":{"page_id":"99c9b3d3-5ef5-420b-907a-566c6c8a8527","available":false,"unit_number":"311","shape":"poly","coords":"108,262,280,262,280,386,252,410,108,410"},"312":{"page_id":"99c9b3d5-325a-4864-8182-b98675253ed8","available":true,"unit_number":"312","shape":"poly","coords":"282,260,460,262,458,400,280,400"},"313":{"page_id":"99c9b3d6-f229-47ed-b34c-34911a495408","available":false,"unit_number":"313","shape":"poly","coords":"462,260,574,260,574,228,636,228,634,380,618,400,458,400"},"301":{"page_id":"99c9b3e4-d3c8-451f-accc-2fc0a232cd4a","available":false,"unit_number":"301","shape":"poly","coords":"640,230,840,230,842,368,708,368,698,358,702,304,636,304"},"302":{"page_id":"99c9b39f-427f-490a-96fd-e25fe339c0f1","available":false,"unit_number":"302","shape":"poly","coords":"844,230,976,230,972,370,842,368"},"303":{"page_id":"99c9b3c1-b4c7-4078-99e7-96675d8b7dda","available":false,"unit_number":"303","shape":"poly","coords":"978,230,1146,230,1146,380,1004,380,972,348"},"304":{"page_id":"99c9b3c3-26d2-4621-90c4-3eefb91bf3b8","available":false,"unit_number":"304","shape":"poly","coords":"998,382,1148,380,1148,530,998,528"},"305":{"page_id":"99c9b39a-2ec6-4a5f-80f2-a85efb1e0b0e","available":false,"unit_number":"305","shape":"poly","coords":"838,392,964,390,972,398,972,454,952,454,954,532,836,528"},"306":{"page_id":"99c9b3c9-9311-4ce7-be02-1384efa952aa","available":false,"unit_number":"306","shape":"poly","coords":"672,390,832,390,832,530,652,528,652,406"},"307":{"page_id":"99c9b3cb-7508-4834-8ca7-19221d1ab15a","available":false,"unit_number":"307","shape":"poly","coords":"476,422,652,422,658,562,472,560"},"308":{"page_id":"99c9b3cf-a822-4511-9f04-b30bdbf9ed9c","available":false,"unit_number":"308","shape":"poly","coords":"282,428,288,420,476,422,474,562,300,560,302,490,280,488"},"310":{"page_id":"99c9b3d1-7e57-41fe-885e-9d8503ef77b4","available":false,"unit_number":"310","shape":"poly","coords":"108,412,260,412,258,560,108,560"}},"file_id":"4250","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4250-800/plan-618-333-planlocationniveau3.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"411":{"page_id":"99c9b3b6-5ab8-4bb7-a6cf-52c642ebe10a","available":false,"unit_number":"411","shape":"poly","coords":"114,262,288,264,284,386,258,410,114,412"},"412":{"page_id":"99c9b3b8-8e22-4c1c-9ed4-6cd0622974e7","available":false,"unit_number":"412","shape":"poly","coords":"288,262,464,262,464,400,288,400"},"413":{"page_id":"99c9b3bc-d6e1-44d0-bf2d-6b6a668bc6ed","available":false,"unit_number":"413","shape":"poly","coords":"466,262,580,262,580,230,644,230,642,382,626,400,464,400"},"401":{"page_id":"99c9b3d9-4c01-4b52-bfd3-a174dd6e666d","available":false,"unit_number":"401","shape":"poly","coords":"646,232,848,232,846,370,716,368,704,360,706,304,644,306"},"402":{"page_id":"99c9b3a1-0db0-433b-8f02-18c05ae73c0a","available":false,"unit_number":"402","shape":"poly","coords":"848,232,980,230,980,368,846,368"},"403":{"page_id":"99c9b3be-4193-4cdf-af61-e8d8b9cca831","available":false,"unit_number":"403","shape":"poly","coords":"982,230,1152,230,1152,380,1010,378,982,350"},"404":{"page_id":"99c9b3bf-fdac-4cb9-bf31-e7a637fda6d1","available":false,"unit_number":"404","shape":"poly","coords":"1004,382,1152,382,1152,530,1000,530,1000,494"},"405":{"page_id":"99c9b3a3-1ae9-4659-8b9b-c49f0962df69","available":false,"unit_number":"405","shape":"poly","coords":"844,392,972,390,980,398,978,456,958,456,960,530,842,530"},"406":{"page_id":"99c9b3ae-aae8-4d68-bb93-64706a37209a","available":false,"unit_number":"406","shape":"poly","coords":"678,392,838,392,842,530,662,530,662,406"},"407":{"page_id":"99c9b3b0-82c7-455a-af91-5d3e5c1b4ae6","available":false,"unit_number":"407","shape":"poly","coords":"482,426,660,422,662,562,480,562"},"408":{"page_id":"99c9b3b2-72b3-40a7-9a25-8e852bc8dd16","available":false,"unit_number":"408","shape":"poly","coords":"294,424,476,424,478,564,304,562,304,490,284,488,284,432"},"410":{"page_id":"99c9b3b4-5dfd-4c0f-b106-d106be07188d","available":false,"unit_number":"410","shape":"poly","coords":"112,414,264,414,262,562,114,562"}},"file_id":"4251","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4251-800/plan-618-333-planlocationniveau4.webp"},"1":{"level_name":"\u00c9tage #1","level":1,"units":{"111":{"page_id":"99c9b3ec-f81e-4a49-bb1a-f404d8df6d4b","available":true,"unit_number":"111","shape":"poly","coords":"286,264,112,262,118,418,262,414,290,388"},"112":{"page_id":"99c9b3ee-9100-4024-b83a-d46e3d7da3cb","available":false,"unit_number":"112","shape":"poly","coords":"292,264,466,264,468,402,294,402"},"113":{"page_id":"99c9b3f0-1f28-4edd-8f12-8af6c89e528b","available":false,"unit_number":"113","shape":"poly","coords":"468,264,576,262,578,230,642,232,642,386,624,402,464,402"},"101":{"page_id":"99c9b3a7-94da-4825-8278-8a045b4da5df","available":false,"unit_number":"101","shape":"poly","coords":"710,232,848,234,848,370,718,372,712,364"},"102":{"page_id":"99c9b3a8-d7ca-49f5-8bb4-72039aa20561","available":false,"unit_number":"102","shape":"poly","coords":"850,230,984,230,982,370,846,372"},"103":{"page_id":"99c9b3aa-bdc9-4786-9e86-ed0689985d63","available":false,"unit_number":"103","shape":"poly","coords":"986,232,1152,232,1154,384,1012,382,986,358"},"104":{"page_id":"99c9b3ac-cce1-47b4-a426-190ed6db0982","available":false,"unit_number":"104","shape":"poly","coords":"1004,384,1002,530,1154,530,1156,382,1156,382"},"105":{"page_id":"99c9b38b-b0f5-4d41-9413-6781366225b9","available":false,"unit_number":"105","shape":"poly","coords":"844,394,846,532,964,532,962,460,980,462,980,400,972,394"},"106":{"page_id":"99c9b3f3-a02c-42f8-a49f-a96eb669e01a","available":false,"unit_number":"106","shape":"poly","coords":"664,406,664,532,842,530,842,390,678,394"},"107":{"page_id":"99c9b38d-8088-4dc2-870a-791ab748d5d3","available":false,"unit_number":"107","shape":"poly","coords":"544,426,544,566,664,562,660,424"},"108":{"page_id":"99c9b390-4429-4263-b143-563725513172","available":false,"unit_number":"108","shape":"poly","coords":"426,424,426,566,544,566,544,424"},"109":{"page_id":"99c9b394-04f0-4b2f-bf49-441c80d9f165","available":false,"unit_number":"109","shape":"poly","coords":"296,426,290,434,290,492,308,492,308,564,428,566,424,428"},"110":{"page_id":"99c9b3e8-c6c2-49a1-b786-00bf611131f0","available":false,"unit_number":"110","shape":"poly","coords":"116,418,116,564,268,564,266,414"}},"file_id":"4252","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4252-800/plan-618-333-planlocationniveau1.webp"}},"areas":[{"item_id":"331","shape":"poly","coords":"69,420,236,420,236,483,252,484,252,549,236,548,236,675,269,675,269,707,239,706,239,751,270,751,270,782,254,782,254,864,269,864,269,928,253,929,253,992,86,992,86,949,70,949,70,917,100,917,100,876,70,876,70,846,86,846,86,757,69,756,71,725,68,725,68,688,52,688,53,625,68,625,68,565,53,565,53,535,83,534,83,495,53,495,53,465,69,464,68,429","building_id":173,"available":true},{"item_id":"332","shape":"poly","coords":"456,735,621,735,621,777,639,778,637,810,619,809,620,848,638,847,638,879,619,879,620,970,637,970,637,970,637,1037,655,1036,655,1101,638,1101,639,1160,655,1160,655,1191,637,1191,637,1230,655,1230,655,1262,638,1262,637,1304,473,1303,473,1241,456,1241,456,1177,473,1176,474,1047,439,1048,439,1021,457,1020,457,973,440,973,440,944,456,944,457,858,439,860,440,799,457,799","building_id":50,"available":false},{"item_id":"333","shape":"poly","coords":"720,572,781,572,783,553,846,555,846,573,976,572,976,537,1006,537,1006,555,1050,555,1050,539,1080,539,1080,555,1164,556,1166,539,1227,539,1227,556,1288,556,1288,718,1244,717,1246,734,1216,733,1217,717,1174,717,1174,734,1147,734,1147,718,1051,717,1051,736,986,735,986,753,924,752,925,733,861,734,862,751,835,752,834,734,794,735,793,754,764,752,763,736,721,736","building_id":51,"available":true},{"item_id":"334","shape":"poly","coords":"1353,733,1520,733,1521,798,1537,797,1536,862,1519,860,1520,989,1554,988,1554,1021,1525,1020,1525,1064,1554,1064,1554,1095,1538,1095,1538,1177,1554,1177,1554,1242,1539,1242,1538,1305,1371,1305,1372,1261,1355,1260,1356,1229,1384,1230,1385,1189,1357,1190,1356,1158,1371,1159,1372,1067,1356,1067,1356,1038,1354,1037,1353,1002,1338,1002,1339,938,1354,938,1354,878,1339,877,1339,848,1367,848,1366,808,1339,809,1338,779,1354,778","building_id":52,"available":true}],"plan_url":"https://logisco.com/static/vb/685-800/plan-618-331-338-planimplantation-2017.webp"},{"Available":true,"SourceId":52,"Code":"334","Address":{"NumberStreet":"11657 Boulevard de la Colline","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2A 2E1","Neighborhood":"Loretteville"},"file_id":"685","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"111":{"page_id":"99c9b424-2744-4736-9617-2a53d560f943","available":true,"unit_number":"111","shape":"poly","coords":"620,26,736,26,736,158,640,160,622,138"},"113":{"page_id":"99c9b427-cd9d-4790-9e17-870dfdc7a283","available":false,"unit_number":"113","shape":"poly","coords":"630,298,738,298,736,388,762,388,762,436,644,436,630,422"},"101":{"page_id":"99c9b453-2f87-4a75-84b5-8e1f111faef5","available":false,"unit_number":"101","shape":"poly","coords":"762,488,658,488,656,492,656,594,762,594"},"103":{"page_id":"99c9b41e-4cba-4a28-a2ea-0cf541bffc71","available":false,"unit_number":"103","shape":"poly","coords":"664,698,762,700,762,832,646,832,646,720,662,704,664,704"},"105":{"page_id":"99c9b459-8583-489c-8e2d-a2faadf4bfad","available":false,"unit_number":"105","shape":"poly","coords":"530,592,638,592,636,694,632,698,586,698,584,684,530,684"},"106":{"page_id":"99c9b41c-488e-4c34-87d5-366c1ec039dc","available":false,"unit_number":"106","shape":"poly","coords":"530,452,628,452,638,462,636,592,530,590"},"109":{"page_id":"99c9b450-e7bc-4606-8ad9-27cc57d0b1e1","available":false,"unit_number":"109","shape":"poly","coords":"562,162,610,160,614,166,612,266,506,266,506,174,560,174"},"110":{"page_id":"99c9b422-68bb-4a07-8569-de22174cb5a9","available":false,"unit_number":"110","shape":"rect","coords":"506,28,620,144"},"112":{"page_id":"99c9b425-e2ae-4cad-89be-ff0ac797cbd2","available":false,"unit_number":"112","shape":"rect","coords":"630,160,736,296"},"102":{"page_id":"99c9b456-fd86-4267-8190-800d54d964c3","available":false,"unit_number":"102","shape":"rect","coords":"656,594,762,698"},"104":{"page_id":"99c9b420-397d-4255-b1f0-47ca85bb67d3","available":false,"unit_number":"104","shape":"rect","coords":"530,716,644,832"},"107":{"page_id":"99c9b44c-58f3-4f56-81d7-00be4db63719","available":false,"unit_number":"107","shape":"rect","coords":"504,358,610,450"},"108":{"page_id":"99c9b44e-aad6-4f58-a1f6-908194a73ffc","available":false,"unit_number":"108","shape":"rect","coords":"504,266,612,358"}},"file_id":"4253","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4253-800/plan-618-334-plan20location20niveau201.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"211":{"page_id":"99c9b40b-766e-403b-9475-12d1dddb3439","available":false,"unit_number":"211","shape":"poly","coords":"620,26,736,26,736,158,640,160,622,138"},"213":{"page_id":"99c9b40f-c78b-40f4-9ed7-0f2b9e62ee2d","available":false,"unit_number":"213","shape":"poly","coords":"630,298,738,298,736,388,762,388,762,436,644,436,630,422"},"203":{"page_id":"99c9b418-512f-4128-957a-740d5224a082","available":true,"unit_number":"203","shape":"poly","coords":"664,698,762,700,762,832,646,832,646,720,662,704,664,704"},"205":{"page_id":"99c9b447-acba-45cc-a3a8-e66f640e39cc","available":false,"unit_number":"205","shape":"poly","coords":"530,592,638,592,636,694,632,698,586,698,584,684,530,684"},"206":{"page_id":"99c9b441-9f01-423b-8488-eeec9bf78aed","available":false,"unit_number":"206","shape":"poly","coords":"530,452,628,452,638,462,636,592,530,590"},"209":{"page_id":"99c9b461-b0f4-4b47-8931-c2633e4995eb","available":false,"unit_number":"209","shape":"poly","coords":"562,162,610,160,614,166,612,266,506,266,506,174,560,174"},"210":{"page_id":"99c9b409-0c52-4607-b2e5-c5ce62137bd4","available":false,"unit_number":"210","shape":"rect","coords":"506,28,620,144"},"212":{"page_id":"99c9b40d-c45a-42a7-b0c4-a0cb5bbfe0c9","available":false,"unit_number":"212","shape":"rect","coords":"630,160,736,296"},"202":{"page_id":"99c9b45b-9949-4513-8a7b-f0c37aae9b65","available":false,"unit_number":"202","shape":"rect","coords":"656,594,762,698"},"204":{"page_id":"99c9b41a-9e57-4e12-9862-b64925540986","available":false,"unit_number":"204","shape":"rect","coords":"530,716,644,832"},"207":{"page_id":"99c9b45d-88ea-4691-93e0-93bfde3fe63d","available":false,"unit_number":"207","shape":"rect","coords":"504,358,610,450"},"208":{"page_id":"99c9b45f-a3ba-42d0-b277-b685f9c03dc0","available":false,"unit_number":"208","shape":"rect","coords":"504,266,612,358"},"201":{"page_id":"99c9b42c-88a7-44f1-b42e-f53aaad9814c","available":false,"unit_number":"201","shape":"poly","coords":"704,438,760,436,762,592,654,594,656,490,660,488,706,486"}},"file_id":"4254","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4254-800/plan-618-334-plan20location20niveau202.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"311":{"page_id":"99c9b400-ef6c-487d-a4be-2a226da9ed1d","available":false,"unit_number":"311","shape":"poly","coords":"620,26,736,26,736,158,640,160,622,138"},"313":{"page_id":"99c9b405-41c4-4116-b378-6eaf22a49f62","available":false,"unit_number":"313","shape":"poly","coords":"630,298,738,298,736,388,762,388,762,436,644,436,630,422"},"303":{"page_id":"99c9b43b-2dac-4d6f-8e41-dddd8c95050a","available":false,"unit_number":"303","shape":"poly","coords":"664,698,762,700,762,832,646,832,646,720,662,704,664,704"},"305":{"page_id":"99c9b463-ec58-42af-a41d-60ed877809f3","available":false,"unit_number":"305","shape":"poly","coords":"530,592,638,592,636,694,632,698,586,698,584,684,530,684"},"306":{"page_id":"99c9b3f5-ec8e-4b01-840e-ee9f58892dd2","available":false,"unit_number":"306","shape":"poly","coords":"530,452,628,452,638,462,636,592,530,590"},"310":{"page_id":"99c9b3fe-dae7-4310-bd42-82ad6a9e619e","available":false,"unit_number":"310","shape":"rect","coords":"506,28,620,144"},"312":{"page_id":"99c9b403-0b96-4647-88f7-fde4cfd474da","available":false,"unit_number":"312","shape":"rect","coords":"630,160,736,296"},"302":{"page_id":"99c9b44a-0e12-4950-bc55-8323544aedb7","available":false,"unit_number":"302","shape":"rect","coords":"656,594,762,698"},"304":{"page_id":"99c9b43d-fa42-46e8-8c72-0b8de5916ecd","available":false,"unit_number":"304","shape":"rect","coords":"530,716,644,832"},"301":{"page_id":"99c9b415-9d2c-4781-a069-ddf1f358ad1c","available":false,"unit_number":"301","shape":"poly","coords":"704,438,760,436,762,592,654,594,656,490,660,488,706,486"},"308":{"page_id":"99c9b3fb-6a09-4cb7-bd27-74117c9ddcab","available":false,"unit_number":"308","shape":"poly","coords":"504,174,560,174,560,160,608,160,612,166,612,310,504,310"},"307":{"page_id":"99c9b3f8-0c7b-4dcb-9be9-dccfe1bdba50","available":false,"unit_number":"307","shape":"rect","coords":"506,312,612,452"}},"file_id":"4255","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4255-800/plan-618-334-plan20location20niveau203.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"411":{"page_id":"99c9b435-cd99-42f2-afcf-5a68dd0e6cec","available":false,"unit_number":"411","shape":"poly","coords":"620,26,736,26,736,158,640,160,622,138"},"413":{"page_id":"99c9b439-63ad-46f0-ad99-498697154f4a","available":false,"unit_number":"413","shape":"poly","coords":"630,298,738,298,736,388,762,388,762,436,644,436,630,422"},"403":{"page_id":"99c9b443-6cbb-4f5f-ad32-9bb3c9c8d554","available":false,"unit_number":"403","shape":"poly","coords":"664,698,762,700,762,832,646,832,646,720,662,704,664,704"},"405":{"page_id":"99c9b465-ba2c-47d2-a515-c66357611603","available":false,"unit_number":"405","shape":"poly","coords":"530,592,638,592,636,694,632,698,586,698,584,684,530,684"},"406":{"page_id":"99c9b42e-3c30-4e64-8c5c-cbd1d439dbe4","available":false,"unit_number":"406","shape":"poly","coords":"530,452,628,452,638,462,636,592,530,590"},"410":{"page_id":"99c9b433-f4a6-456f-bdba-9a65e7ce5e3e","available":false,"unit_number":"410","shape":"rect","coords":"506,28,620,144"},"412":{"page_id":"99c9b437-a2f6-4127-b794-de829cec8388","available":false,"unit_number":"412","shape":"rect","coords":"630,160,736,296"},"402":{"page_id":"99c9b467-919e-42d2-a738-ed6866f36b50","available":false,"unit_number":"402","shape":"rect","coords":"656,594,762,698"},"404":{"page_id":"99c9b445-44e0-496b-8944-100f4ef271bd","available":false,"unit_number":"404","shape":"rect","coords":"530,716,644,832"},"401":{"page_id":"99c9b407-7cfa-4e5d-a850-b2b74b5e375f","available":false,"unit_number":"401","shape":"poly","coords":"704,438,760,436,762,592,654,594,656,490,660,488,706,486"},"408":{"page_id":"99c9b431-f9b7-441a-b9ce-e5f9376de7ad","available":false,"unit_number":"408","shape":"poly","coords":"504,174,560,174,560,160,608,160,612,166,612,310,504,310"},"407":{"page_id":"99c9b42f-f66c-4394-a06a-8137a046e6ac","available":false,"unit_number":"407","shape":"rect","coords":"506,312,612,452"}},"file_id":"4256","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4256-800/plan-618-334-plan20location20niveau204.webp"}},"areas":[{"item_id":"331","shape":"poly","coords":"69,420,236,420,236,483,252,484,252,549,236,548,236,675,269,675,269,707,239,706,239,751,270,751,270,782,254,782,254,864,269,864,269,928,253,929,253,992,86,992,86,949,70,949,70,917,100,917,100,876,70,876,70,846,86,846,86,757,69,756,71,725,68,725,68,688,52,688,53,625,68,625,68,565,53,565,53,535,83,534,83,495,53,495,53,465,69,464,68,429","building_id":173,"available":true},{"item_id":"332","shape":"poly","coords":"456,735,621,735,621,777,639,778,637,810,619,809,620,848,638,847,638,879,619,879,620,970,637,970,637,970,637,1037,655,1036,655,1101,638,1101,639,1160,655,1160,655,1191,637,1191,637,1230,655,1230,655,1262,638,1262,637,1304,473,1303,473,1241,456,1241,456,1177,473,1176,474,1047,439,1048,439,1021,457,1020,457,973,440,973,440,944,456,944,457,858,439,860,440,799,457,799","building_id":50,"available":false},{"item_id":"333","shape":"poly","coords":"720,572,781,572,783,553,846,555,846,573,976,572,976,537,1006,537,1006,555,1050,555,1050,539,1080,539,1080,555,1164,556,1166,539,1227,539,1227,556,1288,556,1288,718,1244,717,1246,734,1216,733,1217,717,1174,717,1174,734,1147,734,1147,718,1051,717,1051,736,986,735,986,753,924,752,925,733,861,734,862,751,835,752,834,734,794,735,793,754,764,752,763,736,721,736","building_id":51,"available":true},{"item_id":"334","shape":"poly","coords":"1353,733,1520,733,1521,798,1537,797,1536,862,1519,860,1520,989,1554,988,1554,1021,1525,1020,1525,1064,1554,1064,1554,1095,1538,1095,1538,1177,1554,1177,1554,1242,1539,1242,1538,1305,1371,1305,1372,1261,1355,1260,1356,1229,1384,1230,1385,1189,1357,1190,1356,1158,1371,1159,1372,1067,1356,1067,1356,1038,1354,1037,1353,1002,1338,1002,1339,938,1354,938,1354,878,1339,877,1339,848,1367,848,1366,808,1339,809,1338,779,1354,778","building_id":52,"available":true}],"plan_url":"https://logisco.com/static/vb/685-800/plan-618-331-338-planimplantation-2017.webp"},{"Available":true,"SourceId":173,"Code":"331","Address":{"NumberStreet":"11625 Boulevard de la Colline","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2A 2E1","Neighborhood":"Loretteville"},"file_id":"685","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"111":{"page_id":"99c9d1db-67bb-4a59-9d74-123e5528e164","available":false,"unit_number":"111","shape":"poly","coords":"620,26,736,26,736,158,640,160,622,138"},"113":{"page_id":"99c9d1e1-465d-478b-8516-fcd358852301","available":true,"unit_number":"113","shape":"poly","coords":"630,298,738,298,736,388,762,388,762,436,644,436,630,422"},"101":{"page_id":"99c9d1c4-88d3-4fd8-ac2a-2d6568fe4793","available":false,"unit_number":"101","shape":"poly","coords":"762,488,658,488,656,492,656,594,762,594"},"103":{"page_id":"99c9d1ed-bca9-4203-861e-84a3e2a03822","available":false,"unit_number":"103","shape":"poly","coords":"664,698,762,700,762,832,646,832,646,720,662,704,664,704"},"105":{"page_id":"99c9d1a1-706f-4664-b4d5-26c82a8c8063","available":false,"unit_number":"105","shape":"poly","coords":"530,592,638,592,636,694,632,698,586,698,584,684,530,684"},"106":{"page_id":"99c9d276-2570-46bf-9144-b452237865b6","available":false,"unit_number":"106","shape":"poly","coords":"530,452,628,452,638,462,636,592,530,590"},"109":{"page_id":"99c9d1d1-1f9e-44a2-a704-5d4a70071eb1","available":false,"unit_number":"109","shape":"poly","coords":"562,162,610,160,614,166,612,266,506,266,506,174,560,174"},"110":{"page_id":"99c9d1d8-4aa3-4139-9447-85a02e288f89","available":false,"unit_number":"110","shape":"rect","coords":"506,28,620,144"},"112":{"page_id":"99c9d1de-38bc-4a55-92ef-4edc3ade82d3","available":false,"unit_number":"112","shape":"rect","coords":"630,160,736,296"},"102":{"page_id":"99c9d1c7-96ca-40d5-bb0e-408570e8ae80","available":false,"unit_number":"102","shape":"rect","coords":"656,594,762,698"},"104":{"page_id":"99c9d1f0-e747-4f42-bca4-e0f412edf127","available":false,"unit_number":"104","shape":"rect","coords":"530,716,644,832"},"107":{"page_id":"99c9d1ca-5e35-4585-8e38-bc2babdd9350","available":false,"unit_number":"107","shape":"rect","coords":"504,358,610,450"},"108":{"page_id":"99c9d1cd-56c9-4e3c-8bd8-ccf9eb412ca7","available":false,"unit_number":"108","shape":"rect","coords":"504,266,612,358"}},"file_id":"4253","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4253-800/plan-618-334-plan20location20niveau201.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"211":{"page_id":"99c9d25f-6144-4a2a-aa90-deac85f20faa","available":true,"unit_number":"211","shape":"poly","coords":"620,26,736,26,736,158,640,160,622,138"},"213":{"page_id":"99c9d265-bc59-44f3-977a-7c65399be5da","available":false,"unit_number":"213","shape":"poly","coords":"630,298,738,298,736,388,762,388,762,436,644,436,630,422"},"203":{"page_id":"99c9d26f-c642-47a1-9a09-918244510ddd","available":false,"unit_number":"203","shape":"poly","coords":"664,698,762,700,762,832,646,832,646,720,662,704,664,704"},"205":{"page_id":"99c9d1a7-77e0-4e8d-966e-5454f91e416c","available":false,"unit_number":"205","shape":"poly","coords":"530,592,638,592,636,694,632,698,586,698,584,684,530,684"},"206":{"page_id":"99c9d26c-1ff3-4bc0-bb6e-eff8a0fc967d","available":false,"unit_number":"206","shape":"poly","coords":"530,452,628,452,638,462,636,592,530,590"},"209":{"page_id":"99c9d1b4-1210-4ba1-a988-d56f7f5dbb81","available":false,"unit_number":"209","shape":"poly","coords":"562,162,610,160,614,166,612,266,506,266,506,174,560,174"},"210":{"page_id":"99c9d25c-925c-4511-8446-175278135980","available":false,"unit_number":"210","shape":"rect","coords":"506,28,620,144"},"212":{"page_id":"99c9d262-30a3-4b1b-a415-22b911d7ed16","available":false,"unit_number":"212","shape":"rect","coords":"630,160,736,296"},"202":{"page_id":"99c9d1a4-72cb-4bc7-9397-b7b641b539d5","available":false,"unit_number":"202","shape":"rect","coords":"656,594,762,698"},"204":{"page_id":"99c9d272-82ff-4ce1-8697-9cdb382b73de","available":false,"unit_number":"204","shape":"rect","coords":"530,716,644,832"},"207":{"page_id":"99c9d1ab-c55c-496c-9924-3d2633f9f401","available":false,"unit_number":"207","shape":"rect","coords":"504,358,610,450"},"208":{"page_id":"99c9d1b0-6372-4f04-a34c-7ba583b41032","available":false,"unit_number":"208","shape":"rect","coords":"504,266,612,358"},"201":{"page_id":"99c9d1e6-4722-4dd0-bbe8-ddb53a3539fa","available":false,"unit_number":"201","shape":"poly","coords":"704,438,760,436,762,592,654,594,656,490,660,488,706,486"}},"file_id":"4254","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4254-800/plan-618-334-plan20location20niveau202.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"311":{"page_id":"99c9d24f-e735-417e-a9d9-24178e881ba5","available":false,"unit_number":"311","shape":"poly","coords":"620,26,736,26,736,158,640,160,622,138"},"313":{"page_id":"99c9d255-3aa9-4859-bf90-d60ce7e357b1","available":false,"unit_number":"313","shape":"poly","coords":"630,298,738,298,736,388,762,388,762,436,644,436,630,422"},"303":{"page_id":"99c9d1ff-e72b-4180-9988-069869a78717","available":false,"unit_number":"303","shape":"poly","coords":"664,698,762,700,762,832,646,832,646,720,662,704,664,704"},"305":{"page_id":"99c9d1b7-3b5d-46ff-a4af-0fd370b2bbfe","available":false,"unit_number":"305","shape":"poly","coords":"530,592,638,592,636,694,632,698,586,698,584,684,530,684"},"306":{"page_id":"99c9d233-1ade-4b2a-82b4-eb403b119e56","available":false,"unit_number":"306","shape":"poly","coords":"530,452,628,452,638,462,636,592,530,590"},"310":{"page_id":"99c9d24a-ce74-4d11-869e-baa17bd4e253","available":false,"unit_number":"310","shape":"rect","coords":"506,28,620,144"},"312":{"page_id":"99c9d252-6caf-4b95-a2dc-4e274dea4b5f","available":false,"unit_number":"312","shape":"rect","coords":"630,160,736,296"},"302":{"page_id":"99c9d1bc-e6a1-41d7-ac02-72e2193549fc","available":false,"unit_number":"302","shape":"rect","coords":"656,594,762,698"},"304":{"page_id":"99c9d207-c37c-40b6-b082-68435d542ff8","available":false,"unit_number":"304","shape":"rect","coords":"530,716,644,832"},"301":{"page_id":"99c9d269-47dd-4b20-83b9-b9af1e268884","available":false,"unit_number":"301","shape":"poly","coords":"704,438,760,436,762,592,654,594,656,490,660,488,706,486"},"308":{"page_id":"99c9d23b-dc96-499c-9bd5-683d101f0340","available":false,"unit_number":"308","shape":"poly","coords":"504,174,560,174,560,160,608,160,612,166,612,310,504,310"},"307":{"page_id":"99c9d238-9a9d-48af-931a-eb4375bf2b6e","available":false,"unit_number":"307","shape":"rect","coords":"506,312,612,452"}},"file_id":"4255","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4255-800/plan-618-334-plan20location20niveau203.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"411":{"page_id":"99c9d225-3780-4dff-ab89-6f5685d6e1a8","available":false,"unit_number":"411","shape":"poly","coords":"620,26,736,26,736,158,640,160,622,138"},"413":{"page_id":"99c9d22b-a9ea-4922-b796-039082bb3455","available":false,"unit_number":"413","shape":"poly","coords":"630,298,738,298,736,388,762,388,762,436,644,436,630,422"},"403":{"page_id":"99c9d1f8-856a-48e0-b2a8-3b4be146ca62","available":false,"unit_number":"403","shape":"poly","coords":"664,698,762,700,762,832,646,832,646,720,662,704,664,704"},"405":{"page_id":"99c9d1ba-0dcd-41b0-a266-04528d37741f","available":false,"unit_number":"405","shape":"poly","coords":"530,592,638,592,636,694,632,698,586,698,584,684,530,684"},"406":{"page_id":"99c9d20b-0b82-4958-9d0b-27ed75563409","available":false,"unit_number":"406","shape":"poly","coords":"530,452,628,452,638,462,636,592,530,590"},"410":{"page_id":"99c9d21b-52a6-4547-8447-12a0085a1b98","available":false,"unit_number":"410","shape":"rect","coords":"506,28,620,144"},"412":{"page_id":"99c9d228-6f0f-488f-91db-b5bba8a38616","available":false,"unit_number":"412","shape":"rect","coords":"630,160,736,296"},"402":{"page_id":"99c9d1c0-d600-4f28-bbee-0a466162b92c","available":false,"unit_number":"402","shape":"rect","coords":"656,594,762,698"},"404":{"page_id":"99c9d1fc-3ea9-489c-ad18-8f468ba9da93","available":false,"unit_number":"404","shape":"rect","coords":"530,716,644,832"},"401":{"page_id":"99c9d258-db63-467d-94b4-e1df10a681ac","available":false,"unit_number":"401","shape":"poly","coords":"704,438,760,436,762,592,654,594,656,490,660,488,706,486"},"408":{"page_id":"99c9d218-6a76-484b-b510-013c0a3ade6e","available":false,"unit_number":"408","shape":"poly","coords":"504,174,560,174,560,160,608,160,612,166,612,310,504,310"},"407":{"page_id":"99c9d212-28ce-460c-80d2-665558f5bd46","available":false,"unit_number":"407","shape":"rect","coords":"506,312,612,452"}},"file_id":"4256","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4256-800/plan-618-334-plan20location20niveau204.webp"}},"areas":[{"item_id":"331","shape":"poly","coords":"69,420,236,420,236,483,252,484,252,549,236,548,236,675,269,675,269,707,239,706,239,751,270,751,270,782,254,782,254,864,269,864,269,928,253,929,253,992,86,992,86,949,70,949,70,917,100,917,100,876,70,876,70,846,86,846,86,757,69,756,71,725,68,725,68,688,52,688,53,625,68,625,68,565,53,565,53,535,83,534,83,495,53,495,53,465,69,464,68,429","building_id":173,"available":true},{"item_id":"332","shape":"poly","coords":"456,735,621,735,621,777,639,778,637,810,619,809,620,848,638,847,638,879,619,879,620,970,637,970,637,970,637,1037,655,1036,655,1101,638,1101,639,1160,655,1160,655,1191,637,1191,637,1230,655,1230,655,1262,638,1262,637,1304,473,1303,473,1241,456,1241,456,1177,473,1176,474,1047,439,1048,439,1021,457,1020,457,973,440,973,440,944,456,944,457,858,439,860,440,799,457,799","building_id":50,"available":false},{"item_id":"333","shape":"poly","coords":"720,572,781,572,783,553,846,555,846,573,976,572,976,537,1006,537,1006,555,1050,555,1050,539,1080,539,1080,555,1164,556,1166,539,1227,539,1227,556,1288,556,1288,718,1244,717,1246,734,1216,733,1217,717,1174,717,1174,734,1147,734,1147,718,1051,717,1051,736,986,735,986,753,924,752,925,733,861,734,862,751,835,752,834,734,794,735,793,754,764,752,763,736,721,736","building_id":51,"available":true},{"item_id":"334","shape":"poly","coords":"1353,733,1520,733,1521,798,1537,797,1536,862,1519,860,1520,989,1554,988,1554,1021,1525,1020,1525,1064,1554,1064,1554,1095,1538,1095,1538,1177,1554,1177,1554,1242,1539,1242,1538,1305,1371,1305,1372,1261,1355,1260,1356,1229,1384,1230,1385,1189,1357,1190,1356,1158,1371,1159,1372,1067,1356,1067,1356,1038,1354,1037,1353,1002,1338,1002,1339,938,1354,938,1354,878,1339,877,1339,848,1367,848,1366,808,1339,809,1338,779,1354,778","building_id":52,"available":true}],"plan_url":"https://logisco.com/static/vb/685-800/plan-618-331-338-planimplantation-2017.webp"}]" | |
| 776 | + :project-name=""Les Bois\u00e9s de la Colline"" | |
| 777 | + :building-id="173" | |
| 778 | + :floor="2" | |
| 779 | + ></plan-view> | |
| 780 | +</section> | |
| 781 | + | |
| 782 | + | |
| 783 | + </div> | |
| 784 | + | |
| 785 | +<div class="unitSection"> | |
| 786 | + <carousel-gallery> | |
| 787 | + <template #title> | |
| 788 | + <div class="blockText blockText-style--medium"> | |
| 789 | + <h2 class="blockText-surtitle">Perspectives du projet résidentiel</h2> | |
| 790 | + <p class="blockText-title">Capturer l'âme du projet à travers les images</p> | |
| 791 | + </div> | |
| 792 | + </template> | |
| 793 | + <template #images> | |
| 794 | + <carousel-gallery-slide> | |
| 795 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/6495-1800/les-boisees-de-la-colline-vue-exterieure.webp" | |
| 796 | + alt="Les Boisées de la Colline - Vue extérieure "> | |
| 797 | + <template #description> | |
| 798 | + <a class="c2a c2a-text c2a--tertiary" | |
| 799 | + href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline"> | |
| 800 | + <span class="c2a-name"> | |
| 801 | + Découvrir Les Boisés de la Colline | |
| 802 | + </span> | |
| 803 | + </a> | |
| 804 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 805 | + Les Boisées de la Colline - Vue extérieure | |
| 806 | + </h3> | |
| 807 | + </template> | |
| 808 | + </carousel-gallery-slide> | |
| 809 | + <carousel-gallery-slide> | |
| 810 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/688-1800/les-boisees-de-la-colline-cuisine.webp" | |
| 811 | + alt="Les Boisées de la Colline - Cuisine "> | |
| 812 | + <template #description> | |
| 813 | + <a class="c2a c2a-text c2a--tertiary" | |
| 814 | + href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline"> | |
| 815 | + <span class="c2a-name"> | |
| 816 | + Découvrir Les Boisés de la Colline | |
| 817 | + </span> | |
| 818 | + </a> | |
| 819 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 820 | + Les Boisées de la Colline - Cuisine | |
| 821 | + </h3> | |
| 822 | + </template> | |
| 823 | + </carousel-gallery-slide> | |
| 824 | + <carousel-gallery-slide> | |
| 825 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/687-1800/les-boisees-de-la-colline-salon.webp" | |
| 826 | + alt="Les Boisées de la Colline - Salon"> | |
| 827 | + <template #description> | |
| 828 | + <a class="c2a c2a-text c2a--tertiary" | |
| 829 | + href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline"> | |
| 830 | + <span class="c2a-name"> | |
| 831 | + Découvrir Les Boisés de la Colline | |
| 832 | + </span> | |
| 833 | + </a> | |
| 834 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 835 | + Les Boisées de la Colline - Salon | |
| 836 | + </h3> | |
| 837 | + </template> | |
| 838 | + </carousel-gallery-slide> | |
| 839 | + <carousel-gallery-slide> | |
| 840 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/689-1800/les-boisees-de-la-colline-salle-de-bain.webp" | |
| 841 | + alt="Les Boisées de la Colline - Salle de bain "> | |
| 842 | + <template #description> | |
| 843 | + <a class="c2a c2a-text c2a--tertiary" | |
| 844 | + href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline"> | |
| 845 | + <span class="c2a-name"> | |
| 846 | + Découvrir Les Boisés de la Colline | |
| 847 | + </span> | |
| 848 | + </a> | |
| 849 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 850 | + Les Boisées de la Colline - Salle de bain | |
| 851 | + </h3> | |
| 852 | + </template> | |
| 853 | + </carousel-gallery-slide> | |
| 854 | + <carousel-gallery-slide> | |
| 855 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/686-1800/les-boisees-de-la-colline-chambre-a-coucher.webp" | |
| 856 | + alt="Les Boisées de la Colline - Chambre à coucher"> | |
| 857 | + <template #description> | |
| 858 | + <a class="c2a c2a-text c2a--tertiary" | |
| 859 | + href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline"> | |
| 860 | + <span class="c2a-name"> | |
| 861 | + Découvrir Les Boisés de la Colline | |
| 862 | + </span> | |
| 863 | + </a> | |
| 864 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 865 | + Les Boisées de la Colline - Chambre à coucher | |
| 866 | + </h3> | |
| 867 | + </template> | |
| 868 | + </carousel-gallery-slide> | |
| 869 | + <carousel-gallery-slide> | |
| 870 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/690-1800/les-boisees-de-la-colline-balcon.webp" | |
| 871 | + alt="Les Boisées de la Colline - Balcon"> | |
| 872 | + <template #description> | |
| 873 | + <a class="c2a c2a-text c2a--tertiary" | |
| 874 | + href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline"> | |
| 875 | + <span class="c2a-name"> | |
| 876 | + Découvrir Les Boisés de la Colline | |
| 877 | + </span> | |
| 878 | + </a> | |
| 879 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 880 | + Les Boisées de la Colline - Balcon | |
| 881 | + </h3> | |
| 882 | + </template> | |
| 883 | + </carousel-gallery-slide> | |
| 884 | + <carousel-gallery-slide> | |
| 885 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/692-1800/les-boisees-de-la-colline-piscine-exterieure-chauffee.webp" | |
| 886 | + alt="Les Boisées de la Colline - Piscine extérieure chauffée"> | |
| 887 | + <template #description> | |
| 888 | + <a class="c2a c2a-text c2a--tertiary" | |
| 889 | + href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline"> | |
| 890 | + <span class="c2a-name"> | |
| 891 | + Découvrir Les Boisés de la Colline | |
| 892 | + </span> | |
| 893 | + </a> | |
| 894 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 895 | + Les Boisées de la Colline - Piscine extérieure chauffée | |
| 896 | + </h3> | |
| 897 | + </template> | |
| 898 | + </carousel-gallery-slide> | |
| 899 | + <carousel-gallery-slide> | |
| 900 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/693-1800/les-boisees-de-la-colline-vue-exterieure.webp" | |
| 901 | + alt="Les Boisées de la Colline - Vue extérieure "> | |
| 902 | + <template #description> | |
| 903 | + <a class="c2a c2a-text c2a--tertiary" | |
| 904 | + href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline"> | |
| 905 | + <span class="c2a-name"> | |
| 906 | + Découvrir Les Boisés de la Colline | |
| 907 | + </span> | |
| 908 | + </a> | |
| 909 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 910 | + Les Boisées de la Colline - Vue extérieure | |
| 911 | + </h3> | |
| 912 | + </template> | |
| 913 | + </carousel-gallery-slide> | |
| 914 | + </template> | |
| 915 | + </carousel-gallery> | |
| 916 | +</div> | |
| 917 | + | |
| 918 | + | |
| 919 | +<div id="projectType" data-project-type="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83"></div> | |
| 920 | +<div id="unitFull" data-unit-dispo="Maintenant"></div> | |
| 921 | + <section | |
| 922 | + class="section section-background gap--1x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-bottom--1x padding-left--2x padding-right--2x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x id_d6ab60b6e3815869e4fdde2fb0d50af7a4d9d4ea" | |
| 923 | + > | |
| 924 | + | |
| 925 | +<div class="id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e layout-full padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 926 | + <div class="blockText blockText-style--small " > | |
| 927 | + <h2 class="blockText-title">On n’est jamais bien loin pour vous accompagner</h2> | |
| 928 | + </div> | |
| 929 | + | |
| 930 | + </div> | |
| 931 | + | |
| 932 | + | |
| 933 | + | |
| 934 | +<div class="id_4f9de2cf2b5c2fe600683f36917305105bb82785 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_5x layout-rowGap--0x layout-rowGapMobile--2x"> | |
| 935 | + | |
| 936 | + <a class="blockText blockText--link " href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" > | |
| 937 | + <div class="blockText-container"> | |
| 938 | + <h3 class="blockText-subtitle">Centre d’aide</h3> | |
| 939 | + <p class="blockText-description">Trouvez rapidement les informations dont vous avez besoin grâce à notre foire aux questions sur le résidentiel, le commercial et les emplois. </p> | |
| 940 | + </div> | |
| 941 | + <i class="blockText-icon icon-cms-arrow-right"></i> | |
| 942 | +</a> | |
| 943 | + <a class="blockText blockText--link " href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" > | |
| 944 | + <div class="blockText-container"> | |
| 945 | + <h3 class="blockText-subtitle">Nouvel arrivant</h3> | |
| 946 | + <p class="blockText-description">Vous prévoyez vous installer dans la région de Québec? On offre un service d’accompagnement entièrement gratuit pour vous aider à trouver votre futur chez-vous, et ce, depuis votre pays d’origine.</p> | |
| 947 | + </div> | |
| 948 | + <i class="blockText-icon icon-cms-arrow-right"></i> | |
| 949 | +</a> | |
| 950 | + | |
| 951 | + </div> | |
| 952 | + | |
| 953 | + </section> | |
| 954 | + | |
| 955 | + <section | |
| 956 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-left--1x padding-right--1x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundColor--lightblue id_e9d7ad3426ce6ac21fa5430b9012695c42bd1dbe" | |
| 957 | + > | |
| 958 | + | |
| 959 | + | |
| 960 | +<div class="id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f layout-columns modifier-h--start padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_5x layout-rowGap--2x"> | |
| 961 | + <div class="blockText blockText-style--small " > | |
| 962 | + <h2 class="blockText-surtitle">Conseils sur l’immobilier </h2> | |
| 963 | + <p class="blockText-title">On se veut utile </p> | |
| 964 | + <span class="c2aBlock"> | |
| 965 | + <a | |
| 966 | + data-gtm-event="clickButton" data-gtm-id="conseils-en-immobilier-residentiel" | |
| 967 | + | |
| 968 | + href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="c2a c2a-text c2a--tertiary" | |
| 969 | + aria-label="Conseils en immobilier résidentiel" | |
| 970 | +> | |
| 971 | + <span class="c2a-name"> | |
| 972 | + Conseils en immobilier résidentiel | |
| 973 | + </span> | |
| 974 | + <i class="icon-cms-arrow-right"></i> | |
| 975 | + </a> | |
| 976 | + | |
| 977 | + </span> | |
| 978 | + </div> | |
| 979 | + | |
| 980 | + | |
| 981 | + <div class="layout-carousel swiper js-carousel layout-carousel--mobile id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columns-desktop" | |
| 982 | + data-breakpoint="750" | |
| 983 | + data-speed="500" | |
| 984 | + data-autoplay="false" | |
| 985 | + data-delay="4000" | |
| 986 | + data-direction="" | |
| 987 | + | |
| 988 | + data-slides-per-view-desktop="1" | |
| 989 | + data-slides-per-view-mobile="1" | |
| 990 | + | |
| 991 | + data-space-between-slides="16" | |
| 992 | + data-space-between-slides-mobile="8" | |
| 993 | + | |
| 994 | + data-effect="slide"> | |
| 995 | + <div class="swiper-wrapper carousel-wrapper js-carouselWrapper layout-columnsGap--0_25x layout-rowGap--0x"> | |
| 996 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/2025-on-a-vu-grand-chez-logisco" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="En 2025, on a vu grand chez LOGISCO"> | |
| 997 | + <div class="article-image cardItems-pictureWrapper"> | |
| 998 | + <img class="cardItems-picture" width="475" height="267" src="https://logisco.com/static/vb/8181-475/2025-une-annee-de-plus-a-repousser-les-limites-logisco.webp" alt="2025 : Une année de plus à repousser les limites | LOGISCO"> | |
| 999 | + </div> | |
| 1000 | + <span class="article-type">Nouvelles</span> | |
| 1001 | + <span class="article-date">17 décembre 2025 - 1 min. de lecture</span> | |
| 1002 | + <h3 class="article-title">En 2025, on a vu grand chez LOGISCO</h3> | |
| 1003 | + <span class="article-text">Retour sur 2025 : une année de réalisations, de projets livrés et d’innovations qui façonnent notre vision pour l’avenir.</span> | |
| 1004 | + </a> | |
| 1005 | +</div> | |
| 1006 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/et-si-la-tranquillite-desprit-passait-par-la-location" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="Et si la tranquillité d’esprit passait par la location?"> | |
| 1007 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1008 | + <img class="cardItems-picture" width="475" height="317" src="https://logisco.com/static/vb/7704-475/vivre-librement-grace-a-la-location-logisco.webp" alt="Vivre librement grâce à la location | LOGISCO"> | |
| 1009 | + </div> | |
| 1010 | + <span class="article-type">Immobilier résidentiel</span> | |
| 1011 | + <span class="article-date">19 juin 2025 - 3 min. de lecture</span> | |
| 1012 | + <h3 class="article-title">Et si la tranquillité d’esprit passait par la location?</h3> | |
| 1013 | + <span class="article-text">Et si la liberté passait par la location? Marcel partage son choix de vie au District GC.</span> | |
| 1014 | + </a> | |
| 1015 | +</div> | |
| 1016 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/experience-logisco" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="L’Expérience LOGISCO : plus qu’une simple transaction"> | |
| 1017 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1018 | + <img class="cardItems-picture" width="475" height="317" src="https://logisco.com/static/vb/7445-475/lexperience-logisco-plus-quune-simple-transaction-logisco.webp" alt="L’Expérience LOGISCO : plus qu’une simple transaction | LOGISCO"> | |
| 1019 | + </div> | |
| 1020 | + <span class="article-type">Immobilier résidentiel</span> | |
| 1021 | + <span class="article-date">30 janvier 2025 - 3 min. de lecture</span> | |
| 1022 | + <h3 class="article-title">L’Expérience LOGISCO : plus qu’une simple transaction</h3> | |
| 1023 | + <span class="article-text">Huit clients sur dix se disent satisfaits de nos services, et ce taux est en constante progression grâce à nos efforts continus. Signer un bail ou collaborer avec LOGISCO, c’est avant tout un lien humain, guidé par nos valeurs d’entreprise. Découvrez comment!</span> | |
| 1024 | + </a> | |
| 1025 | +</div> | |
| 1026 | + </div> | |
| 1027 | + <div class="carousel-nav carousel-navDots--center "> | |
| 1028 | + <div class="carousel-dots swiper-pagination js-carouselPagination carousel-dots--mobile"></div> | |
| 1029 | + </div> | |
| 1030 | + </div> | |
| 1031 | + | |
| 1032 | + | |
| 1033 | + </div> | |
| 1034 | + | |
| 1035 | + </section> | |
| 1036 | + | |
| 1037 | + | |
| 1038 | + | |
| 1039 | + | |
| 1040 | + </main> | |
| 1041 | + | |
| 1042 | + <footer class="footer" data-gtm-creative-slot="footer"> | |
| 1043 | + <section | |
| 1044 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1_5x padding-left--0x padding-right--0x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundEffect--roundedCornersTop id_4ab8b59e9ace372edff7af94b2f0ecfe8af887d9" | |
| 1045 | + style="background-color: rgba(19, 24, 52, 1)" > | |
| 1046 | + | |
| 1047 | + | |
| 1048 | +<div class="id_eca944e94897a9b2d2823841936b19315bf3c414 layout-columns modifier-h--start padding-top--0x padding-bottom--1x padding-left--1x padding-right--1x paddingMobile-top--0x paddingMobile-bottom--2x paddingMobile-left--0x paddingMobile-right--0x layout-rowGap--0x layout-columnsGap--0x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1049 | + | |
| 1050 | +<div class="id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1051 | + <single-expand | |
| 1052 | + class="" | |
| 1053 | + :mobile-breakpoint="750" | |
| 1054 | + :mobile-expanded="true" | |
| 1055 | + :expanded="false" | |
| 1056 | + is-link > | |
| 1057 | + <template #label> | |
| 1058 | + <span class="item item--bolder item--white"> | |
| 1059 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" > | |
| 1060 | + <p class="expand-labelName">À propos</p> | |
| 1061 | + </a> | |
| 1062 | + </span> | |
| 1063 | + </template> | |
| 1064 | + <template #content> | |
| 1065 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1066 | + | |
| 1067 | + <span class="item item--white70"> | |
| 1068 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" class="item-link " > | |
| 1069 | + Qui est LOGISCO | |
| 1070 | + </a> | |
| 1071 | + </span> | |
| 1072 | + | |
| 1073 | + | |
| 1074 | + <span class="item item--white70"> | |
| 1075 | + <a href="https://logisco.com/fr/emplois" data-gtm-page-type="Page" data-gtm-page-name="Emplois marque-employeur" class="item-link " > | |
| 1076 | + Emplois | |
| 1077 | + </a> | |
| 1078 | + </span> | |
| 1079 | + | |
| 1080 | + | |
| 1081 | + <span class="item item--white70"> | |
| 1082 | + <a href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="item-link " > | |
| 1083 | + Blogue | |
| 1084 | + </a> | |
| 1085 | + </span> | |
| 1086 | + | |
| 1087 | + | |
| 1088 | + <span class="item item--white70"> | |
| 1089 | + <a href="https://logisco.com/fr/dons-et-commandites" data-gtm-page-type="Page" data-gtm-page-name="Dons et commandites" class="item-link " > | |
| 1090 | + Dons et commandites | |
| 1091 | + </a> | |
| 1092 | + </span> | |
| 1093 | + | |
| 1094 | + | |
| 1095 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1096 | + | |
| 1097 | + </template> | |
| 1098 | +</single-expand> | |
| 1099 | + | |
| 1100 | + <single-expand | |
| 1101 | + class="" | |
| 1102 | + :mobile-breakpoint="750" | |
| 1103 | + :mobile-expanded="true" | |
| 1104 | + :expanded="false" | |
| 1105 | + is-link > | |
| 1106 | + <template #label> | |
| 1107 | + <span class="item item--bolder item--white"> | |
| 1108 | + <a href="https://logisco.com/fr/futurs-projets-immobiliers" data-gtm-page-type="Page" data-gtm-page-name="Futurs projets immobiliers" > | |
| 1109 | + <p class="expand-labelName">Futurs projets immobiliers</p> | |
| 1110 | + </a> | |
| 1111 | + </span> | |
| 1112 | + </template> | |
| 1113 | + <template #content> | |
| 1114 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1115 | + | |
| 1116 | + <span class="item item--white70"> | |
| 1117 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/axel" data-gtm-page-type="Projet" data-gtm-page-name="Axel" data-gtm-project-id="1738" data-gtm-tag="Location à venir" class="item-link " > | |
| 1118 | + Axel | |
| 1119 | + </a> | |
| 1120 | + </span> | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + <span class="item item--white70"> | |
| 1124 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/tria" data-gtm-page-type="Projet" data-gtm-page-name="Tria" data-gtm-project-id="1736" data-gtm-average-price="1857.5" data-gtm-listable-unit-count="28" data-gtm-tag="Projet neuf" class="item-link " > | |
| 1125 | + Tria | |
| 1126 | + </a> | |
| 1127 | + </span> | |
| 1128 | + | |
| 1129 | + | |
| 1130 | + | |
| 1131 | + </template> | |
| 1132 | +</single-expand> | |
| 1133 | + | |
| 1134 | + </div> | |
| 1135 | + | |
| 1136 | + <single-expand | |
| 1137 | + class="" | |
| 1138 | + :mobile-breakpoint="750" | |
| 1139 | + :mobile-expanded="true" | |
| 1140 | + :expanded="false" | |
| 1141 | + is-link > | |
| 1142 | + <template #label> | |
| 1143 | + <span class="item item--bolder item--white"> | |
| 1144 | + <a href="https://logisco.com/fr/appartements-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Appartements à louer" > | |
| 1145 | + <p class="expand-labelName">Appartements</p> | |
| 1146 | + </a> | |
| 1147 | + </span> | |
| 1148 | + </template> | |
| 1149 | + <template #content> | |
| 1150 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1151 | + | |
| 1152 | + <span class="item item--white70"> | |
| 1153 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1154 | + Québec | |
| 1155 | + </a> | |
| 1156 | + </span> | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + <span class="item item--white70"> | |
| 1160 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1161 | + Beauport | |
| 1162 | + </a> | |
| 1163 | + </span> | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + <span class="item item--white70"> | |
| 1167 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/charlesbourg" data-gtm-page-type="Quartier" data-gtm-page-name="Charlesbourg" class="item-link " > | |
| 1168 | + Charlesbourg | |
| 1169 | + </a> | |
| 1170 | + </span> | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + <span class="item item--white70"> | |
| 1174 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/duberger-les-saules" data-gtm-page-type="Quartier" data-gtm-page-name="Duberger-Les-Saules" class="item-link " > | |
| 1175 | + Duberger-Les Saules | |
| 1176 | + </a> | |
| 1177 | + </span> | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + <span class="item item--white70"> | |
| 1181 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville" data-gtm-page-type="Quartier" data-gtm-page-name="Loretteville" class="item-link " > | |
| 1182 | + Loretteville | |
| 1183 | + </a> | |
| 1184 | + </span> | |
| 1185 | + | |
| 1186 | + | |
| 1187 | + <span class="item item--white70"> | |
| 1188 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf" data-gtm-page-type="Quartier" data-gtm-page-name="Neufchâtel-Est-Lebourgneuf" class="item-link " > | |
| 1189 | + Neufchâtel-Est-Lebourgneuf | |
| 1190 | + </a> | |
| 1191 | + </span> | |
| 1192 | + | |
| 1193 | + | |
| 1194 | + <span class="item item--white70"> | |
| 1195 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1196 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1197 | + </a> | |
| 1198 | + </span> | |
| 1199 | + | |
| 1200 | + | |
| 1201 | + <span class="item item--white70"> | |
| 1202 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/saint-emile" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Émile" class="item-link " > | |
| 1203 | + Saint-Émile | |
| 1204 | + </a> | |
| 1205 | + </span> | |
| 1206 | + | |
| 1207 | + | |
| 1208 | + <span class="item item--white70"> | |
| 1209 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/val-belair" data-gtm-page-type="Quartier" data-gtm-page-name="Val-Bélair" class="item-link " > | |
| 1210 | + Val-Bélair | |
| 1211 | + </a> | |
| 1212 | + </span> | |
| 1213 | + | |
| 1214 | + | |
| 1215 | + <span class="item item--white70"> | |
| 1216 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/vanier" data-gtm-page-type="Quartier" data-gtm-page-name="Vanier" class="item-link " > | |
| 1217 | + Vanier | |
| 1218 | + </a> | |
| 1219 | + </span> | |
| 1220 | + | |
| 1221 | + | |
| 1222 | + <span class="item item--white70"> | |
| 1223 | + <a href="https://logisco.com/fr/appartements-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1224 | + Lévis | |
| 1225 | + </a> | |
| 1226 | + </span> | |
| 1227 | + | |
| 1228 | + | |
| 1229 | + <span class="item item--white70"> | |
| 1230 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1231 | + Desjardins | |
| 1232 | + </a> | |
| 1233 | + </span> | |
| 1234 | + | |
| 1235 | + | |
| 1236 | + <span class="item item--white70"> | |
| 1237 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-david" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-David" class="item-link " > | |
| 1238 | + Saint-David | |
| 1239 | + </a> | |
| 1240 | + </span> | |
| 1241 | + | |
| 1242 | + | |
| 1243 | + <span class="item item--white70"> | |
| 1244 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-nicolas" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Nicolas" class="item-link " > | |
| 1245 | + Saint-Nicolas | |
| 1246 | + </a> | |
| 1247 | + </span> | |
| 1248 | + | |
| 1249 | + | |
| 1250 | + <span class="item item--white70"> | |
| 1251 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1252 | + Saint-Romuald | |
| 1253 | + </a> | |
| 1254 | + </span> | |
| 1255 | + | |
| 1256 | + | |
| 1257 | + <span class="item item--white70"> | |
| 1258 | + <a href="https://logisco.com/fr/appartements-a-louer/donnacona" data-gtm-page-type="Ville" data-gtm-page-name="Donnacona" class="item-link " > | |
| 1259 | + Donnacona | |
| 1260 | + </a> | |
| 1261 | + </span> | |
| 1262 | + | |
| 1263 | + | |
| 1264 | + <span class="item item--white70"> | |
| 1265 | + <a href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures" data-gtm-page-type="Ville" data-gtm-page-name="Saint-Augustin-de-Desmaures" class="item-link " > | |
| 1266 | + Saint-Augustin-De-Desmaures | |
| 1267 | + </a> | |
| 1268 | + </span> | |
| 1269 | + | |
| 1270 | + | |
| 1271 | + </template> | |
| 1272 | +</single-expand> | |
| 1273 | + | |
| 1274 | + | |
| 1275 | +<div class="id_750d3332f0d42f874d235808f8c66a7d1d9c6129 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1276 | + <single-expand | |
| 1277 | + class="" | |
| 1278 | + :mobile-breakpoint="750" | |
| 1279 | + :mobile-expanded="true" | |
| 1280 | + :expanded="false" | |
| 1281 | + is-link > | |
| 1282 | + <template #label> | |
| 1283 | + <span class="item item--bolder item--white"> | |
| 1284 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Espaces commerciaux à louer" > | |
| 1285 | + <p class="expand-labelName">Espaces commerciaux</p> | |
| 1286 | + </a> | |
| 1287 | + </span> | |
| 1288 | + </template> | |
| 1289 | + <template #content> | |
| 1290 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1291 | + | |
| 1292 | + <span class="item item--white70"> | |
| 1293 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1294 | + Québec | |
| 1295 | + </a> | |
| 1296 | + </span> | |
| 1297 | + | |
| 1298 | + | |
| 1299 | + <span class="item item--white70"> | |
| 1300 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1301 | + Beauport | |
| 1302 | + </a> | |
| 1303 | + </span> | |
| 1304 | + | |
| 1305 | + | |
| 1306 | + <span class="item item--white70"> | |
| 1307 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1308 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1309 | + </a> | |
| 1310 | + </span> | |
| 1311 | + | |
| 1312 | + | |
| 1313 | + <span class="item item--white70"> | |
| 1314 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1315 | + Lévis | |
| 1316 | + </a> | |
| 1317 | + </span> | |
| 1318 | + | |
| 1319 | + | |
| 1320 | + <span class="item item--white70"> | |
| 1321 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/charny" data-gtm-page-type="Quartier" data-gtm-page-name="Charny" class="item-link " > | |
| 1322 | + Charny | |
| 1323 | + </a> | |
| 1324 | + </span> | |
| 1325 | + | |
| 1326 | + | |
| 1327 | + <span class="item item--white70"> | |
| 1328 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1329 | + Desjardins | |
| 1330 | + </a> | |
| 1331 | + </span> | |
| 1332 | + | |
| 1333 | + | |
| 1334 | + <span class="item item--white70"> | |
| 1335 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-jean-chrysostome" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Jean-Chrysostome" class="item-link " > | |
| 1336 | + Saint-Jean-Chrysostome | |
| 1337 | + </a> | |
| 1338 | + </span> | |
| 1339 | + | |
| 1340 | + | |
| 1341 | + <span class="item item--white70"> | |
| 1342 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1343 | + Saint-Romuald | |
| 1344 | + </a> | |
| 1345 | + </span> | |
| 1346 | + | |
| 1347 | + | |
| 1348 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1349 | + | |
| 1350 | + </template> | |
| 1351 | +</single-expand> | |
| 1352 | + | |
| 1353 | + | |
| 1354 | + <single-expand | |
| 1355 | + class="" | |
| 1356 | + :mobile-breakpoint="750" | |
| 1357 | + :mobile-expanded="true" | |
| 1358 | + :expanded="false" | |
| 1359 | + is-link > | |
| 1360 | + <template #label> | |
| 1361 | + <span class="item item--bolder item--white"> | |
| 1362 | + <a href="https://logisco.com/fr/hotels" data-gtm-page-type="Page" data-gtm-page-name="Hôtels" > | |
| 1363 | + <p class="expand-labelName">Hôtels</p> | |
| 1364 | + </a> | |
| 1365 | + </span> | |
| 1366 | + </template> | |
| 1367 | + <template #content> | |
| 1368 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1369 | + | |
| 1370 | + <span class="item item--white70"> | |
| 1371 | + <a href="https://www.hilton.com/fr/hotels/yqbwhht-home2-suites-quebec-city/" class="item-link " > | |
| 1372 | + Home2 Suites par Hilton Québec | |
| 1373 | + </a> | |
| 1374 | + </span> | |
| 1375 | + | |
| 1376 | + | |
| 1377 | + <span class="item item--white70"> | |
| 1378 | + <a href="https://www.hilton.com/fr/hotels/yqbbphx-hampton-suites-quebec-city-beauport/" class="item-link " > | |
| 1379 | + Hampton Inn & Suites Québec/Beauport | |
| 1380 | + </a> | |
| 1381 | + </span> | |
| 1382 | + | |
| 1383 | + | |
| 1384 | + <span class="item item--white70"> | |
| 1385 | + <a href="https://www.hilton.com/fr/hotels/yqbsrhx-hampton-suites-quebec-city-saint-romuald/" class="item-link " > | |
| 1386 | + Hampton Inn & Suites Québec/Lévis | |
| 1387 | + </a> | |
| 1388 | + </span> | |
| 1389 | + | |
| 1390 | + | |
| 1391 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1392 | + | |
| 1393 | + </template> | |
| 1394 | +</single-expand> | |
| 1395 | + | |
| 1396 | + </div> | |
| 1397 | + | |
| 1398 | + | |
| 1399 | +<div class="id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 blockGroup modifier-v--center modifier-vm--left padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1400 | + <span class="item item--bolder item--white"> | |
| 1401 | + <span class="item-link " > | |
| 1402 | + Téléphone sans frais | |
| 1403 | + </span> | |
| 1404 | + </span> | |
| 1405 | + | |
| 1406 | + | |
| 1407 | + <span class="item item--bigger item--white desktopOnly"> | |
| 1408 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1409 | + + 1-833-564-4726 | |
| 1410 | + </a> | |
| 1411 | + </span> | |
| 1412 | + <span class="item item--bigger item--white mobileOnly"> | |
| 1413 | + <a href="tel:+18335644726" class="item-link " data-gtm-event="appelFooter" > | |
| 1414 | + + 1-833-564-4726 | |
| 1415 | + </a> | |
| 1416 | + </span> | |
| 1417 | + | |
| 1418 | + | |
| 1419 | + <div class="items-row items-row--center "> | |
| 1420 | + <modal-button class-names="js-open-modal c2a c2a-hours " aria-label="Heures d'ouverture" modal-id="99e74ab5-6702-4826-8d7d-d6963262fe2d" data-gtm-event="clickButton" data-gtm-id="heures-douverture"> | |
| 1421 | + <div class="c2a-hoursIcon"> | |
| 1422 | + <span class="c2a-hoursIconCenter"></span> | |
| 1423 | + </div> | |
| 1424 | + Heures d’ouverture | |
| 1425 | + </modal-button> | |
| 1426 | + | |
| 1427 | + | |
| 1428 | + </div> | |
| 1429 | + | |
| 1430 | + <single-expand | |
| 1431 | + class="" | |
| 1432 | + :mobile-breakpoint="750" | |
| 1433 | + :mobile-expanded="true" | |
| 1434 | + :expanded="false" | |
| 1435 | + > | |
| 1436 | + <template #label> | |
| 1437 | + <span class="item item--bolder item--white"> | |
| 1438 | + <div > | |
| 1439 | + <p class="expand-labelName">Support</p> | |
| 1440 | + </div> | |
| 1441 | + </span> | |
| 1442 | + </template> | |
| 1443 | + <template #content> | |
| 1444 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1445 | + | |
| 1446 | + <span class="item item--white70"> | |
| 1447 | + <a href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="item-link " > | |
| 1448 | + Centre d'aide | |
| 1449 | + </a> | |
| 1450 | + </span> | |
| 1451 | + | |
| 1452 | + | |
| 1453 | + <span class="item item--white70"> | |
| 1454 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1455 | + Nous joindre | |
| 1456 | + </a> | |
| 1457 | + </span> | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + | |
| 1461 | + <span class="item item--white70"> | |
| 1462 | + <a href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" class="item-link " > | |
| 1463 | + Nouvel arrivant | |
| 1464 | + </a> | |
| 1465 | + </span> | |
| 1466 | + | |
| 1467 | + | |
| 1468 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1469 | + | |
| 1470 | + </template> | |
| 1471 | +</single-expand> | |
| 1472 | + | |
| 1473 | + </div> | |
| 1474 | + | |
| 1475 | + </div> | |
| 1476 | + | |
| 1477 | + | |
| 1478 | +<div class="id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 layout-full padding-top--0x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile-left--0x layout-rowGap--0x"> | |
| 1479 | + <a | |
| 1480 | + data-gtm-event="clickButton" data-gtm-id="donnez-votre-avis-pour-gagner-100" | |
| 1481 | + target=_blank | |
| 1482 | + href="https://logisco.qualtrics.com/jfe/form/SV_2c2Qx298zKfhg34" class="c2a c2a-text c2a--secondary c2a-style--secondary" | |
| 1483 | + aria-label="Donnez votre avis pour gagner 100$" | |
| 1484 | +> | |
| 1485 | + <span class="c2a-name"> | |
| 1486 | + Donnez votre avis pour gagner 100$ | |
| 1487 | + </span> | |
| 1488 | + </a> | |
| 1489 | + | |
| 1490 | + </div> | |
| 1491 | + | |
| 1492 | + | |
| 1493 | + | |
| 1494 | +<div class="id_53475154bf3a1ec91c439fa85367d8e43e69cb6d layout-columns modifier-h--center padding-top--0_5x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_25x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1495 | + | |
| 1496 | +<div class="id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 blockGroup modifier-v--around modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1497 | + <div class="items-row items-row--start "> | |
| 1498 | + <span class="item item--white"> | |
| 1499 | + <a href="https://logisco.com/fr/politique-de-cookies" data-gtm-page-type="Page" data-gtm-page-name="Politique de cookies" class="item-link " > | |
| 1500 | + Politique d'utilisation des cookies | |
| 1501 | + </a> | |
| 1502 | + </span> | |
| 1503 | + | |
| 1504 | + | |
| 1505 | + <span class="item item--white"> | |
| 1506 | + <a href="https://logisco.com/fr/politique-de-protection-des-renseignements-personnels" data-gtm-page-type="Page" data-gtm-page-name="Politique de protection des renseignements personnels" class="item-link " > | |
| 1507 | + Politique de protection des renseignements personnels | |
| 1508 | + </a> | |
| 1509 | + </span> | |
| 1510 | + | |
| 1511 | + | |
| 1512 | + <span class="item item--label item--gray"> | |
| 1513 | + <span class="item-link " > | |
| 1514 | + © Tous droits réservés LOGISCO 2026 | |
| 1515 | + </span> | |
| 1516 | + </span> | |
| 1517 | + | |
| 1518 | + | |
| 1519 | + </div> | |
| 1520 | + | |
| 1521 | + </div> | |
| 1522 | + | |
| 1523 | + | |
| 1524 | +<div class="id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 blockGroup modifier-v--center modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1525 | + <div class="items-row items-row--even "> | |
| 1526 | + <a class="icon-link " href="https://www.facebook.com/logiscogroupe/?locale=fr_CA"> | |
| 1527 | + <i class="icon-social icon-cms-social-facebook"></i> | |
| 1528 | +</a> | |
| 1529 | + | |
| 1530 | + <a class="icon-link " href="https://www.instagram.com/logiscogroupeimmo/"> | |
| 1531 | + <i class="icon-social icon-cms-social-instagram"></i> | |
| 1532 | +</a> | |
| 1533 | + | |
| 1534 | + <a class="icon-link " href="https://www.pinterest.ca/logiscogroupeimmobilier/"> | |
| 1535 | + <i class="icon-social icon-cms-social-pinterest"></i> | |
| 1536 | +</a> | |
| 1537 | + | |
| 1538 | + <a class="icon-link " href="https://www.youtube.com/user/LogiscoGroupeImmo"> | |
| 1539 | + <i class="icon-social icon-cms-social-youtube"></i> | |
| 1540 | +</a> | |
| 1541 | + | |
| 1542 | + <a class="icon-link " href="https://ca.linkedin.com/company/logisco-groupe-immobilier"> | |
| 1543 | + <i class="icon-social icon-cms-social-linkedin"></i> | |
| 1544 | +</a> | |
| 1545 | + | |
| 1546 | + </div> | |
| 1547 | + | |
| 1548 | + </div> | |
| 1549 | + | |
| 1550 | + </div> | |
| 1551 | + | |
| 1552 | + </section> | |
| 1553 | + | |
| 1554 | + </footer> | |
| 1555 | + | |
| 1556 | + | |
| 1557 | + <logisco-chat></logisco-chat> | |
| 1558 | +</div> | |
| 1559 | + | |
| 1560 | + | |
| 1561 | + | |
| 1562 | + | |
| 1563 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vendor-Cx6hDgs3.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/lodash-DsaPwWhQ.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/swiper-BiYw9q3L.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/axios-ngrFHoWO.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/@vue-tv7FT8X3.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/date-fns-BBWgIHR2.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vue-tel-input-DOM-M7oJ.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG" /><script type="module" src="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="FxGABe1kefCg8MePdYzfwSH9X6ha34lG"></script><script type="application/ld+json">{ | |
| 1564 | + "@context": "https://schema.org", | |
| 1565 | + "@type": "apartment", | |
| 1566 | + "@id": "618:1511", | |
| 1567 | + "address": { | |
| 1568 | + "@type": "PostalAddress", | |
| 1569 | + "streetAddress": "211-11625 Boulevard de la Colline", | |
| 1570 | + "addressLocality": "Québec", | |
| 1571 | + "addressRegion": "Québec", | |
| 1572 | + "postalCode": "G2A 2E1", | |
| 1573 | + "addressCountry": "Canada" | |
| 1574 | + }, | |
| 1575 | + "branchCode": "1511", | |
| 1576 | + "floorLevel": "2", | |
| 1577 | + "image": "https://logisco.com/static/vb/2468/plan-618-331-planlocation111-211-311-411.webp", | |
| 1578 | + "map": "https://www.google.com/maps?q=211-11625+Boulevard+de+la+Colline%2C+Qu%C3%A9bec%2C+Qu%C3%A9bec%2C+G2A+2E1", | |
| 1579 | + "name": "Appartement 211", | |
| 1580 | + "numberOfBedrooms": "4 1/2", | |
| 1581 | + "telephone": "+14185644726", | |
| 1582 | + "url": "https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211" | |
| 1583 | +} | |
| 1584 | +</script> | |
| 1585 | + | |
| 1586 | +<script type="application/ld+json">{ | |
| 1587 | + "@context": "https://schema.org", | |
| 1588 | + "@type": "BreadcrumbList", | |
| 1589 | + "itemListElement": [ | |
| 1590 | + { | |
| 1591 | + "@type": "ListItem", | |
| 1592 | + "position": 1, | |
| 1593 | + "name": "Accueil", | |
| 1594 | + "item": "https://logisco.com/fr" | |
| 1595 | + }, | |
| 1596 | + { | |
| 1597 | + "@type": "ListItem", | |
| 1598 | + "position": 2, | |
| 1599 | + "name": "Appartements \u00e0 louer", | |
| 1600 | + "item": "https://logisco.com/fr/appartements-a-louer" | |
| 1601 | + }, | |
| 1602 | + { | |
| 1603 | + "@type": "ListItem", | |
| 1604 | + "position": 3, | |
| 1605 | + "name": "Qu\u00e9bec", | |
| 1606 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec" | |
| 1607 | + }, | |
| 1608 | + { | |
| 1609 | + "@type": "ListItem", | |
| 1610 | + "position": 4, | |
| 1611 | + "name": "Loretteville", | |
| 1612 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/loretteville" | |
| 1613 | + }, | |
| 1614 | + { | |
| 1615 | + "@type": "ListItem", | |
| 1616 | + "position": 5, | |
| 1617 | + "name": "Les Bois\u00e9s de la Colline", | |
| 1618 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline" | |
| 1619 | + }, | |
| 1620 | + { | |
| 1621 | + "@type": "ListItem", | |
| 1622 | + "position": 6, | |
| 1623 | + "name": "Appartement 211", | |
| 1624 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/loretteville/les-boises-de-la-colline/11625-appartement-211" | |
| 1625 | + } | |
| 1626 | + ] | |
| 1627 | +}</script> | |
| 1628 | + | |
| 1629 | + | |
| 1630 | +</body> | |
| 1631 | + | |
| 1632 | +</html> | |
added
tests/fixtures/logisco/0649d1f72d9d518728c4.html
+1847 −0
@@ -0,0 +1,1847 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + <script nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi"> | |
| 5 | + window.dataLayer = [] | |
| 6 | +</script> | |
| 7 | + <!-- Google Tag Manager --> | |
| 8 | + <script nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 9 | + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 10 | + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 11 | + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;var n=d.querySelector('[nonce]'); | |
| 12 | + n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f); | |
| 13 | + })(window,document,'script','dataLayer','GTM-PR75X6VZ');</script> | |
| 14 | + <!-- End Google Tag Manager --> | |
| 15 | + <meta name="csrf-token" content="RcK0g54Vsq52dUtLxz6zGOlBZlnXZoocezFO9jj4"> | |
| 16 | + <meta charset="utf-8"> | |
| 17 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 18 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes"> | |
| 19 | + | |
| 20 | + <style nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi">@charset "UTF-8";:root{--vs-colors--lightest: rgba(60, 60, 60, .26);--vs-colors--light: rgba(60, 60, 60, .5);--vs-colors--dark: #333;--vs-colors--darkest: rgba(0, 0, 0, .15);--vs-search-input-color: inherit;--vs-search-input-placeholder-color: inherit;--vs-font-size: 1rem;--vs-line-height: 1.4;--vs-state-disabled-bg: rgb(248, 248, 248);--vs-state-disabled-color: var(--vs-colors--light);--vs-state-disabled-controls-color: var(--vs-colors--light);--vs-border-color: var(--vs-colors--lightest);--vs-border-width: 1px;--vs-border-style: solid;--vs-border-radius: 4px;--vs-actions-padding: 4px 6px 0 3px;--vs-controls-color: var(--vs-colors--light);--vs-controls-size: 1;--vs-controls--deselect-text-shadow: 0 1px 0 #fff;--vs-selected-bg: #f0f0f0;--vs-selected-color: var(--vs-colors--dark);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: #fff;--vs-dropdown-color: inherit;--vs-dropdown-z-index: 1000;--vs-dropdown-min-width: 160px;--vs-dropdown-max-height: 350px;--vs-dropdown-box-shadow: 0px 3px 6px 0px var(--vs-colors--darkest);--vs-dropdown-option-bg: #000;--vs-dropdown-option-color: var(--vs-dropdown-color);--vs-dropdown-option-padding: 3px 20px;--vs-dropdown-option--active-bg: #5897fb;--vs-dropdown-option--active-color: #fff;--vs-dropdown-option--deselect-bg: #fb5858;--vs-dropdown-option--deselect-color: #fff}:root{--vs-disabled-bg: var(--vs-state-disabled-bg);--vs-disabled-color: var(--vs-state-disabled-color)}html,body,p,ul,li,h1,h2,h3{margin:0;padding:0}h1,h2,h3{font-size:100%;font-weight:400}ul{list-style:none}input{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img{height:auto;max-width:100%}html{line-height:normal;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2rem}a{text-decoration:none;background-color:transparent}strong{font-weight:bolder}img{border-style:none}input{margin:0;font-family:inherit}input{overflow:visible}[type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner{padding:0;border-style:none}[type=button]:-moz-focusring{outline:1px dotted ButtonText}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}:root{--base-font: $base-font;--spacing-0x: 0;--spacing-0_25x: 1.6em;--spacing-0_5x: 3.2em;--spacing-1x: 6.4em;--spacing-1_25x: 8em;--spacing-1_5x: 9.6em;--spacing-2x: 12em;--border-radius-none: 0;--border-radius-sm: 2rem;--border-radius-md: 4rem;--border-radius-lg: 6rem}@media (max-width:750px){:root{--spacing-0x: 0;--spacing-0_5x: .8em;--spacing-1x: 1.6em;--spacing-2x: 4em}}html{font-size:.7320644217vw}body{line-height:normal}h1,h2,h3{font-weight:400;font-size:1em}a{color:currentColor}img{display:block;width:100%;height:100%}html{font-size:.6944444444vw}@media (max-width:750px){html{font-size:2.7777777778vw}}html{scroll-behavior:smooth}.alertTop-close{color:#363636;font-family:Macan}.alertTop-close{font-weight:400;font-size:2rem}@media (max-width:750px){.alertTop-close{font-weight:400;font-size:1.8rem}}.projectServices-title{font-family:Macan;font-weight:400;font-size:2.2rem;line-height:1.3}@media (max-width:750px){.projectServices-title{font-size:2.1rem;line-height:1.4}}.projectServices-listItem,.alertTop-content{font-family:Macan;font-weight:300;font-size:1.6rem;line-height:1.4}.breadcrumb-item{font-family:Macan;font-weight:400;font-size:1.2rem;line-height:1.3}.unitHeader-address{font-family:Macan;font-weight:400;font-size:1.5rem;line-height:1.5}.mainMenu-elementLink{font-family:Macan;font-weight:500;font-size:1.7rem;line-height:1}.tooltip-subtitle{font-family:Macan;font-weight:500;font-size:1.3rem;line-height:1}.unitHeader-label{font-family:Macan;font-weight:300;font-size:4.4rem;line-height:1.3}@media (max-width:750px){.unitHeader-label{font-size:3.2rem;line-height:1.2}}@font-face{font-family:icon-cms;src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4);src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-cms-DWd4ei5T.woff2?39a3p4) format("woff2"),url(/theme/build/assets/icomoon-cms-DQc2SeWf.ttf?39a3p4) format("truetype"),url(/theme/build/assets/icomoon-cms-PZ9bTWPn.woff?39a3p4) format("woff"),url(/theme/build/assets/icomoon-cms-B-zWZdiB.svg?39a3p4#icomoon-cms) format("svg");font-weight:400;font-style:normal;font-display:block}[class^=icon-cms-],[class*=" icon-cms-"]{font-family:icon-cms!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-cms-]:after,[class*=" icon-cms-"]:after{position:absolute;top:0;left:0}.icon-cms-close:before{content:""}.icon-cms-social-share:before{content:""}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Semibold-P894naFN.woff2) format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Book-BKtKbQB6.woff2) format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Regular-Tnze7Wf6.woff2) format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Light-D0XdM3nR.woff2) format("woff2");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Thin-D8KRJN3P.woff2) format("woff2");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:icomoon-logisco;src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j);src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-logisco-3ELZv8tI.ttf?u4aq2j) format("truetype"),url(/theme/build/assets/icomoon-logisco-DAB2sWOk.woff?u4aq2j) format("woff"),url(/theme/build/assets/icomoon-logisco-CJnwMfM_.svg?u4aq2j#icomoon) format("svg");font-weight:400;font-style:normal;font-display:swap}[class^=icon-logisco-],[class*=" icon-logisco-"]{font-weight:400;font-family:icomoon-logisco!important;font-style:normal;font-variant:normal;line-height:1;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-logisco-]:after,[class*=" icon-logisco-"]:after{position:absolute;top:0;left:0}.icon-logisco-service--dog_accepted:before{content:""}.icon-logisco-service--dishwasher_connection:before{content:""}.icon-logisco-service--entrance_washer_dryer:before{content:""}.icon-logisco-service--fridge_waterline:before{content:""}.icon-logisco-service--visible_concrete_columns:before{content:""}.icon-logisco-service--secure_bike_rack:before{content:""}.icon-logisco-service--guest_parking:before{content:""}.icon-logisco-service--relief_area:before{content:""}.icon-logisco-service--grooming_area:before{content:""}.icon-logisco-service--recycling_chute:before{content:""}.icon-logisco-service--secure_entrance:before{content:""}.icon-logisco-service--car_wash:before{content:""}.icon-logisco-service--moto_parking:before{content:""}.icon-logisco-service--additional_storage:before{content:""}.icon-logisco-service--intercom:before{content:""}.icon-logisco-service--garbage_chute:before{content:""}.icon-logisco-service--secure_post_office_locker:before{content:""}.icon-logisco-service--security_cam:before{content:""}.icon-logisco-service--charging_station:before{content:""}.icon-logisco-service--elevator:before{content:""}.icon-logisco-service--wifi:before{content:""}.icon-logisco-service--indoor_parking:before{content:""}.icon-logisco-service--outdoor_parking:before{content:""}.icon-logisco-service--ac:before{content:""}.icon-logisco-phone:before{content:""}.icon-logisco-information:before{content:""}.icon-logisco-3d:before{content:""}.icon-cms-close{font-family:icomoon-logisco!important}.icon-cms-close:before{content:""}.icon-cms-social-share{font-family:icomoon-logisco!important}.icon-cms-social-share:before{content:""}.alertTop{position:fixed;top:0;z-index:100;display:flex;align-items:center;justify-content:center;width:100%;height:4.8em;padding-top:1em;padding-bottom:1em;color:#fff;font-family:Macan}@media (max-width:750px){.alertTop{justify-content:space-between}}.alertTop-on .alertTop-placeholder{height:4.8em}.alertTop--main{background-color:#0385d4}.alertTop--main .alertTop-close{color:#fff}@media (min-width:751px){.alertTop-text--mobile{display:none}}@media (max-width:750px){.alertTop-text--desktop{display:none}}.alertTop-close{position:absolute;right:1em;font-size:1.2em!important;font-style:normal}@media (max-width:750px){.alertTop-close{right:1.5em}}.alertTop{padding-top:1.2em;padding-bottom:1.2em}.alertTop-close{position:absolute;font-size:3em!important}.alertTop-content a{text-decoration:underline;text-underline-offset:.1em}@media (max-width:750px){.alertTop{padding:.8em 4em .8em 1.6em}.alertTop-close{right:.5rem}.alertTop-content{font-size:1.2em}}.breadcrumb-list{display:flex;gap:1.2rem;margin-bottom:4em;padding-bottom:4em;border-bottom:.1rem solid #0F1223}.breadcrumb-item{display:flex;color:#0f1223}.breadcrumb-item:not(:last-child):after{display:block;padding-left:1.2rem;content:"|"}@media (max-width:750px){.breadcrumb-list{padding:1rem 0;margin:0 0 .6rem;border-bottom:none;overflow-x:scroll}.breadcrumb-item{white-space:nowrap}}.mainMenu{display:flex;gap:3em;align-items:center;justify-content:flex-end}.mainMenu-item{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;width:100%}.mainMenu-element{display:flex;align-items:center}.mainMenu-elementLink{display:flex;flex-direction:row;gap:.25em;align-items:center;padding:.3571428571em;color:#000;font-weight:500;font-size:1.4em;font-family:Macan;line-height:1.2142857143em;letter-spacing:.0642857143em;white-space:nowrap}.mainMenu-list{display:flex;gap:4.4em}@media (max-width:750px){.mainMenu{gap:1em}.mainMenu-list{display:none}}.mainMenu{gap:0;width:100%;justify-content:space-between;padding:0 6.4em}.mainMenu-list{margin-right:auto;margin-left:auto;gap:3.2em}.mainMenu-item{white-space:nowrap}.mainMenu-item:last-child{display:flex;flex-direction:row;align-items:center;gap:3.2em}.mainMenu-item:last-child:before{content:"";background-color:#c9d5dc;width:.1em;height:2.4em}.mainMenu-elementLink{font-size:1.7rem;letter-spacing:0}@media (max-width:750px){.mainMenu{padding:0 1.6em}}.mainHeader{position:fixed;top:0;left:0;z-index:100;width:100%;background-color:#fff}.mainHeader-placeholder{height:5.5em}@media (max-width:750px){.mainHeader-placeholder{height:5em}}.mainHeader-shadow{opacity:0}.mainHeader-bg{position:absolute;left:0;display:block;width:100%;height:5.5em;background-color:#fff;transform:translateY(-100%)}.mainHeader-nav{position:relative;display:flex;align-items:center;justify-content:space-between;height:5.5em;padding:1.5em 6.4em}.mainHeader-brand{display:flex;align-items:center}.mainHeader-logo{display:flex;width:70%;height:100%}.mainHeader-logo.mainHeader-logo--white{display:none}@media (max-width:750px){.mainHeader-bg{height:5em;transform:translateY(0)}.mainHeader-brand{font-size:.15em}.mainHeader-logo{width:85em}.mainHeader-nav{height:5em;padding:0 4em}}.mainHeader-nav{padding:0;border-bottom:.1em solid #C9D5DC}.mainHeader-logo{width:13.7em}.mainHeader-linksList{display:flex;gap:.8em;align-items:center}.mainHeader-listItem{display:flex;align-items:center;justify-content:center;height:max-content}@media (min-width:751px){.mainHeader-listItem{min-width:6.3rem;min-height:4.5rem;padding-right:.8rem;padding-left:.8rem;border:.2rem solid transparent;border-radius:8rem}}.icon-logisco-phone{display:flex;align-items:center;justify-content:center;padding:0;color:#000;font-size:2em;background-color:transparent;border:none;aspect-ratio:1}@supports not (aspect-ratio:1){.icon-logisco-phone{position:relative}.icon-logisco-phone:after{display:block;content:"";width:100%;padding-top:100%}}.icon-logisco-phone{font-size:2.3em}@media (max-width:750px){.mainHeader-nav{padding:0}.mainHeader-brand{margin-right:auto}.mainHeader-logo{width:70em}.mainHeader-linksList{gap:2.2rem}}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}:root{--dp-font-family: Macan !important;--dp-input-padding: 1em 3em 1em 1.2em !important;--dp-font-size: 1.6rem !important;--dp-preview-font-size: 1.3rem !important;--dp-border-radius: .8rem !important;--dp-cell-size: 1.8em !important}.logisco-unit .projectServices-list{grid-template-columns:repeat(2,1fr)}@media (max-width:750px){.logisco-unit .projectServices-list{grid-template-columns:repeat(1,1fr)}}.unitHeader{position:relative;display:flex;flex-direction:column;gap:3.2em;padding-top:4em;padding-right:12.9rem;padding-bottom:8em;padding-left:12.9rem;background-color:#f3f8ff}.unitHeader .breadcrumb-list{margin-bottom:1em;padding-bottom:0;border-bottom:none}.unitHeader-background{position:absolute;top:75em;right:0;bottom:0;left:0;background-color:#fff}.unitHeader-topContainer{display:flex;align-items:center;justify-content:space-between}.unitHeader-bottomContainer{z-index:20;display:flex;gap:1.6em;justify-content:space-between}.unitHeader-imageWrapper--mobile{display:none}.unitHeader-label{display:inline-block;align-items:center}.unitHeader-labelDivider{margin-right:.3em}.unitHeader-address{color:#0385d4;text-decoration:underline}.unitHeader-callToActions{position:absolute;top:1.5em;right:1.5em;z-index:20;display:flex;gap:.8em;justify-content:flex-end;width:100%}.unitHeader-callToActions .icon-cms-social-share{color:#0f1223!important;font-size:1.3em}.unitHeader-link{display:block;height:max-content;margin-top:1.6em}.unitHeader-imageWrapper{position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;background-color:#fff;border-radius:.8em;aspect-ratio:1.5068226121}@supports not (aspect-ratio:calc(773 / 513)){.unitHeader-imageWrapper{position:relative}.unitHeader-imageWrapper:after{display:block;content:"";width:100%;padding-top:66.3648124191%}.unitHeader-imageWrapper>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper img{width:unset;max-width:100%;height:100%;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-bottomLeft{position:relative;display:flex;flex-direction:column;width:65%;height:100%}.unitHeader-bottomLeft .projectServices{margin:0}.unitHeader-imageOverlay{display:none}@media (max-width:750px){.unitHeader-labelDivider{display:none}.unitHeader-imageWrapper--mobile{position:relative;display:block;aspect-ratio:1.3333333333}@supports not (aspect-ratio:calc(360 / 270)){.unitHeader-imageWrapper--mobile{position:relative}.unitHeader-imageWrapper--mobile:after{display:block;content:"";width:100%;padding-top:75%}.unitHeader-imageWrapper--mobile>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper--mobile img{width:unset;max-width:100%;height:unset;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-imageWrapper--mobile .unitHeader-callToActions{display:flex}.unitHeader-imageWrapper--mobile .unitHeader-callToActions .icon-cms-social-share{font-size:1.5em}.unitHeader-callToActions,.unitHeader-imageWrapper{display:none}.unitHeader{padding:0;background-color:#fff}.unitHeader .projectServices{padding:3.2em 1.6em}.unitHeader-background{display:none}.unitHeader-imageWrapper{border-radius:0}.unitHeader-imageOverlay{position:absolute;z-index:10;display:block;background:linear-gradient(180deg,#02002405,#02002405),linear-gradient(180deg,#02002466,#00d4ff00 35%);top:0;right:0;bottom:0;left:0}.unitHeader-topContainer .breadcrumb-list{margin:0;padding:1rem 0 1rem 1.6em}.unitHeader-text{width:100%}.unitHeader-label{display:flex;flex-direction:column;align-items:flex-start;margin-top:1.6rem}.unitHeader-label--small{font-size:2.8rem}.unitHeader-label,.unitHeader-link{padding-right:1.6rem;padding-left:1.6rem}.unitHeader-bottomContainer{flex-direction:column}.unitHeader-bottomLeft{width:100%}}.tooltip-container{display:none}.tooltip-subtitle{margin-bottom:1.6em}.projectServices-title .tooltip-subtitle{margin-bottom:0;font-size:1.3rem}.projectServices{display:flex;flex-direction:column;margin-right:14.4em;margin-left:14.4em;padding-top:12em;padding-bottom:0;gap:4em}.unitHeader-bottomLeft .projectServices{padding-top:8em}.unitHeader-bottomLeft .projectServices+.projectServices{padding-top:2.4em}.projectServices-title{position:relative;display:flex;gap:.4em}.projectServices-title .icon-logisco-information{color:#0385d4;margin-top:.2em}.projectServices-list{display:grid;padding-top:2.4em;padding-bottom:4em;border-bottom:.1em solid #EEF0F2;grid-template-columns:repeat(3,1fr);column-gap:3.2em;row-gap:1.6em}.unitHeader-bottomLeft .projectServices-list{padding-bottom:2.4em}.projectServices-itemContainer{display:flex;gap:.8em;align-items:center}.projectServices-icon{font-size:3em}.projectServices-listItem{display:flex;gap:.8em;align-items:center}@media (max-width:750px){.projectServices{margin-right:1.6em;margin-left:1.6em}.projectServices-list{grid-template-columns:repeat(1,1fr);gap:2em 1em}}</style> | |
| 21 | + <script | |
| 22 | + id="locallogic-sdk" | |
| 23 | + nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" | |
| 24 | + async | |
| 25 | + src="https://sdk.locallogic.co/sdks-js/1.23.32/index.umd.js" | |
| 26 | +></script> | |
| 27 | + | |
| 28 | +<script nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi"> | |
| 29 | + (function() { | |
| 30 | + let sdkLoaded = false; | |
| 31 | + let domReady = false; | |
| 32 | + | |
| 33 | + const globalOptions = { | |
| 34 | + locale: "fr", | |
| 35 | + appearance: { | |
| 36 | + theme: "day", | |
| 37 | + variables: { | |
| 38 | + "--ll-color-primary": "#002d5c", | |
| 39 | + "--ll-color-primary-variant1": "#219cd7", | |
| 40 | + "--ll-font-family": "Macan, sans-serif" | |
| 41 | + } | |
| 42 | + } | |
| 43 | + }; | |
| 44 | + | |
| 45 | + function tryInitialize() { | |
| 46 | + if (!sdkLoaded || !domReady) { | |
| 47 | + return; | |
| 48 | + } | |
| 49 | + | |
| 50 | + const sdkContainer = document.getElementById("local-content-widget"); | |
| 51 | + | |
| 52 | + if (!sdkContainer) { | |
| 53 | + return; | |
| 54 | + } | |
| 55 | + | |
| 56 | + const rect = sdkContainer.getBoundingClientRect(); | |
| 57 | + if (rect.width === 0 || rect.height === 0) { | |
| 58 | + setTimeout(tryInitialize, 100); | |
| 59 | + return; | |
| 60 | + } | |
| 61 | + | |
| 62 | + const lat = parseFloat(sdkContainer.dataset.localLogicLat); | |
| 63 | + const lng = parseFloat(sdkContainer.dataset.localLogicLng); | |
| 64 | + | |
| 65 | + const ll = LLSDKsJS("420d1d42c48e9186122576db04e678af.41a932d2-2a53-461a-b85f-b5dd90355bce", globalOptions); | |
| 66 | + | |
| 67 | + const sdkOptions = { | |
| 68 | + lat: lat, | |
| 69 | + lng: lng, | |
| 70 | + marker: { | |
| 71 | + lat: lat, | |
| 72 | + lng: lng | |
| 73 | + }, | |
| 74 | + mapProvider: { | |
| 75 | + name: "google", | |
| 76 | + key: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q" | |
| 77 | + }, | |
| 78 | + scoresMenu: { | |
| 79 | + categories: { | |
| 80 | + transport: { | |
| 81 | + hide: JSON.parse(sdkContainer.dataset.localLogicTransport || 'false'), | |
| 82 | + scores: { | |
| 83 | + pedestrian_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportPedestrianFriendly || 'false') }, | |
| 84 | + cycling_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCyclingFriendly || 'false') }, | |
| 85 | + transit_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportTransitFriendly || 'false') }, | |
| 86 | + car_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCarFriendly || 'false') } | |
| 87 | + } | |
| 88 | + }, | |
| 89 | + education: { | |
| 90 | + hide: JSON.parse(sdkContainer.dataset.localLogicEducation || 'false'), | |
| 91 | + scores: { | |
| 92 | + daycares: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationDaycares || 'false') }, | |
| 93 | + primary_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationPrimarySchools || 'false') }, | |
| 94 | + high_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationHighSchools || 'false') } | |
| 95 | + } | |
| 96 | + }, | |
| 97 | + amenities: { | |
| 98 | + hide: JSON.parse(sdkContainer.dataset.localLogicAmenities || 'false'), | |
| 99 | + scores: { | |
| 100 | + shopping: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesShopping || 'false') }, | |
| 101 | + groceries: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesGroceries || 'false') }, | |
| 102 | + restaurants: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesRestaurants || 'false') }, | |
| 103 | + cafes: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesCafes || 'false') } | |
| 104 | + } | |
| 105 | + }, | |
| 106 | + character: { | |
| 107 | + hide: JSON.parse(sdkContainer.dataset.localLogicCharacter || 'false'), | |
| 108 | + scores: { | |
| 109 | + nightlife: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterNightlife || 'false') }, | |
| 110 | + vibrant: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterVibrant || 'false') }, | |
| 111 | + historic: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterHistoric || 'false') }, | |
| 112 | + quiet: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterQuiet || 'false') } | |
| 113 | + } | |
| 114 | + }, | |
| 115 | + nature: { | |
| 116 | + hide: JSON.parse(sdkContainer.dataset.localLogicNature || 'false'), | |
| 117 | + scores: { | |
| 118 | + parks: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureParks || 'false') }, | |
| 119 | + greenery: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureGreenery || 'false') } | |
| 120 | + } | |
| 121 | + }, | |
| 122 | + wellness: { hide: JSON.parse(sdkContainer.dataset.localLogicWellness || 'false') }, | |
| 123 | + health: { hide: JSON.parse(sdkContainer.dataset.localLogicHealth || 'false') } | |
| 124 | + } | |
| 125 | + } | |
| 126 | + }; | |
| 127 | + | |
| 128 | + ll.create("local-content", sdkContainer, sdkOptions); | |
| 129 | + } | |
| 130 | + | |
| 131 | + document.getElementById('locallogic-sdk').addEventListener('load', function() { | |
| 132 | + sdkLoaded = true; | |
| 133 | + tryInitialize(); | |
| 134 | + }); | |
| 135 | + | |
| 136 | + if (document.readyState === 'loading') { | |
| 137 | + document.addEventListener('DOMContentLoaded', function() { | |
| 138 | + domReady = true; | |
| 139 | + tryInitialize(); | |
| 140 | + }); | |
| 141 | + } else { | |
| 142 | + domReady = true; | |
| 143 | + tryInitialize(); | |
| 144 | + } | |
| 145 | + })(); | |
| 146 | +</script> | |
| 147 | + | |
| 148 | + <script async src="https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="f89f0a00-9a89-4d45-9a32-8a86321619f9"></script> | |
| 149 | + <script type="text/javascript" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi"> | |
| 150 | + function OptanonWrapper() {} | |
| 151 | + </script> | |
| 152 | + | |
| 153 | + <link rel="icon" type="image/png" href="https://logisco.com/theme/images/favicon_logisco-57x57.png" sizes="57x57" /> | |
| 154 | + | |
| 155 | + <!-- TODO this is blocking.... revert to old script --> | |
| 156 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /> <script nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi"> | |
| 157 | + window.Cheetah = { | |
| 158 | + locale: 'fr', | |
| 159 | + themeDir: "theme", | |
| 160 | + gMapKey: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q", | |
| 161 | + isMobile: false, | |
| 162 | + chatbotBaseUrl: "https:\/\/chatbot-api.logisco.com\/v1", | |
| 163 | + form: { | |
| 164 | + maxFileSize: parseInt("4"), | |
| 165 | + maxFileCount: parseInt("5"), | |
| 166 | + fileExtensions: ["jpg","jpeg","png","docx","doc","pdf","txt"] }, | |
| 167 | + formSecurity: { | |
| 168 | + default: 'turnstile', | |
| 169 | + isDisabled: false, | |
| 170 | + config: {"fallback":["turnstile","captcha"],"captcha":{"key":""},"turnstile":{"key":"0x4AAAAAAAc7m33H9T6pSzmR"}} }, | |
| 171 | + reservation: { | |
| 172 | + locationUrl: "https:\/\/logisco.com\/fr\/appartements-a-louer" } | |
| 173 | + } | |
| 174 | + </script> | |
| 175 | + | |
| 176 | + | |
| 177 | + <noscript> | |
| 178 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /> </noscript> | |
| 179 | + <style nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi"> .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } @media (max-width: 750px) { .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr 3fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 .carousel-wrapper { grid-template-columns: 1fr 1fr 1fr; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { grid-template-columns: ; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr; } } .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } @media (max-width: 750px) { .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } } .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } @media (max-width: 750px) { .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } } .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } @media (max-width: 750px) { .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } } .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } @media (max-width: 750px) { .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr; } } .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } @media (max-width: 750px) { .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } } .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 100%; } @media (max-width: 750px) { .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 80%; } } </style> | |
| 180 | + <!-- SEO --> | |
| 181 | + <title>Appartement 612 | Le MUSO LOGISCO</title> | |
| 182 | +<meta name="description" content=""> | |
| 183 | +<meta property="og:title" content="Appartement 612 | Le MUSO LOGISCO"> | |
| 184 | +<meta property="og:url" content="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612"> | |
| 185 | + <meta property="og:image" content="https://logisco.com/static/vb/5467-1200/appartement-612-le-muso-logisco.webp"> | |
| 186 | +<meta property="og:description" content=""> | |
| 187 | + | |
| 188 | +<meta id="gtm-page-info" data-gtm-page-type="Unité" data-gtm-page-name="Appartement 612" data-gtm-project-id="1718" data-gtm-unit-id="11443" data-gtm-unit-type="APARTMENT" data-gtm-available="1" data-gtm-tag="Chiens acceptés" data-gtm-is-in-wishlist="" data-gtm-is-in-reservation="" data-gtm-unit-price="206.7" data-gtm-nom-liste="unites_du_projet_le_muso"> | |
| 189 | + | |
| 190 | + | |
| 191 | + <link rel="canonical" href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612"/> | |
| 192 | + | |
| 193 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612" | |
| 194 | + hreflang="x-default"> | |
| 195 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612" | |
| 196 | + hreflang="fr"> | |
| 197 | + <meta id="gtm-additional-page-info" data-gtm-wishlist-count="0" data-gtm-reservation-count="0" data-gtm-device_type="desktop"> | |
| 198 | + | |
| 199 | + <meta id="mobile_menu_preload" href="https://logisco.com/mobile_menu.json" /> | |
| 200 | + <!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET--> | |
| 201 | + <script type='text/javascript' nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi"> | |
| 202 | + (function(){var g=function(e,h,f,g){ | |
| 203 | + this.get=function(a){for(var a=a+"=",c=document.cookie.split(";"),b=0,e=c.length;b<e;b++){for(var d=c[b];" "==d.charAt(0);)d=d.substring(1,d.length);if(0==d.indexOf(a))return d.substring(a.length,d.length)}return null}; | |
| 204 | + this.set=function(a,c){var b="",b=new Date;b.setTime(b.getTime()+6048E5);b="; expires="+b.toGMTString();document.cookie=a+"="+c+b+"; path=/; "}; | |
| 205 | + this.check=function(){var a=this.get(f);if(a)a=a.split(":");else if(100!=e)"v"==h&&(e=Math.random()>=e/100?0:100),a=[h,e,0],this.set(f,a.join(":"));else return!0;var c=a[1];if(100==c)return!0;switch(a[0]){case "v":return!1;case "r":return c=a[2]%Math.floor(100/c),a[2]++,this.set(f,a.join(":")),!c}return!0}; | |
| 206 | + this.go=function(){if(this.check()){var a=document.createElement("script");a.type="text/javascript";a.src=g;document.body&&document.body.appendChild(a)}}; | |
| 207 | + this.start=function(){var t=this;"complete"!==document.readyState?window.addEventListener?window.addEventListener("load",function(){t.go()},!1):window.attachEvent&&window.attachEvent("onload",function(){t.go()}):t.go()};}; | |
| 208 | + try{(new g(100,"r","QSI_S_ZN_9H0SsDLTgAxOu1M","https://zn9h0ssdltgaxou1m-logisco.siteintercept.qualtrics.com/SIE/?Q_ZID=ZN_9H0SsDLTgAxOu1M")).start()}catch(i){}})(); | |
| 209 | + </script><div id='ZN_9H0SsDLTgAxOu1M'><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div> | |
| 210 | + <!--END WEBSITE FEEDBACK SNIPPET--> | |
| 211 | + | |
| 212 | + <script type="text/javascript" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi"> | |
| 213 | + !function(e,t){ | |
| 214 | + (e=t.createElement("script")).src="https://cdn.convertbox.com/convertbox/js/embed.js", | |
| 215 | + e.id="app-convertbox-script", | |
| 216 | + e.async=true, | |
| 217 | + e.dataset.uuid="a2c68abb-6a6e-496a-a1ca-455b6413a4c4", | |
| 218 | + document.getElementsByTagName("head")[0].appendChild(e) | |
| 219 | + }(window,document); | |
| 220 | + </script> | |
| 221 | +</head> | |
| 222 | +<body class="logisco-unit alertTop-on "> | |
| 223 | + | |
| 224 | +<noscript> | |
| 225 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PR75X6VZ" height="0" width="0" | |
| 226 | + style="display:none; visibility:hidden"></iframe> | |
| 227 | + </noscript> | |
| 228 | + | |
| 229 | +<div id="app"> | |
| 230 | + | |
| 231 | + <header class="mainHeader not_searchable" data-gtm-creative-slot="entete"> | |
| 232 | + | |
| 233 | + <div id="alertTop--650b259e98957" class="alertTop alertTop--main js-promotion-viewed" data-gtm-creative-slot="alertTop" data-gtm-creative-name="AlertTop" data-gtm-promotion-name="Nouveau site web - Centre d'aide"> | |
| 234 | +<div class="alertTop-container"> | |
| 235 | + <p class="alertTop-content alertTop-text--desktop">Trouvez votre prochain appartement à Québec et Lévis où <i><strong>vous </strong></i>serez bien chez vous– <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 236 | + <p class="alertTop-content alertTop-text--mobile">Trouvez votre prochain appartement à Québec et Lévis – <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 237 | + </div> | |
| 238 | +<i class="alertTop-close js-alertTop-close icon-cms-close"></i> | |
| 239 | +</div> | |
| 240 | + | |
| 241 | +<div class="alertTop-placeholder"></div> | |
| 242 | + | |
| 243 | + <div class="mainHeader-bg"></div> | |
| 244 | + <nav class="mainHeader-nav"> | |
| 245 | + <div class="mainMenu"> | |
| 246 | + <sliding-panel class="topMenu" context="topMenu"> | |
| 247 | + <template #button> | |
| 248 | + <button class="topMenu-button" data-gtm-event="clicEntete-menuHamburger"> | |
| 249 | + <i class="topMenu-toggle icon-cms-burger" | |
| 250 | + aria-label="Ouvrir le menu secondaire"> | |
| 251 | + </i> | |
| 252 | + </button> | |
| 253 | + </template> | |
| 254 | + <template #close> | |
| 255 | + <button class="hamburger-close" type="button" aria-label="Fermer le menu secondaire"> | |
| 256 | + <i class="icon-cms-close"></i> | |
| 257 | + </button> | |
| 258 | + <img class="mobileMenu-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 259 | + </template> | |
| 260 | + <template #content> | |
| 261 | + <ul class="slidingPanel-utilsMenuList slidingPanel-level-0"> | |
| 262 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 263 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 264 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 265 | + data-gtm-event="clicMenu" | |
| 266 | + data-gtm-label="Appartements" | |
| 267 | + > | |
| 268 | + Appartements | |
| 269 | + </a> | |
| 270 | + </li> | |
| 271 | + | |
| 272 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 273 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 274 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 275 | + data-gtm-event="clicMenu" | |
| 276 | + data-gtm-label="Espaces commerciaux" | |
| 277 | + > | |
| 278 | + Espaces commerciaux | |
| 279 | + </a> | |
| 280 | + </li> | |
| 281 | + | |
| 282 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 283 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 284 | + href="https://logisco.com/fr/futurs-projets-immobiliers" | |
| 285 | + data-gtm-event="clicMenu" | |
| 286 | + data-gtm-label="Futurs projets immobiliers" | |
| 287 | + > | |
| 288 | + Futurs projets immobiliers | |
| 289 | + </a> | |
| 290 | + </li> | |
| 291 | + | |
| 292 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 293 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 294 | + href="https://logisco.com/fr/hotels" | |
| 295 | + data-gtm-event="clicMenu" | |
| 296 | + data-gtm-label="Hôtels" | |
| 297 | + > | |
| 298 | + Hôtels | |
| 299 | + </a> | |
| 300 | + </li> | |
| 301 | + | |
| 302 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 303 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 304 | + href="https://logisco.com/fr/emplois" | |
| 305 | + data-gtm-event="clicMenu" | |
| 306 | + data-gtm-label="Emplois" | |
| 307 | + > | |
| 308 | + Emplois | |
| 309 | + </a> | |
| 310 | + </li> | |
| 311 | + | |
| 312 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 313 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 314 | + href="https://logisco.com/fr/nouvel-arrivant" | |
| 315 | + data-gtm-event="clicMenu" | |
| 316 | + data-gtm-label="Nouvel arrivant" | |
| 317 | + > | |
| 318 | + Nouvel arrivant | |
| 319 | + </a> | |
| 320 | + </li> | |
| 321 | + | |
| 322 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 323 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 324 | + href="https://logisco.com/fr/a-propos" | |
| 325 | + data-gtm-event="clicMenu" | |
| 326 | + data-gtm-label="Qui est LOGISCO" | |
| 327 | + > | |
| 328 | + Qui est LOGISCO | |
| 329 | + </a> | |
| 330 | + </li> | |
| 331 | + | |
| 332 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 333 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 334 | + href="https://logisco.com/fr/blogue" | |
| 335 | + data-gtm-event="clicMenu" | |
| 336 | + data-gtm-label="Blogue" | |
| 337 | + > | |
| 338 | + Blogue | |
| 339 | + </a> | |
| 340 | + </li> | |
| 341 | + | |
| 342 | + </ul> | |
| 343 | + </template> | |
| 344 | + <template #footer> | |
| 345 | + <div class="slidingPanel-c2a"> | |
| 346 | + <a | |
| 347 | + data-gtm-event="clickButton" data-gtm-id="centre-daide" | |
| 348 | + | |
| 349 | + href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="c2a c2a-text c2a--tertiary" | |
| 350 | + aria-label="Centre d'aide" | |
| 351 | +> | |
| 352 | + <span class="c2a-name"> | |
| 353 | + Centre d’aide | |
| 354 | + </span> | |
| 355 | + <i class="icon-cms-arrow-right"></i> | |
| 356 | + </a> | |
| 357 | + | |
| 358 | + </div> | |
| 359 | + <div class="slidingPanel-c2a"> | |
| 360 | + <a | |
| 361 | + data-gtm-event="clickButton" data-gtm-id="nous-joindre" | |
| 362 | + | |
| 363 | + href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="c2a c2a-text c2a--tertiary" | |
| 364 | + aria-label="Nous joindre" | |
| 365 | +> | |
| 366 | + <span class="c2a-name"> | |
| 367 | + Nous joindre | |
| 368 | + </span> | |
| 369 | + <i class="icon-cms-arrow-right"></i> | |
| 370 | + </a> | |
| 371 | + | |
| 372 | + </div> | |
| 373 | + </template> | |
| 374 | + </sliding-panel> | |
| 375 | + <div class="mainHeader-brand"> | |
| 376 | + <a class="mainHeader-logoLink" href="https://logisco.com/fr"> | |
| 377 | + <img class="mainHeader-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 378 | +<img class="mainHeader-logo mainHeader-logo--white" src="https://logisco.com/theme/images/logo-white.svg" height="49" width="193" alt="Logisco"> </a> | |
| 379 | + </div> | |
| 380 | + <ul class="mainMenu-list"> | |
| 381 | + | |
| 382 | +<li class="mainMenu-item "> | |
| 383 | + <div class="mainMenu-element"> | |
| 384 | + <a class="mainMenu-elementLink" | |
| 385 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 386 | + data-gtm-event="clicMenu" | |
| 387 | + data-gtm-label="Appartements" | |
| 388 | + > | |
| 389 | + Appartements | |
| 390 | + </a> | |
| 391 | + </div> | |
| 392 | + </li> | |
| 393 | + | |
| 394 | + | |
| 395 | +<li class="mainMenu-item "> | |
| 396 | + <div class="mainMenu-element"> | |
| 397 | + <a class="mainMenu-elementLink" | |
| 398 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 399 | + data-gtm-event="clicMenu" | |
| 400 | + data-gtm-label="Espaces commerciaux" | |
| 401 | + > | |
| 402 | + Espaces commerciaux | |
| 403 | + </a> | |
| 404 | + </div> | |
| 405 | + </li> | |
| 406 | + | |
| 407 | + | |
| 408 | +<li class="mainMenu-item "> | |
| 409 | + <div class="mainMenu-element"> | |
| 410 | + <a class="mainMenu-elementLink" | |
| 411 | + href="https://logisco.com/fr/hotels" | |
| 412 | + data-gtm-event="clicMenu" | |
| 413 | + data-gtm-label="Hôtels" | |
| 414 | + > | |
| 415 | + Hôtels | |
| 416 | + </a> | |
| 417 | + </div> | |
| 418 | + </li> | |
| 419 | + | |
| 420 | + | |
| 421 | +<li class="mainMenu-item "> | |
| 422 | + <div class="mainMenu-element"> | |
| 423 | + <a class="mainMenu-elementLink" | |
| 424 | + href="https://logisco.com/fr/centre-daide" | |
| 425 | + data-gtm-event="clicMenu" | |
| 426 | + data-gtm-label="Centre d'aide" | |
| 427 | + > | |
| 428 | + Centre d'aide | |
| 429 | + </a> | |
| 430 | + </div> | |
| 431 | + </li> | |
| 432 | + | |
| 433 | + </ul> | |
| 434 | + <div class="mainHeader-links"> | |
| 435 | + <ul class="mainHeader-linksList"> | |
| 436 | + <li class="mainHeader-listItem"> | |
| 437 | + <a id="mainHeader-contact" | |
| 438 | + href="https://logisco.com/fr/nous-joindre" | |
| 439 | + class="icon-logisco-phone" | |
| 440 | + type="button" | |
| 441 | + aria-label="vanilla::header.phone" | |
| 442 | + data-gtm-event="clicEntete-appelLogisco" | |
| 443 | + data-contact-cp="https://logisco.com/fr/nous-joindre" | |
| 444 | + ></a> | |
| 445 | + </li> | |
| 446 | + <li class="mainHeader-listItem"> | |
| 447 | + <wishlist-redirect-icon | |
| 448 | + :href-url="'https://logisco.com/fr/favoris'" | |
| 449 | + :default-count="0" | |
| 450 | + label="Vers page 'Favoris'" | |
| 451 | + > | |
| 452 | + </wishlist-redirect-icon> | |
| 453 | + </li> | |
| 454 | + <li class="mainHeader-listItem"> | |
| 455 | + <reservation-panel | |
| 456 | + :default-count="0" | |
| 457 | + label="Vers le 'Planificateur de visites'" | |
| 458 | + > | |
| 459 | + </reservation-panel> | |
| 460 | + </li> | |
| 461 | + </ul> | |
| 462 | +</div> | |
| 463 | +</div> | |
| 464 | + </nav> | |
| 465 | + <div class="mainHeader-shadow"></div> | |
| 466 | +</header> | |
| 467 | + | |
| 468 | +<div class="alertTop-placeholder"></div> | |
| 469 | +<div class="mainHeader-placeholder"></div> | |
| 470 | + | |
| 471 | + <input id="currentId" type="hidden" value="9a74d31a-cc40-46dd-944b-c3042d0f8d45"> | |
| 472 | + <input id="ancestors" type="hidden" value="["99c9a187-9f29-4895-a92e-5d01818e748d","990a9815-0c2d-41ed-be1a-0aea582d0ccf","9a745908-d289-4e4f-bafe-2c512caafe6c","9a858aec-0fd9-4100-8874-88390ec79a12","9a745b49-b36a-40d1-950e-1f04dc99e7e8","9a74d31a-cc40-46dd-944b-c3042d0f8d45"]"> | |
| 473 | + <nav class="left-nav"> | |
| 474 | + </nav> | |
| 475 | + | |
| 476 | + <main id="main" class="vb js-vb" data-gtm-creative-slot="mainContent"> | |
| 477 | + <div class="unitHeader js-zoom"> | |
| 478 | + <div class="unitHeader-background"></div> | |
| 479 | + <div class="unitHeader-topContainer"> | |
| 480 | + <div class="unitHeader-text"> | |
| 481 | + <div class="breadcrumb-list"> | |
| 482 | + <a class="breadcrumb-item" href="https://logisco.com/fr">Accueil</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer">Appartements à louer</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec">Québec</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge">Sainte-Foy-Sillery-Cap-Rouge</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso">Le MUSO</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612">Appartement 612</a> </div> | |
| 483 | + <div class="unitHeader-imageWrapper--mobile"> | |
| 484 | + <i-frame-modal-button | |
| 485 | + iframe-link="https://my.matterport.com/show/?m=jdiui4Judys" | |
| 486 | + class-names="unitCard-imageTag" | |
| 487 | + modal-title="Appartement 612 • Le MUSO • Visite virtuelle" | |
| 488 | + aria-label="Bouton modal" | |
| 489 | + unit-or-project="Unit" | |
| 490 | + breakpoint="750"> | |
| 491 | + <span>Visite</span> | |
| 492 | + <i class="icon-logisco-3d"></i> | |
| 493 | + </i-frame-modal-button> | |
| 494 | + <div class="unitHeader-callToActions"> | |
| 495 | + <share-button | |
| 496 | + class="unitHeader-shareButton" | |
| 497 | + url="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612" | |
| 498 | + data-gtm-event="pageUnite-partager" | |
| 499 | + :classes="'c2a c2a-text c2a--secondary c2a-style--secondary'"> | |
| 500 | + <i class="icon-cms-social-share"></i> | |
| 501 | + <span class="c2a-name"> | |
| 502 | + Partager | |
| 503 | + </span> | |
| 504 | + </share-button> | |
| 505 | + <wishlist-toggle-icon :is-button="false" page-id="9a74d31a-cc40-46dd-944b-c3042d0f8d45" | |
| 506 | + :exist="false"/> | |
| 507 | + </div> | |
| 508 | + <div class="unitHeader-imageOverlay"></div> | |
| 509 | + <img class="js-zoomMobileImage" width="1200" height="1350" src="https://logisco.com/static/vb/5467-1200/plan-1718-084-2023-06-22-planlocation-214-314-412712-page-001.webp" | |
| 510 | + alt="Plan Appartement 612"> | |
| 511 | + </div> | |
| 512 | + <h1 class="unitHeader-label">Appartement 612 | |
| 513 | + <span class="unitHeader-labelDivider">•</span> | |
| 514 | + <span class="unitHeader-label--small">Le MUSO</span> | |
| 515 | + </h1> | |
| 516 | + <a class="unitHeader-link" href="https://www.google.com/maps?q=612-7076+Boulevard+Wilfrid-Hamel%2C+Qu%C3%A9bec%2C+Qu%C3%A9bec%2C+G2G+0M7" target="_blank" | |
| 517 | + data-gtm-event="pageUnite-lienAdresse"> | |
| 518 | + <h2 class="unitHeader-address">612-7076 Boulevard Wilfrid-Hamel, Québec, Québec, G2G 0M7</h2> | |
| 519 | + </a> | |
| 520 | + </div> | |
| 521 | + </div> | |
| 522 | + <div class="unitHeader-bottomContainer"> | |
| 523 | + <div class="unitHeader-bottomLeft"> | |
| 524 | + <div class="unitHeader-callToActions"> | |
| 525 | + <share-button | |
| 526 | + class="unitHeader-shareButton" | |
| 527 | + url="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612" | |
| 528 | + data-gtm-event="pageUnite-partager" | |
| 529 | + :classes="'c2a c2a-text c2a--secondary c2a-style--secondary'" | |
| 530 | + data-gtm-page-type="Unité" data-gtm-page-name="Appartement 612" data-gtm-project-id="1718" data-gtm-unit-id="11443" data-gtm-unit-type="APARTMENT" data-gtm-available="1" data-gtm-tag="Chiens acceptés" data-gtm-is-in-wishlist="" data-gtm-is-in-reservation="" data-gtm-unit-price="206.7" data-gtm-nom-liste="unites_du_projet_le_muso"> | |
| 531 | + <i class="icon-cms-social-share"></i> | |
| 532 | + <span class="c2a-name"> | |
| 533 | + Partager | |
| 534 | + </span> | |
| 535 | + </share-button> | |
| 536 | + <wishlist-toggle-icon :is-button="false" page-id="9a74d31a-cc40-46dd-944b-c3042d0f8d45" | |
| 537 | + :exist="false"/> | |
| 538 | + </div> | |
| 539 | + <div class="unitHeader-imageWrapper js-zoomMagnifierContainer"> | |
| 540 | + <i-frame-modal-button | |
| 541 | + iframe-link="https://my.matterport.com/show/?m=jdiui4Judys" | |
| 542 | + class-names="unitCard-imageTag" | |
| 543 | + modal-title="Appartement 612 • Le MUSO • Visite virtuelle" | |
| 544 | + aria-label="Bouton modal" | |
| 545 | + unit-or-project="Unit" | |
| 546 | + breakpoint="750"> | |
| 547 | + <span>Visite</span> | |
| 548 | + <i class="icon-logisco-3d"></i> | |
| 549 | + </i-frame-modal-button> | |
| 550 | + <div class="unitHeader-imageOverlay"></div> | |
| 551 | + <img class="js-zoomImage" width="1200" height="1350" src="https://logisco.com/static/vb/5467-1200/plan-1718-084-2023-06-22-planlocation-214-314-412712-page-001.webp" | |
| 552 | + alt="Plan Appartement 612"> | |
| 553 | + </div> | |
| 554 | + | |
| 555 | + | |
| 556 | + <div class="projectServices"> | |
| 557 | + <div class="projectServices-container"> | |
| 558 | + <h2 class="projectServices-title"> | |
| 559 | + Inclusions | |
| 560 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 561 | + <span class="tooltip-container js-tooltipContainer"> | |
| 562 | + <span class="tooltip-subtitle">Il s’agit des inclusions comprises dans le prix mensuel de votre logement.</span> | |
| 563 | + </span> | |
| 564 | + </h2> | |
| 565 | + <ul class="projectServices-list"> | |
| 566 | + <li class="projectServices-itemContainer"> | |
| 567 | + <h3 class="projectServices-listItem"> | |
| 568 | + <i class="projectServices-icon icon-logisco-service--indoor_parking"></i> | |
| 569 | + Un stationnement intérieur | |
| 570 | + </h3> | |
| 571 | + </li> | |
| 572 | + <li class="projectServices-itemContainer"> | |
| 573 | + <h3 class="projectServices-listItem"> | |
| 574 | + <i class="projectServices-icon icon-logisco-service--ac"></i> | |
| 575 | + Climatisation | |
| 576 | + </h3> | |
| 577 | + </li> | |
| 578 | + <li class="projectServices-itemContainer"> | |
| 579 | + <h3 class="projectServices-listItem"> | |
| 580 | + <i class="projectServices-icon icon-logisco-service--wifi"></i> | |
| 581 | + Wi-Fi haute vitesse | |
| 582 | + </h3> | |
| 583 | + </li> | |
| 584 | + </ul> | |
| 585 | + </div> | |
| 586 | + </div> | |
| 587 | + | |
| 588 | + | |
| 589 | + <div class="projectServices"> | |
| 590 | + <div class="projectServices-container"> | |
| 591 | + <h2 class="projectServices-title"> | |
| 592 | + Particularités | |
| 593 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 594 | + <span class="tooltip-container js-tooltipContainer"> | |
| 595 | + <span class="tooltip-subtitle">Il s’agit d’éléments distinctifs propres à cet appartement.</span> | |
| 596 | + </span> | |
| 597 | + </h2> | |
| 598 | + <ul class="projectServices-list"> | |
| 599 | + <li class="projectServices-itemContainer"> | |
| 600 | + <h3 class="projectServices-listItem"> | |
| 601 | + <i class="projectServices-icon icon-logisco-service--entrance_washer_dryer"></i> | |
| 602 | + Entrée laveuse et sécheuse | |
| 603 | + </h3> | |
| 604 | + </li> | |
| 605 | + <li class="projectServices-itemContainer"> | |
| 606 | + <h3 class="projectServices-listItem"> | |
| 607 | + <i class="projectServices-icon icon-logisco-service--dog_accepted"></i> | |
| 608 | + Chien accepté | |
| 609 | + </h3> | |
| 610 | + </li> | |
| 611 | + <li class="projectServices-itemContainer"> | |
| 612 | + <h3 class="projectServices-listItem"> | |
| 613 | + <i class="projectServices-icon icon-logisco-service--dishwasher_connection"></i> | |
| 614 | + Entrée lave-vaisselle | |
| 615 | + </h3> | |
| 616 | + </li> | |
| 617 | + <li class="projectServices-itemContainer"> | |
| 618 | + <h3 class="projectServices-listItem"> | |
| 619 | + <i class="projectServices-icon icon-logisco-service--visible_concrete_columns"></i> | |
| 620 | + Colonnes en béton apparent | |
| 621 | + </h3> | |
| 622 | + </li> | |
| 623 | + <li class="projectServices-itemContainer"> | |
| 624 | + <h3 class="projectServices-listItem"> | |
| 625 | + <i class="projectServices-icon icon-logisco-service--fridge_waterline"></i> | |
| 626 | + Sortie d'eau pour réfrigérateur | |
| 627 | + </h3> | |
| 628 | + </li> | |
| 629 | + </ul> | |
| 630 | + </div> | |
| 631 | + </div> | |
| 632 | + | |
| 633 | + | |
| 634 | + <div class="projectServices"> | |
| 635 | + <div class="projectServices-container"> | |
| 636 | + <h2 class="projectServices-title"> | |
| 637 | + Services offerts | |
| 638 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 639 | + <span class="tooltip-container js-tooltipContainer"> | |
| 640 | + <span class="tooltip-subtitle">Il s'agit des services offerts aux locataires de ce projet immobilier. Notez que les services peuvent varier d'un immeuble à l'autre.</span> | |
| 641 | + </span> | |
| 642 | + </h2> | |
| 643 | + <ul class="projectServices-list"> | |
| 644 | + <li class="projectServices-itemContainer"> | |
| 645 | + <h3 class="projectServices-listItem"> | |
| 646 | + <i class="projectServices-icon icon-logisco-service--elevator"></i> | |
| 647 | + Ascenseur | |
| 648 | + </h3> | |
| 649 | + </li> | |
| 650 | + <li class="projectServices-itemContainer"> | |
| 651 | + <h3 class="projectServices-listItem"> | |
| 652 | + <i class="projectServices-icon icon-logisco-service--security_cam"></i> | |
| 653 | + Caméra de surveillance | |
| 654 | + </h3> | |
| 655 | + </li> | |
| 656 | + <li class="projectServices-itemContainer"> | |
| 657 | + <h3 class="projectServices-listItem"> | |
| 658 | + <i class="projectServices-icon icon-logisco-service--intercom"></i> | |
| 659 | + Interphone | |
| 660 | + </h3> | |
| 661 | + </li> | |
| 662 | + <li class="projectServices-itemContainer"> | |
| 663 | + <h3 class="projectServices-listItem"> | |
| 664 | + <i class="projectServices-icon icon-logisco-service--outdoor_parking"></i> | |
| 665 | + Stationnement extérieur | |
| 666 | + </h3> | |
| 667 | + </li> | |
| 668 | + <li class="projectServices-itemContainer"> | |
| 669 | + <h3 class="projectServices-listItem"> | |
| 670 | + <i class="projectServices-icon icon-logisco-service--additional_storage"></i> | |
| 671 | + Rangement supplémentaire ($) | |
| 672 | + </h3> | |
| 673 | + </li> | |
| 674 | + <li class="projectServices-itemContainer"> | |
| 675 | + <h3 class="projectServices-listItem"> | |
| 676 | + <i class="projectServices-icon icon-logisco-service--indoor_parking"></i> | |
| 677 | + Stationnement intérieur ($) | |
| 678 | + </h3> | |
| 679 | + </li> | |
| 680 | + <li class="projectServices-itemContainer"> | |
| 681 | + <h3 class="projectServices-listItem"> | |
| 682 | + <i class="projectServices-icon icon-logisco-service--garbage_chute"></i> | |
| 683 | + Chute à déchets | |
| 684 | + </h3> | |
| 685 | + </li> | |
| 686 | + <li class="projectServices-itemContainer"> | |
| 687 | + <h3 class="projectServices-listItem"> | |
| 688 | + <i class="projectServices-icon icon-logisco-service--charging_station"></i> | |
| 689 | + Borne de recharge électrique ($) | |
| 690 | + </h3> | |
| 691 | + </li> | |
| 692 | + <li class="projectServices-itemContainer"> | |
| 693 | + <h3 class="projectServices-listItem"> | |
| 694 | + <i class="projectServices-icon icon-logisco-service--secure_post_office_locker"></i> | |
| 695 | + Espace sécurisé pour colis | |
| 696 | + </h3> | |
| 697 | + </li> | |
| 698 | + <li class="projectServices-itemContainer"> | |
| 699 | + <h3 class="projectServices-listItem"> | |
| 700 | + <i class="projectServices-icon icon-logisco-service--moto_parking"></i> | |
| 701 | + Stationnement pour motos ($) | |
| 702 | + </h3> | |
| 703 | + </li> | |
| 704 | + <li class="projectServices-itemContainer"> | |
| 705 | + <h3 class="projectServices-listItem"> | |
| 706 | + <i class="projectServices-icon icon-logisco-service--secure_bike_rack"></i> | |
| 707 | + Rangement sécurisé pour vélos ($) | |
| 708 | + </h3> | |
| 709 | + </li> | |
| 710 | + <li class="projectServices-itemContainer"> | |
| 711 | + <h3 class="projectServices-listItem"> | |
| 712 | + <i class="projectServices-icon icon-logisco-service--recycling_chute"></i> | |
| 713 | + Chute à recyclage | |
| 714 | + </h3> | |
| 715 | + </li> | |
| 716 | + <li class="projectServices-itemContainer"> | |
| 717 | + <h3 class="projectServices-listItem"> | |
| 718 | + <i class="projectServices-icon icon-logisco-service--car_wash"></i> | |
| 719 | + Lave-auto | |
| 720 | + </h3> | |
| 721 | + </li> | |
| 722 | + <li class="projectServices-itemContainer"> | |
| 723 | + <h3 class="projectServices-listItem"> | |
| 724 | + <i class="projectServices-icon icon-logisco-service--secure_entrance"></i> | |
| 725 | + Entrée sécurisée | |
| 726 | + </h3> | |
| 727 | + </li> | |
| 728 | + <li class="projectServices-itemContainer"> | |
| 729 | + <h3 class="projectServices-listItem"> | |
| 730 | + <i class="projectServices-icon icon-logisco-service--relief_area"></i> | |
| 731 | + Zone de soulagement | |
| 732 | + </h3> | |
| 733 | + </li> | |
| 734 | + <li class="projectServices-itemContainer"> | |
| 735 | + <h3 class="projectServices-listItem"> | |
| 736 | + <i class="projectServices-icon icon-logisco-service--grooming_area"></i> | |
| 737 | + Espace de toilettage | |
| 738 | + </h3> | |
| 739 | + </li> | |
| 740 | + <li class="projectServices-itemContainer"> | |
| 741 | + <h3 class="projectServices-listItem"> | |
| 742 | + <i class="projectServices-icon icon-logisco-service--guest_parking"></i> | |
| 743 | + Stationnement visiteur | |
| 744 | + </h3> | |
| 745 | + </li> | |
| 746 | + </ul> | |
| 747 | + </div> | |
| 748 | + </div> | |
| 749 | + | |
| 750 | + | |
| 751 | + <div class="projectServices"> | |
| 752 | + <div class="projectServices-container"> | |
| 753 | + <h2 class="projectServices-title"> | |
| 754 | + Espaces communs | |
| 755 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 756 | + <span class="tooltip-container js-tooltipContainer"> | |
| 757 | + <span class="tooltip-subtitle">Il s'agit des espaces communs accessibles à tous les locataires d'un projet immobilier, peu importe dans quel immeuble ils se trouvent.</span> | |
| 758 | + </span> | |
| 759 | + </h2> | |
| 760 | + <ul class="projectServices-list"> | |
| 761 | + <li class="projectServices-itemContainer"> | |
| 762 | + <h3 class="projectServices-listItem"> | |
| 763 | + <i class="projectServices-icon icon-logisco-service--living_room"></i> | |
| 764 | + Espace lounge | |
| 765 | + </h3> | |
| 766 | + </li> | |
| 767 | + <li class="projectServices-itemContainer"> | |
| 768 | + <h3 class="projectServices-listItem"> | |
| 769 | + <i class="projectServices-icon icon-logisco-service--gym"></i> | |
| 770 | + Salle d’entraînement | |
| 771 | + </h3> | |
| 772 | + </li> | |
| 773 | + <li class="projectServices-itemContainer"> | |
| 774 | + <h3 class="projectServices-listItem"> | |
| 775 | + <i class="projectServices-icon icon-logisco-service--dog_park"></i> | |
| 776 | + Parc canin | |
| 777 | + </h3> | |
| 778 | + </li> | |
| 779 | + <li class="projectServices-itemContainer"> | |
| 780 | + <h3 class="projectServices-listItem"> | |
| 781 | + <i class="projectServices-icon icon-logisco-service--coworking_space"></i> | |
| 782 | + Espace de cotravail | |
| 783 | + </h3> | |
| 784 | + </li> | |
| 785 | + </ul> | |
| 786 | + </div> | |
| 787 | + </div> | |
| 788 | + </div> | |
| 789 | + <div class="unitHeader-bottomRight"> | |
| 790 | + <div class="unitHeader-unitInfos js-zoomDisplayContainer"> | |
| 791 | + <h3 class="unitHeader-price"> | |
| 792 | + <span class="unitHeader-priceNumber">2067 $</span> | |
| 793 | + <span class="unitHeader-priceText">/ mois</span> | |
| 794 | + </h3> | |
| 795 | + <div class="unitHeader-infosContainer"> | |
| 796 | + <div class="unitHeader-info"> | |
| 797 | + <h3 class="unitHeader-infoLabel">Nombre de pièces</h3> | |
| 798 | + <span class="unitHeader-infoValue">4 1/2</span> | |
| 799 | + </div> | |
| 800 | + <div class="unitHeader-info"> | |
| 801 | + <h3 class="unitHeader-infoLabel">Superficie totale</h3> | |
| 802 | + <span class="unitHeader-infoValue">958 pi²</span> | |
| 803 | + </div> | |
| 804 | + <div class="unitHeader-info"> | |
| 805 | + <h3 class="unitHeader-infoLabel">Étage</h3> | |
| 806 | + <span class="unitHeader-infoValue">6</span> | |
| 807 | + </div> | |
| 808 | + | |
| 809 | + <div class="unitHeader-info"> | |
| 810 | + <h3 class="unitHeader-infoLabel">Disponibilité</h3> | |
| 811 | + <span class="unitHeader-infoValue">Maintenant</span> | |
| 812 | + </div> | |
| 813 | + </div> | |
| 814 | + <div class="unitHeader-infosLink"> | |
| 815 | + <div class="unitHeader-infosGroup"> | |
| 816 | + <add-reservation-button :unit-page-id="'9a74d31a-cc40-46dd-944b-c3042d0f8d45'"> | |
| 817 | + <template #text> | |
| 818 | + Planifier une visite | |
| 819 | + </template> | |
| 820 | + </add-reservation-button> | |
| 821 | + <modal-button class-names="c2a c2a-text c2a--secondary" aria-label="Joindre l’agent de location " | |
| 822 | + modal-id="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83" | |
| 823 | + data-gtm-event="pageUnite-clicJoindreAgentLocation"> | |
| 824 | + <span class="c2a-name"> | |
| 825 | + Joindre l’agent de location | |
| 826 | + </span> | |
| 827 | + </modal-button> | |
| 828 | + </div> | |
| 829 | + <a class="c2a c2a-text c2a--tertiary c2a-download" | |
| 830 | + href="https://pdf.logisco.com/pdf-modele.ashx?id=1718&Unite=612&IDImmeuble=369&IDUnite=11443" | |
| 831 | + data-gtm-event="pageUnite-telechargerFiche"> | |
| 832 | + <span class="c2a-name"> | |
| 833 | + Télécharger la fiche | |
| 834 | + </span> | |
| 835 | + <i class="icon-logisco-download"></i> | |
| 836 | + </a> | |
| 837 | + </div> | |
| 838 | + </div> | |
| 839 | + </div> | |
| 840 | + </div> | |
| 841 | +</div> | |
| 842 | + | |
| 843 | +<div class="unitSection"> | |
| 844 | + <div class="blockText blockText-style--medium"> | |
| 845 | + <p class="blockText-surtitle">Découvrez le secteur</p> | |
| 846 | + <h2 class="blockText-title">Explorez les services et attraits à proximité de Le MUSO</h2> | |
| 847 | + </div> | |
| 848 | + | |
| 849 | + <div | |
| 850 | + id="local-content-widget" | |
| 851 | + style="height: 700px;" | |
| 852 | + data-local-logic-lat="46.786866" | |
| 853 | + data-local-logic-lng="-71.35901" | |
| 854 | + data-local-logic-transport="false" | |
| 855 | + data-local-logic-transport-pedestrian-friendly="false" | |
| 856 | + data-local-logic-transport-cycling-friendly="false" | |
| 857 | + data-local-logic-transport-transit-friendly="false" | |
| 858 | + data-local-logic-transport-car-friendly="false" | |
| 859 | + data-local-logic-education="false" | |
| 860 | + data-local-logic-education-daycares="false" | |
| 861 | + data-local-logic-education-primary-schools="false" | |
| 862 | + data-local-logic-education-high-schools="false" | |
| 863 | + data-local-logic-amenities="false" | |
| 864 | + data-local-logic-amenities-shopping="false" | |
| 865 | + data-local-logic-amenities-groceries="false" | |
| 866 | + data-local-logic-amenities-restaurants="false" | |
| 867 | + data-local-logic-amenities-cafes="false" | |
| 868 | + data-local-logic-character="false" | |
| 869 | + data-local-logic-character-nightlife="false" | |
| 870 | + data-local-logic-character-vibrant="false" | |
| 871 | + data-local-logic-character-historic="false" | |
| 872 | + data-local-logic-character-quiet="false" | |
| 873 | + data-local-logic-nature="false" | |
| 874 | + data-local-logic-nature-parks="false" | |
| 875 | + data-local-logic-nature-greenery="false" | |
| 876 | + data-local-logic-wellness="false" | |
| 877 | + data-local-logic-health="false" | |
| 878 | + ></div> | |
| 879 | +</div> | |
| 880 | + | |
| 881 | +<div class="unitSection"> | |
| 882 | + <section id="plans" class="project-plans"> | |
| 883 | + <plan-view | |
| 884 | + project-type="RESIDENTIAL" | |
| 885 | + :project="[{"Available":true,"SourceId":369,"Code":"084","Address":{"NumberStreet":"7076 Boulevard Wilfrid-Hamel","City":"Qu\u00e9bec","Province":"Qu\u00e9bec","PostalCode":"G2G 0M7","Neighborhood":"Sainte-Foy-Sillery-Cap-Rouge"},"file_id":"3663","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"110":{"page_id":"9a74d27e-1bd8-43e8-8bce-7dd119761657","available":false,"unit_number":"110","shape":"rect","coords":"832,228,982,344"},"109":{"page_id":"9a74d27b-c6f5-4f73-9879-1307be9576f4","available":false,"unit_number":"109","shape":"rect","coords":"832,346,984,422"},"108":{"page_id":"9a74d279-8477-4ba8-8666-16ca10aa3909","available":false,"unit_number":"108","shape":"rect","coords":"832,424,982,498"},"107":{"page_id":"9a74d277-214c-48b2-8e13-fb43090e8725","available":true,"unit_number":"107","shape":"rect","coords":"832,502,984,620"},"106":{"page_id":"9a74d274-a60e-4532-8481-acea9f6d29ec","available":false,"unit_number":"106","shape":"rect","coords":"832,622,984,786"},"105":{"page_id":"9a74d272-6dcb-40e3-a471-53b5df1aa45d","available":true,"unit_number":"105","shape":"rect","coords":"690,652,828,784"},"104":{"page_id":"9a74d270-0e06-4ba3-bfa0-8a61d1033cd8","available":false,"unit_number":"104","shape":"rect","coords":"568,652,686,782"},"103":{"page_id":"9a74d26d-af9f-433d-84ca-223d7a8690ad","available":false,"unit_number":"103","shape":"rect","coords":"430,652,566,784"},"102":{"page_id":"9a74d26b-9a2c-417c-b155-6f895ceb5595","available":false,"unit_number":"102","shape":"rect","coords":"488,490,584,624"},"101":{"page_id":"9a74d269-4d9d-4f30-b4c1-44ba2363dcdf","available":false,"unit_number":"101","shape":"poly","coords":"584,488,686,488,686,564,678,562,678,588,638,588,640,622,584,624,584,616"},"111":{"page_id":"9a74d280-5960-4506-968e-99aa98fdd0f1","available":true,"unit_number":"111","shape":"poly","coords":"984,70,984,224,806,226,806,148,838,148,840,72"},"112":{"page_id":"9a74d282-b70d-4f0d-b7ee-96424888610c","available":false,"unit_number":"112","shape":"poly","coords":"692,70,834,64,836,146,804,146,804,226,690,224"},"113":{"page_id":"9a74d285-2932-4251-9f43-c6f516ff48fe","available":false,"unit_number":"113","shape":"poly","coords":"508,70,660,70,660,134,612,134,612,212,598,212,598,228,508,228,508,228"},"114":{"page_id":"9a74d287-68d7-461e-9bf8-2f75a265ab10","available":true,"unit_number":"114","shape":"poly","coords":"376,70,504,72,506,230,536,230,536,262,376,260,376,118"},"115":{"page_id":"9a74d289-a1e5-4053-a7ee-28357f0c18b3","available":false,"unit_number":"115","shape":"rect","coords":"690,262,804,494"}},"file_id":"5107","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5107-800/plan-1718-084-planlocation-niv1png.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"212":{"page_id":"9a74d2a5-292a-4ddc-aaa9-796a224d51ce","available":false,"unit_number":"212","shape":"rect","coords":"832,228,982,344"},"211":{"page_id":"9a74d2a3-1eae-4434-97dd-5651b4becc71","available":true,"unit_number":"211","shape":"rect","coords":"832,346,984,422"},"210":{"page_id":"9a74d2a0-bc35-4e83-a100-9b084ac1894c","available":false,"unit_number":"210","shape":"rect","coords":"832,424,982,498"},"209":{"page_id":"9a74d29e-48ad-46da-b7f3-761b61311d67","available":false,"unit_number":"209","shape":"rect","coords":"832,502,984,620"},"208":{"page_id":"9a74d29b-d4d9-4007-a5af-153345155692","available":false,"unit_number":"208","shape":"rect","coords":"832,622,984,786"},"207":{"page_id":"9a74d299-6a97-4081-9bda-e73c1e8d0f04","available":false,"unit_number":"207","shape":"rect","coords":"690,652,828,784"},"206":{"page_id":"9a74d297-2a12-4ad2-9588-b534a9d3c8cb","available":false,"unit_number":"206","shape":"rect","coords":"568,652,686,782"},"205":{"page_id":"9a74d294-ef1b-4c5a-b6d5-c9b3d451ebaf","available":false,"unit_number":"205","shape":"rect","coords":"430,652,566,784"},"202":{"page_id":"9a74d28e-5209-4517-83be-a631d5a5fb1e","available":false,"unit_number":"202","shape":"rect","coords":"488,490,584,624"},"201":{"page_id":"9a74d28b-e91e-48b6-8f76-dc416b40e78c","available":true,"unit_number":"201","shape":"poly","coords":"586,490,682,490,684,564,678,564,678,592,640,592,640,624,586,624"},"213":{"page_id":"9a74d2a7-866a-4799-ab3e-002c91e81772","available":false,"unit_number":"213","shape":"poly","coords":"984,70,984,224,806,226,806,148,838,148,840,72"},"215":{"page_id":"9a74d2ad-e4c8-4456-9841-cd8162fffa12","available":true,"unit_number":"215","shape":"poly","coords":"508,70,660,70,660,134,612,134,612,212,598,212,598,228,508,228,508,228"},"216":{"page_id":"9a74d2b0-4a60-4bf9-abc6-3786b09a1bb3","available":false,"unit_number":"216","shape":"poly","coords":"376,70,504,72,506,230,536,230,536,262,376,260,376,118"},"217":{"page_id":"9a74d2b2-f556-4f18-99ff-e2d3b6aa53a1","available":false,"unit_number":"217","shape":"rect","coords":"690,262,804,494"},"203":{"page_id":"9a74d290-5e9e-4c6a-9c8b-81d194760ec9","available":false,"unit_number":"203","shape":"rect","coords":"244,490,444,626"},"204":{"page_id":"9a74d292-b38d-46b0-b032-7113f00f7bb8","available":true,"unit_number":"204","shape":"poly","coords":"244,628,398,628,398,652,428,654,428,786,244,786"},"214":{"page_id":"9a74d2a9-e57f-48ee-9dde-ae3b60cd2874","available":false,"unit_number":"214","shape":"poly","coords":"658,68,834,62,834,146,806,146,806,226,658,226"}},"file_id":"5108","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5108-800/plan-1718-084-planlocation-niv2png.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"302":{"page_id":"9a74d2b6-444b-4b39-aef3-823ec9c1ba80","available":false,"unit_number":"302","shape":"rect","coords":"490,488,580,622"},"303":{"page_id":"9a74d2b7-b4ce-4d43-b19b-a90bdb03296c","available":true,"unit_number":"303","shape":"rect","coords":"242,490,442,624"},"304":{"page_id":"9a74d2b9-34e1-461b-bfd3-54320a321cb1","available":false,"unit_number":"304","shape":"poly","coords":"244,626,398,626,398,652,428,652,426,786,244,786"},"305":{"page_id":"9a74d2ba-af35-4af2-a26b-f71d70f546a9","available":false,"unit_number":"305","shape":"rect","coords":"430,650,566,786"},"306":{"page_id":"9a74d2bc-4138-4c98-9db4-fd7de9ef897c","available":false,"unit_number":"306","shape":"rect","coords":"568,652,688,786"},"307":{"page_id":"9a74d2bd-b678-4ff3-aa11-113f5c70bc50","available":false,"unit_number":"307","shape":"rect","coords":"688,652,830,788"},"308":{"page_id":"9a74d2bf-71af-4f2d-b58a-1fa96e070a4f","available":false,"unit_number":"308","shape":"rect","coords":"834,622,986,786"},"309":{"page_id":"9a74d2c0-be23-4141-a09a-faebde8b8e9a","available":false,"unit_number":"309","shape":"rect","coords":"834,500,986,620"},"310":{"page_id":"9a74d2c2-26f1-4902-8711-2889690b60d1","available":false,"unit_number":"310","shape":"rect","coords":"834,424,986,498"},"311":{"page_id":"9a74d2c3-6917-4470-a288-36ed0df81445","available":false,"unit_number":"311","shape":"rect","coords":"832,346,984,422"},"312":{"page_id":"9a74d2c4-fd14-4252-9041-54116dfd5e79","available":false,"unit_number":"312","shape":"rect","coords":"832,228,984,344"},"313":{"page_id":"9a74d2c6-7d1e-44f9-a866-5171cd47dc2b","available":false,"unit_number":"313","shape":"poly","coords":"838,68,980,64,982,228,808,226,810,150,838,150"},"314":{"page_id":"9a74d2c7-f0b6-47d2-9c09-11c6700fd1ef","available":false,"unit_number":"314","shape":"poly","coords":"658,68,832,66,832,146,806,146,806,230,658,228"},"315":{"page_id":"9a74d2c9-5435-4923-9ce8-937e39817b17","available":false,"unit_number":"315","shape":"poly","coords":"508,70,658,70,658,134,614,134,614,228,510,228"},"316":{"page_id":"9a74d2ca-e300-46de-a776-487ecfc476df","available":false,"unit_number":"316","shape":"poly","coords":"374,68,506,70,506,232,536,232,536,264,376,264"},"317":{"page_id":"9a74d2cc-581b-4438-ad1c-0be7ec82d059","available":false,"unit_number":"317","shape":"rect","coords":"690,260,804,492"},"301":{"page_id":"9a74d2b4-e3a6-43ac-a22c-e415e779b678","available":false,"unit_number":"301","shape":"poly","coords":"584,490,682,484,682,564,678,564,678,592,638,592,638,624,584,624"}},"file_id":"5109","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5109-800/plan-1718-084-planlocation-niv3png.webp"},"4":{"level_name":"\u00c9tage #4","level":4,"units":{"402":{"page_id":"9a74d2d1-ffbd-4860-b8a2-6586a46ae160","available":true,"unit_number":"402","shape":"rect","coords":"242,488,442,622"},"403":{"page_id":"9a74d2d3-7f0c-4bf3-ade2-cf5d1295aca8","available":false,"unit_number":"403","shape":"poly","coords":"244,626,398,626,398,652,428,652,426,786,244,786"},"404":{"page_id":"9a74d2d5-150b-4aae-9bf1-1ed6352ba162","available":false,"unit_number":"404","shape":"rect","coords":"430,650,566,786"},"405":{"page_id":"9a74d2d6-d621-4e07-a188-6ad67ba673a5","available":false,"unit_number":"405","shape":"rect","coords":"566,650,686,784"},"406":{"page_id":"9a74d2d9-4ff9-42ff-9855-370e95729ecf","available":false,"unit_number":"406","shape":"rect","coords":"688,650,830,784"},"407":{"page_id":"9a74d2db-503e-4406-bf17-641be1eba63c","available":false,"unit_number":"407","shape":"rect","coords":"832,620,982,784"},"408":{"page_id":"9a74d2dc-ba22-4458-b2e5-fbd0792da379","available":false,"unit_number":"408","shape":"rect","coords":"832,498,982,618"},"410":{"page_id":"9a74d2e2-a274-4018-8fdc-b30a1adb16bd","available":false,"unit_number":"410","shape":"rect","coords":"832,228,984,342"},"411":{"page_id":"9a74d2e4-94bf-4695-bd23-03ecccae0259","available":false,"unit_number":"411","shape":"poly","coords":"838,68,980,64,982,228,808,226,810,150,838,150"},"412":{"page_id":"9a74d2e6-1f8e-4462-9faf-542a2e2bd2d4","available":false,"unit_number":"412","shape":"poly","coords":"658,68,832,66,832,146,806,146,806,230,658,228"},"413":{"page_id":"9a74d2e7-b95e-447b-9918-66f7cd9e6663","available":false,"unit_number":"413","shape":"poly","coords":"508,70,658,70,658,134,614,134,614,228,510,228"},"414":{"page_id":"9a74d2e9-1d9c-4f1e-a3ed-782a2cf5cc17","available":false,"unit_number":"414","shape":"poly","coords":"374,68,506,70,506,232,536,232,536,264,376,264"},"415":{"page_id":"9a74d2eb-0f62-4371-bbd6-7b2ad4af277c","available":false,"unit_number":"415","shape":"rect","coords":"690,260,804,492"},"401":{"page_id":"9a74d2cf-e218-4487-b55b-f08e831ef866","available":false,"unit_number":"401","shape":"poly","coords":"490,490,678,484,682,562,678,562,676,592,638,590,638,624,490,622"},"409":{"page_id":"9a74d2de-7532-4142-ab65-87eb5137e5e6","available":true,"unit_number":"409","shape":"rect","coords":"832,346,984,498"}},"file_id":"5110","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5110-800/plan-1718-084-planlocation-niv4png.webp"},"5":{"level_name":"\u00c9tage #5","level":5,"units":{"502":{"page_id":"9a74d2ee-c2a2-4aa2-96d1-e7f937b6b682","available":false,"unit_number":"502","shape":"rect","coords":"242,488,442,622"},"503":{"page_id":"9a74d2f0-635d-473a-956e-80ea4fc2dab5","available":false,"unit_number":"503","shape":"poly","coords":"244,626,398,626,398,652,428,652,426,786,244,786"},"504":{"page_id":"9a74d2f1-db47-4e40-88ae-22ede3445323","available":false,"unit_number":"504","shape":"rect","coords":"430,650,566,786"},"505":{"page_id":"9a74d2f3-6ad1-4fb8-9f39-026484c68561","available":false,"unit_number":"505","shape":"rect","coords":"566,650,686,784"},"506":{"page_id":"9a74d2f5-10cc-4bf2-9e86-e426b4e9f48d","available":false,"unit_number":"506","shape":"rect","coords":"688,650,830,784"},"507":{"page_id":"9a74d2f6-c807-4b9b-8482-9d9c0318c6da","available":false,"unit_number":"507","shape":"rect","coords":"832,620,982,784"},"508":{"page_id":"9a74d2f8-920f-4be3-92de-d70e3cc66d06","available":false,"unit_number":"508","shape":"rect","coords":"832,498,982,618"},"510":{"page_id":"9a74d2fb-b32b-40e3-8927-033bd9074d2e","available":false,"unit_number":"510","shape":"rect","coords":"832,228,984,342"},"511":{"page_id":"9a74d2fd-7010-4f9f-8087-3dd9d462aafb","available":false,"unit_number":"511","shape":"poly","coords":"838,68,980,64,982,228,808,226,810,150,838,150"},"512":{"page_id":"9a74d2fe-c40f-4993-a4be-03f11c864c72","available":true,"unit_number":"512","shape":"poly","coords":"658,68,832,66,832,146,806,146,806,230,658,228"},"513":{"page_id":"9a74d300-73cc-452f-8a46-048da18048fc","available":false,"unit_number":"513","shape":"poly","coords":"508,70,658,70,658,134,614,134,614,228,510,228"},"514":{"page_id":"9a74d301-d164-4174-b03f-2e264daf4453","available":false,"unit_number":"514","shape":"poly","coords":"374,68,506,70,506,232,536,232,536,264,376,264"},"515":{"page_id":"9a74d303-7601-462b-946f-e19798616697","available":false,"unit_number":"515","shape":"rect","coords":"690,260,804,492"},"501":{"page_id":"9a74d2ed-450a-40e8-9bdd-f469bd8705e2","available":false,"unit_number":"501","shape":"poly","coords":"490,490,678,484,682,562,678,562,676,592,638,590,638,624,490,622"},"509":{"page_id":"9a74d2fa-1b4e-42fd-ae92-7b3a31cee593","available":false,"unit_number":"509","shape":"rect","coords":"832,346,984,498"}},"file_id":"5111","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5111-800/plan-1718-084-planlocation-niv5png.webp"},"6":{"level_name":"\u00c9tage #6","level":6,"units":{"602":{"page_id":"9a74d306-ccb5-46dc-87bc-720bcebb188f","available":false,"unit_number":"602","shape":"rect","coords":"242,488,442,622"},"603":{"page_id":"9a74d308-7531-41cb-9366-7d4096c5bd4e","available":false,"unit_number":"603","shape":"poly","coords":"244,626,398,626,398,652,428,652,426,786,244,786"},"604":{"page_id":"9a74d309-f876-423a-94bc-92588a077003","available":false,"unit_number":"604","shape":"rect","coords":"430,650,566,786"},"605":{"page_id":"9a74d30b-da1f-453e-9445-ee549772a68b","available":false,"unit_number":"605","shape":"rect","coords":"566,650,686,784"},"606":{"page_id":"9a74d30d-8a82-491c-99ad-a2adbc50cb88","available":false,"unit_number":"606","shape":"rect","coords":"688,650,830,784"},"607":{"page_id":"9a74d30f-6de7-411c-b958-dc1b061c2b9b","available":false,"unit_number":"607","shape":"rect","coords":"832,620,982,784"},"608":{"page_id":"9a74d311-23a1-43ec-aee5-e0d96d4616ab","available":false,"unit_number":"608","shape":"rect","coords":"832,498,982,618"},"610":{"page_id":"9a74d317-8424-4fad-99a0-d4469d05014a","available":false,"unit_number":"610","shape":"rect","coords":"832,228,984,342"},"611":{"page_id":"9a74d319-236a-4ac2-ae4c-a209ff61f50f","available":false,"unit_number":"611","shape":"poly","coords":"838,68,980,64,982,228,808,226,810,150,838,150"},"612":{"page_id":"9a74d31a-cc40-46dd-944b-c3042d0f8d45","available":true,"unit_number":"612","shape":"poly","coords":"658,68,832,66,832,146,806,146,806,230,658,228"},"613":{"page_id":"9a74d31c-85a6-44c3-8f37-9d2693481155","available":false,"unit_number":"613","shape":"poly","coords":"508,70,658,70,658,134,614,134,614,228,510,228"},"614":{"page_id":"9a74d31e-7a9d-4d58-bfd3-7ebe1980e15c","available":false,"unit_number":"614","shape":"poly","coords":"374,68,506,70,506,232,536,232,536,264,376,264"},"615":{"page_id":"9a74d320-3846-40e0-b2ea-e6fbc6f957f5","available":false,"unit_number":"615","shape":"rect","coords":"690,260,804,492"},"601":{"page_id":"9a74d304-d344-43cc-88dd-55a7fbb8aa62","available":false,"unit_number":"601","shape":"poly","coords":"490,490,678,484,682,562,678,562,676,592,638,590,638,624,490,622"},"609":{"page_id":"9a74d315-8159-47c8-9523-5e074deb132d","available":false,"unit_number":"609","shape":"rect","coords":"832,346,984,498"}},"file_id":"5112","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5112-800/plan-1718-084-planlocation-niv6png.webp"},"7":{"level_name":"\u00c9tage #7","level":7,"units":{"702":{"page_id":"9a74d323-9f5b-456c-b5d7-d4e7ab75435f","available":false,"unit_number":"702","shape":"rect","coords":"242,488,442,622"},"703":{"page_id":"9a74d325-b16b-44fd-a192-7da1a4aae9e9","available":false,"unit_number":"703","shape":"poly","coords":"244,626,398,626,398,652,428,652,426,786,244,786"},"704":{"page_id":"9a74d327-3b91-4701-bc1a-9ead0e7ae3df","available":true,"unit_number":"704","shape":"rect","coords":"430,650,566,786"},"705":{"page_id":"9a74d328-de00-4f38-bf86-f700be2c8a04","available":false,"unit_number":"705","shape":"rect","coords":"566,650,686,784"},"706":{"page_id":"9a74d32a-776e-4fb1-9c94-6b0d1e26ea6e","available":true,"unit_number":"706","shape":"rect","coords":"688,650,830,784"},"707":{"page_id":"9a74d32c-a4e1-434e-9dba-332db3456b15","available":true,"unit_number":"707","shape":"rect","coords":"832,620,982,784"},"708":{"page_id":"9a74d32e-467e-4741-8669-c8d071b51a51","available":false,"unit_number":"708","shape":"rect","coords":"832,498,982,618"},"710":{"page_id":"9a74d331-e780-496d-9d67-8f6dbbc3ff63","available":false,"unit_number":"710","shape":"rect","coords":"832,228,984,342"},"711":{"page_id":"9a74d333-b216-45a9-b813-e23d1b7b280b","available":false,"unit_number":"711","shape":"poly","coords":"838,68,980,64,982,228,808,226,810,150,838,150"},"712":{"page_id":"9a74d335-4e96-4f39-9f9b-ae567dc71363","available":false,"unit_number":"712","shape":"poly","coords":"658,68,832,66,832,146,806,146,806,230,658,228"},"713":{"page_id":"9a74d337-2b70-4bd4-8407-2feb2fc3930a","available":true,"unit_number":"713","shape":"poly","coords":"508,70,658,70,658,134,614,134,614,228,510,228"},"714":{"page_id":"9a74d338-dc2f-4dd3-85d6-8ca5a01bd514","available":false,"unit_number":"714","shape":"poly","coords":"374,68,506,70,506,232,536,232,536,264,376,264"},"715":{"page_id":"9a74d33a-ddfc-4532-a845-7c8b150dd29f","available":true,"unit_number":"715","shape":"rect","coords":"690,260,804,492"},"701":{"page_id":"9a74d322-07b7-4c06-972c-f4fb66337fe4","available":true,"unit_number":"701","shape":"poly","coords":"490,490,678,484,682,562,678,562,676,592,638,590,638,624,490,622"},"709":{"page_id":"9a74d330-4ab4-497d-b19a-c711cea7fae5","available":true,"unit_number":"709","shape":"rect","coords":"832,346,984,498"}},"file_id":"5113","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/5113-800/plan-1718-084-planlocation-niv7png.webp"}},"areas":[{"item_id":"084","shape":"poly","coords":"843,746,1449,745,1450,1462,711,1463,710,1167,1157,1166,1156,937,842,937","building_id":369,"available":true}],"plan_url":"https://logisco.com/static/vb/3663-800/plan-1728-084-2023-06-22-planlocation-implantation.webp"}]" | |
| 886 | + :project-name=""Le MUSO"" | |
| 887 | + :building-id="369" | |
| 888 | + :floor="6" | |
| 889 | + ></plan-view> | |
| 890 | +</section> | |
| 891 | + | |
| 892 | + | |
| 893 | + </div> | |
| 894 | + | |
| 895 | +<div class="unitSection"> | |
| 896 | + <carousel-gallery> | |
| 897 | + <template #title> | |
| 898 | + <div class="blockText blockText-style--medium"> | |
| 899 | + <h2 class="blockText-surtitle">Perspectives du projet résidentiel</h2> | |
| 900 | + <p class="blockText-title">Capturer l'âme du projet à travers les images</p> | |
| 901 | + </div> | |
| 902 | + </template> | |
| 903 | + <template #images> | |
| 904 | + <carousel-gallery-slide> | |
| 905 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/8314-1800/muso-vue-exterieure.webp" | |
| 906 | + alt="MUSO - Vue extérieure"> | |
| 907 | + <template #description> | |
| 908 | + <a class="c2a c2a-text c2a--tertiary" | |
| 909 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 910 | + <span class="c2a-name"> | |
| 911 | + Découvrir Le MUSO | |
| 912 | + </span> | |
| 913 | + </a> | |
| 914 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 915 | + MUSO - Vue extérieure | |
| 916 | + </h3> | |
| 917 | + </template> | |
| 918 | + </carousel-gallery-slide> | |
| 919 | + <carousel-gallery-slide> | |
| 920 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6354-1800/muso-4-12-cuisine.webp" | |
| 921 | + alt="MUSO - 4 1/2 - Cuisine"> | |
| 922 | + <template #description> | |
| 923 | + <a class="c2a c2a-text c2a--tertiary" | |
| 924 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 925 | + <span class="c2a-name"> | |
| 926 | + Découvrir Le MUSO | |
| 927 | + </span> | |
| 928 | + </a> | |
| 929 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 930 | + MUSO - 4 1/2 - Cuisine | |
| 931 | + </h3> | |
| 932 | + </template> | |
| 933 | + </carousel-gallery-slide> | |
| 934 | + <carousel-gallery-slide> | |
| 935 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6355-1800/muso-4-12-cuisine.webp" | |
| 936 | + alt="MUSO - 4 1/2 - Cuisine"> | |
| 937 | + <template #description> | |
| 938 | + <a class="c2a c2a-text c2a--tertiary" | |
| 939 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 940 | + <span class="c2a-name"> | |
| 941 | + Découvrir Le MUSO | |
| 942 | + </span> | |
| 943 | + </a> | |
| 944 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 945 | + MUSO - 4 1/2 - Cuisine | |
| 946 | + </h3> | |
| 947 | + </template> | |
| 948 | + </carousel-gallery-slide> | |
| 949 | + <carousel-gallery-slide> | |
| 950 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6356-1800/muso-4-12-chambre-a-coucher.webp" | |
| 951 | + alt="MUSO - 4 1/2 - Chambre à coucher"> | |
| 952 | + <template #description> | |
| 953 | + <a class="c2a c2a-text c2a--tertiary" | |
| 954 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 955 | + <span class="c2a-name"> | |
| 956 | + Découvrir Le MUSO | |
| 957 | + </span> | |
| 958 | + </a> | |
| 959 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 960 | + MUSO - 4 1/2 - Chambre à coucher | |
| 961 | + </h3> | |
| 962 | + </template> | |
| 963 | + </carousel-gallery-slide> | |
| 964 | + <carousel-gallery-slide> | |
| 965 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6357-1800/muso-4-12-salle-de-bain.webp" | |
| 966 | + alt="MUSO - 4 1/2 - Salle de bain"> | |
| 967 | + <template #description> | |
| 968 | + <a class="c2a c2a-text c2a--tertiary" | |
| 969 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 970 | + <span class="c2a-name"> | |
| 971 | + Découvrir Le MUSO | |
| 972 | + </span> | |
| 973 | + </a> | |
| 974 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 975 | + MUSO - 4 1/2 - Salle de bain | |
| 976 | + </h3> | |
| 977 | + </template> | |
| 978 | + </carousel-gallery-slide> | |
| 979 | + <carousel-gallery-slide> | |
| 980 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6358-1800/muso-4-12-salon.webp" | |
| 981 | + alt="MUSO - 4 1/2 - Salon"> | |
| 982 | + <template #description> | |
| 983 | + <a class="c2a c2a-text c2a--tertiary" | |
| 984 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 985 | + <span class="c2a-name"> | |
| 986 | + Découvrir Le MUSO | |
| 987 | + </span> | |
| 988 | + </a> | |
| 989 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 990 | + MUSO - 4 1/2 - Salon | |
| 991 | + </h3> | |
| 992 | + </template> | |
| 993 | + </carousel-gallery-slide> | |
| 994 | + <carousel-gallery-slide> | |
| 995 | + <img width="1800" height="1201" src="https://logisco.com/static/vb/6359-1800/muso-4-12-autre-chambre-a-coucher.webp" | |
| 996 | + alt="MUSO - 4 1/2 - Autre chambre à coucher"> | |
| 997 | + <template #description> | |
| 998 | + <a class="c2a c2a-text c2a--tertiary" | |
| 999 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1000 | + <span class="c2a-name"> | |
| 1001 | + Découvrir Le MUSO | |
| 1002 | + </span> | |
| 1003 | + </a> | |
| 1004 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1005 | + MUSO - 4 1/2 - Autre chambre à coucher | |
| 1006 | + </h3> | |
| 1007 | + </template> | |
| 1008 | + </carousel-gallery-slide> | |
| 1009 | + <carousel-gallery-slide> | |
| 1010 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6360-1800/muso-4-12-entree.webp" | |
| 1011 | + alt="MUSO - 4 1/2 - Entrée"> | |
| 1012 | + <template #description> | |
| 1013 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1014 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1015 | + <span class="c2a-name"> | |
| 1016 | + Découvrir Le MUSO | |
| 1017 | + </span> | |
| 1018 | + </a> | |
| 1019 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1020 | + MUSO - 4 1/2 - Entrée | |
| 1021 | + </h3> | |
| 1022 | + </template> | |
| 1023 | + </carousel-gallery-slide> | |
| 1024 | + <carousel-gallery-slide> | |
| 1025 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/6361-1800/muso-salle-dentrainement.webp" | |
| 1026 | + alt="MUSO - Salle d'entraînement"> | |
| 1027 | + <template #description> | |
| 1028 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1029 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1030 | + <span class="c2a-name"> | |
| 1031 | + Découvrir Le MUSO | |
| 1032 | + </span> | |
| 1033 | + </a> | |
| 1034 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1035 | + MUSO - Salle d'entraînement | |
| 1036 | + </h3> | |
| 1037 | + </template> | |
| 1038 | + </carousel-gallery-slide> | |
| 1039 | + <carousel-gallery-slide> | |
| 1040 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7084-1800/muso-salon-commun.webp" | |
| 1041 | + alt="MUSO - Salon commun"> | |
| 1042 | + <template #description> | |
| 1043 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1044 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1045 | + <span class="c2a-name"> | |
| 1046 | + Découvrir Le MUSO | |
| 1047 | + </span> | |
| 1048 | + </a> | |
| 1049 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1050 | + MUSO - Salon commun | |
| 1051 | + </h3> | |
| 1052 | + </template> | |
| 1053 | + </carousel-gallery-slide> | |
| 1054 | + <carousel-gallery-slide> | |
| 1055 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7082-1800/muso-zone-de-soulagement.webp" | |
| 1056 | + alt="MUSO - Zone de soulagement"> | |
| 1057 | + <template #description> | |
| 1058 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1059 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1060 | + <span class="c2a-name"> | |
| 1061 | + Découvrir Le MUSO | |
| 1062 | + </span> | |
| 1063 | + </a> | |
| 1064 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1065 | + MUSO - Zone de soulagement | |
| 1066 | + </h3> | |
| 1067 | + </template> | |
| 1068 | + </carousel-gallery-slide> | |
| 1069 | + <carousel-gallery-slide> | |
| 1070 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7081-1800/muso-parc-canin.webp" | |
| 1071 | + alt="MUSO - Parc canin"> | |
| 1072 | + <template #description> | |
| 1073 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1074 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1075 | + <span class="c2a-name"> | |
| 1076 | + Découvrir Le MUSO | |
| 1077 | + </span> | |
| 1078 | + </a> | |
| 1079 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1080 | + MUSO - Parc canin | |
| 1081 | + </h3> | |
| 1082 | + </template> | |
| 1083 | + </carousel-gallery-slide> | |
| 1084 | + <carousel-gallery-slide> | |
| 1085 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7079-1800/muso-parc-canin-grands-chiens.webp" | |
| 1086 | + alt="MUSO - Parc canin grands chiens"> | |
| 1087 | + <template #description> | |
| 1088 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1089 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1090 | + <span class="c2a-name"> | |
| 1091 | + Découvrir Le MUSO | |
| 1092 | + </span> | |
| 1093 | + </a> | |
| 1094 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1095 | + MUSO - Parc canin grands chiens | |
| 1096 | + </h3> | |
| 1097 | + </template> | |
| 1098 | + </carousel-gallery-slide> | |
| 1099 | + <carousel-gallery-slide> | |
| 1100 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7080-1800/muso-parc-canin-petits-chiens.webp" | |
| 1101 | + alt="MUSO - Parc canin petits chiens"> | |
| 1102 | + <template #description> | |
| 1103 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1104 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1105 | + <span class="c2a-name"> | |
| 1106 | + Découvrir Le MUSO | |
| 1107 | + </span> | |
| 1108 | + </a> | |
| 1109 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1110 | + MUSO - Parc canin petits chiens | |
| 1111 | + </h3> | |
| 1112 | + </template> | |
| 1113 | + </carousel-gallery-slide> | |
| 1114 | + <carousel-gallery-slide> | |
| 1115 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/7083-1800/muso-zone-de-toilettage.webp" | |
| 1116 | + alt="MUSO - Zone de toilettage"> | |
| 1117 | + <template #description> | |
| 1118 | + <a class="c2a c2a-text c2a--tertiary" | |
| 1119 | + href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso"> | |
| 1120 | + <span class="c2a-name"> | |
| 1121 | + Découvrir Le MUSO | |
| 1122 | + </span> | |
| 1123 | + </a> | |
| 1124 | + <h3 class="cc-carousel-galleryImageDescription"> | |
| 1125 | + MUSO - Zone de toilettage | |
| 1126 | + </h3> | |
| 1127 | + </template> | |
| 1128 | + </carousel-gallery-slide> | |
| 1129 | + </template> | |
| 1130 | + </carousel-gallery> | |
| 1131 | +</div> | |
| 1132 | + | |
| 1133 | + | |
| 1134 | +<div id="projectType" data-project-type="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83"></div> | |
| 1135 | +<div id="unitFull" data-unit-dispo="Maintenant"></div> | |
| 1136 | + <section | |
| 1137 | + class="section section-background gap--1x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-bottom--1x padding-left--2x padding-right--2x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x id_d6ab60b6e3815869e4fdde2fb0d50af7a4d9d4ea" | |
| 1138 | + > | |
| 1139 | + | |
| 1140 | +<div class="id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e layout-full padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1141 | + <div class="blockText blockText-style--small " > | |
| 1142 | + <h2 class="blockText-title">On n’est jamais bien loin pour vous accompagner</h2> | |
| 1143 | + </div> | |
| 1144 | + | |
| 1145 | + </div> | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | +<div class="id_4f9de2cf2b5c2fe600683f36917305105bb82785 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_5x layout-rowGap--0x layout-rowGapMobile--2x"> | |
| 1150 | + | |
| 1151 | + <a class="blockText blockText--link " href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" > | |
| 1152 | + <div class="blockText-container"> | |
| 1153 | + <h3 class="blockText-subtitle">Centre d’aide</h3> | |
| 1154 | + <p class="blockText-description">Trouvez rapidement les informations dont vous avez besoin grâce à notre foire aux questions sur le résidentiel, le commercial et les emplois. </p> | |
| 1155 | + </div> | |
| 1156 | + <i class="blockText-icon icon-cms-arrow-right"></i> | |
| 1157 | +</a> | |
| 1158 | + <a class="blockText blockText--link " href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" > | |
| 1159 | + <div class="blockText-container"> | |
| 1160 | + <h3 class="blockText-subtitle">Nouvel arrivant</h3> | |
| 1161 | + <p class="blockText-description">Vous prévoyez vous installer dans la région de Québec? On offre un service d’accompagnement entièrement gratuit pour vous aider à trouver votre futur chez-vous, et ce, depuis votre pays d’origine.</p> | |
| 1162 | + </div> | |
| 1163 | + <i class="blockText-icon icon-cms-arrow-right"></i> | |
| 1164 | +</a> | |
| 1165 | + | |
| 1166 | + </div> | |
| 1167 | + | |
| 1168 | + </section> | |
| 1169 | + | |
| 1170 | + <section | |
| 1171 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-left--1x padding-right--1x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundColor--lightblue id_e9d7ad3426ce6ac21fa5430b9012695c42bd1dbe" | |
| 1172 | + > | |
| 1173 | + | |
| 1174 | + | |
| 1175 | +<div class="id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f layout-columns modifier-h--start padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_5x layout-rowGap--2x"> | |
| 1176 | + <div class="blockText blockText-style--small " > | |
| 1177 | + <h2 class="blockText-surtitle">Conseils sur l’immobilier </h2> | |
| 1178 | + <p class="blockText-title">On se veut utile </p> | |
| 1179 | + <span class="c2aBlock"> | |
| 1180 | + <a | |
| 1181 | + data-gtm-event="clickButton" data-gtm-id="conseils-en-immobilier-residentiel" | |
| 1182 | + | |
| 1183 | + href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="c2a c2a-text c2a--tertiary" | |
| 1184 | + aria-label="Conseils en immobilier résidentiel" | |
| 1185 | +> | |
| 1186 | + <span class="c2a-name"> | |
| 1187 | + Conseils en immobilier résidentiel | |
| 1188 | + </span> | |
| 1189 | + <i class="icon-cms-arrow-right"></i> | |
| 1190 | + </a> | |
| 1191 | + | |
| 1192 | + </span> | |
| 1193 | + </div> | |
| 1194 | + | |
| 1195 | + | |
| 1196 | + <div class="layout-carousel swiper js-carousel layout-carousel--mobile id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columns-desktop" | |
| 1197 | + data-breakpoint="750" | |
| 1198 | + data-speed="500" | |
| 1199 | + data-autoplay="false" | |
| 1200 | + data-delay="4000" | |
| 1201 | + data-direction="" | |
| 1202 | + | |
| 1203 | + data-slides-per-view-desktop="1" | |
| 1204 | + data-slides-per-view-mobile="1" | |
| 1205 | + | |
| 1206 | + data-space-between-slides="16" | |
| 1207 | + data-space-between-slides-mobile="8" | |
| 1208 | + | |
| 1209 | + data-effect="slide"> | |
| 1210 | + <div class="swiper-wrapper carousel-wrapper js-carouselWrapper layout-columnsGap--0_25x layout-rowGap--0x"> | |
| 1211 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/2025-on-a-vu-grand-chez-logisco" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="En 2025, on a vu grand chez LOGISCO"> | |
| 1212 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1213 | + <img class="cardItems-picture" width="475" height="267" src="https://logisco.com/static/vb/8181-475/2025-une-annee-de-plus-a-repousser-les-limites-logisco.webp" alt="2025 : Une année de plus à repousser les limites | LOGISCO"> | |
| 1214 | + </div> | |
| 1215 | + <span class="article-type">Nouvelles</span> | |
| 1216 | + <span class="article-date">17 décembre 2025 - 1 min. de lecture</span> | |
| 1217 | + <h3 class="article-title">En 2025, on a vu grand chez LOGISCO</h3> | |
| 1218 | + <span class="article-text">Retour sur 2025 : une année de réalisations, de projets livrés et d’innovations qui façonnent notre vision pour l’avenir.</span> | |
| 1219 | + </a> | |
| 1220 | +</div> | |
| 1221 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/et-si-la-tranquillite-desprit-passait-par-la-location" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="Et si la tranquillité d’esprit passait par la location?"> | |
| 1222 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1223 | + <img class="cardItems-picture" width="475" height="317" src="https://logisco.com/static/vb/7704-475/vivre-librement-grace-a-la-location-logisco.webp" alt="Vivre librement grâce à la location | LOGISCO"> | |
| 1224 | + </div> | |
| 1225 | + <span class="article-type">Immobilier résidentiel</span> | |
| 1226 | + <span class="article-date">19 juin 2025 - 3 min. de lecture</span> | |
| 1227 | + <h3 class="article-title">Et si la tranquillité d’esprit passait par la location?</h3> | |
| 1228 | + <span class="article-text">Et si la liberté passait par la location? Marcel partage son choix de vie au District GC.</span> | |
| 1229 | + </a> | |
| 1230 | +</div> | |
| 1231 | + <div class="swiper-slide js-carouselSlide"><a href="https://logisco.com/fr/blogue/experience-logisco" class="article cardItems" data-gtm-content-type="blogCard" data-gtm-page-type="Article" data-gtm-page-name="L’Expérience LOGISCO : plus qu’une simple transaction"> | |
| 1232 | + <div class="article-image cardItems-pictureWrapper"> | |
| 1233 | + <img class="cardItems-picture" width="475" height="317" src="https://logisco.com/static/vb/7445-475/lexperience-logisco-plus-quune-simple-transaction-logisco.webp" alt="L’Expérience LOGISCO : plus qu’une simple transaction | LOGISCO"> | |
| 1234 | + </div> | |
| 1235 | + <span class="article-type">Immobilier résidentiel</span> | |
| 1236 | + <span class="article-date">30 janvier 2025 - 3 min. de lecture</span> | |
| 1237 | + <h3 class="article-title">L’Expérience LOGISCO : plus qu’une simple transaction</h3> | |
| 1238 | + <span class="article-text">Huit clients sur dix se disent satisfaits de nos services, et ce taux est en constante progression grâce à nos efforts continus. Signer un bail ou collaborer avec LOGISCO, c’est avant tout un lien humain, guidé par nos valeurs d’entreprise. Découvrez comment!</span> | |
| 1239 | + </a> | |
| 1240 | +</div> | |
| 1241 | + </div> | |
| 1242 | + <div class="carousel-nav carousel-navDots--center "> | |
| 1243 | + <div class="carousel-dots swiper-pagination js-carouselPagination carousel-dots--mobile"></div> | |
| 1244 | + </div> | |
| 1245 | + </div> | |
| 1246 | + | |
| 1247 | + | |
| 1248 | + </div> | |
| 1249 | + | |
| 1250 | + </section> | |
| 1251 | + | |
| 1252 | + | |
| 1253 | + | |
| 1254 | + | |
| 1255 | + </main> | |
| 1256 | + | |
| 1257 | + <footer class="footer" data-gtm-creative-slot="footer"> | |
| 1258 | + <section | |
| 1259 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1_5x padding-left--0x padding-right--0x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundEffect--roundedCornersTop id_4ab8b59e9ace372edff7af94b2f0ecfe8af887d9" | |
| 1260 | + style="background-color: rgba(19, 24, 52, 1)" > | |
| 1261 | + | |
| 1262 | + | |
| 1263 | +<div class="id_eca944e94897a9b2d2823841936b19315bf3c414 layout-columns modifier-h--start padding-top--0x padding-bottom--1x padding-left--1x padding-right--1x paddingMobile-top--0x paddingMobile-bottom--2x paddingMobile-left--0x paddingMobile-right--0x layout-rowGap--0x layout-columnsGap--0x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1264 | + | |
| 1265 | +<div class="id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1266 | + <single-expand | |
| 1267 | + class="" | |
| 1268 | + :mobile-breakpoint="750" | |
| 1269 | + :mobile-expanded="true" | |
| 1270 | + :expanded="false" | |
| 1271 | + is-link > | |
| 1272 | + <template #label> | |
| 1273 | + <span class="item item--bolder item--white"> | |
| 1274 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" > | |
| 1275 | + <p class="expand-labelName">À propos</p> | |
| 1276 | + </a> | |
| 1277 | + </span> | |
| 1278 | + </template> | |
| 1279 | + <template #content> | |
| 1280 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1281 | + | |
| 1282 | + <span class="item item--white70"> | |
| 1283 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" class="item-link " > | |
| 1284 | + Qui est LOGISCO | |
| 1285 | + </a> | |
| 1286 | + </span> | |
| 1287 | + | |
| 1288 | + | |
| 1289 | + <span class="item item--white70"> | |
| 1290 | + <a href="https://logisco.com/fr/emplois" data-gtm-page-type="Page" data-gtm-page-name="Emplois marque-employeur" class="item-link " > | |
| 1291 | + Emplois | |
| 1292 | + </a> | |
| 1293 | + </span> | |
| 1294 | + | |
| 1295 | + | |
| 1296 | + <span class="item item--white70"> | |
| 1297 | + <a href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="item-link " > | |
| 1298 | + Blogue | |
| 1299 | + </a> | |
| 1300 | + </span> | |
| 1301 | + | |
| 1302 | + | |
| 1303 | + <span class="item item--white70"> | |
| 1304 | + <a href="https://logisco.com/fr/dons-et-commandites" data-gtm-page-type="Page" data-gtm-page-name="Dons et commandites" class="item-link " > | |
| 1305 | + Dons et commandites | |
| 1306 | + </a> | |
| 1307 | + </span> | |
| 1308 | + | |
| 1309 | + | |
| 1310 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1311 | + | |
| 1312 | + </template> | |
| 1313 | +</single-expand> | |
| 1314 | + | |
| 1315 | + <single-expand | |
| 1316 | + class="" | |
| 1317 | + :mobile-breakpoint="750" | |
| 1318 | + :mobile-expanded="true" | |
| 1319 | + :expanded="false" | |
| 1320 | + is-link > | |
| 1321 | + <template #label> | |
| 1322 | + <span class="item item--bolder item--white"> | |
| 1323 | + <a href="https://logisco.com/fr/futurs-projets-immobiliers" data-gtm-page-type="Page" data-gtm-page-name="Futurs projets immobiliers" > | |
| 1324 | + <p class="expand-labelName">Futurs projets immobiliers</p> | |
| 1325 | + </a> | |
| 1326 | + </span> | |
| 1327 | + </template> | |
| 1328 | + <template #content> | |
| 1329 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1330 | + | |
| 1331 | + <span class="item item--white70"> | |
| 1332 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/axel" data-gtm-page-type="Projet" data-gtm-page-name="Axel" data-gtm-project-id="1738" data-gtm-tag="Location à venir" class="item-link " > | |
| 1333 | + Axel | |
| 1334 | + </a> | |
| 1335 | + </span> | |
| 1336 | + | |
| 1337 | + | |
| 1338 | + <span class="item item--white70"> | |
| 1339 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/tria" data-gtm-page-type="Projet" data-gtm-page-name="Tria" data-gtm-project-id="1736" data-gtm-average-price="1857.5" data-gtm-listable-unit-count="28" data-gtm-tag="Projet neuf" class="item-link " > | |
| 1340 | + Tria | |
| 1341 | + </a> | |
| 1342 | + </span> | |
| 1343 | + | |
| 1344 | + | |
| 1345 | + | |
| 1346 | + </template> | |
| 1347 | +</single-expand> | |
| 1348 | + | |
| 1349 | + </div> | |
| 1350 | + | |
| 1351 | + <single-expand | |
| 1352 | + class="" | |
| 1353 | + :mobile-breakpoint="750" | |
| 1354 | + :mobile-expanded="true" | |
| 1355 | + :expanded="false" | |
| 1356 | + is-link > | |
| 1357 | + <template #label> | |
| 1358 | + <span class="item item--bolder item--white"> | |
| 1359 | + <a href="https://logisco.com/fr/appartements-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Appartements à louer" > | |
| 1360 | + <p class="expand-labelName">Appartements</p> | |
| 1361 | + </a> | |
| 1362 | + </span> | |
| 1363 | + </template> | |
| 1364 | + <template #content> | |
| 1365 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1366 | + | |
| 1367 | + <span class="item item--white70"> | |
| 1368 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1369 | + Québec | |
| 1370 | + </a> | |
| 1371 | + </span> | |
| 1372 | + | |
| 1373 | + | |
| 1374 | + <span class="item item--white70"> | |
| 1375 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1376 | + Beauport | |
| 1377 | + </a> | |
| 1378 | + </span> | |
| 1379 | + | |
| 1380 | + | |
| 1381 | + <span class="item item--white70"> | |
| 1382 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/charlesbourg" data-gtm-page-type="Quartier" data-gtm-page-name="Charlesbourg" class="item-link " > | |
| 1383 | + Charlesbourg | |
| 1384 | + </a> | |
| 1385 | + </span> | |
| 1386 | + | |
| 1387 | + | |
| 1388 | + <span class="item item--white70"> | |
| 1389 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/duberger-les-saules" data-gtm-page-type="Quartier" data-gtm-page-name="Duberger-Les-Saules" class="item-link " > | |
| 1390 | + Duberger-Les Saules | |
| 1391 | + </a> | |
| 1392 | + </span> | |
| 1393 | + | |
| 1394 | + | |
| 1395 | + <span class="item item--white70"> | |
| 1396 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville" data-gtm-page-type="Quartier" data-gtm-page-name="Loretteville" class="item-link " > | |
| 1397 | + Loretteville | |
| 1398 | + </a> | |
| 1399 | + </span> | |
| 1400 | + | |
| 1401 | + | |
| 1402 | + <span class="item item--white70"> | |
| 1403 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf" data-gtm-page-type="Quartier" data-gtm-page-name="Neufchâtel-Est-Lebourgneuf" class="item-link " > | |
| 1404 | + Neufchâtel-Est-Lebourgneuf | |
| 1405 | + </a> | |
| 1406 | + </span> | |
| 1407 | + | |
| 1408 | + | |
| 1409 | + <span class="item item--white70"> | |
| 1410 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1411 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1412 | + </a> | |
| 1413 | + </span> | |
| 1414 | + | |
| 1415 | + | |
| 1416 | + <span class="item item--white70"> | |
| 1417 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/saint-emile" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Émile" class="item-link " > | |
| 1418 | + Saint-Émile | |
| 1419 | + </a> | |
| 1420 | + </span> | |
| 1421 | + | |
| 1422 | + | |
| 1423 | + <span class="item item--white70"> | |
| 1424 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/val-belair" data-gtm-page-type="Quartier" data-gtm-page-name="Val-Bélair" class="item-link " > | |
| 1425 | + Val-Bélair | |
| 1426 | + </a> | |
| 1427 | + </span> | |
| 1428 | + | |
| 1429 | + | |
| 1430 | + <span class="item item--white70"> | |
| 1431 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/vanier" data-gtm-page-type="Quartier" data-gtm-page-name="Vanier" class="item-link " > | |
| 1432 | + Vanier | |
| 1433 | + </a> | |
| 1434 | + </span> | |
| 1435 | + | |
| 1436 | + | |
| 1437 | + <span class="item item--white70"> | |
| 1438 | + <a href="https://logisco.com/fr/appartements-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1439 | + Lévis | |
| 1440 | + </a> | |
| 1441 | + </span> | |
| 1442 | + | |
| 1443 | + | |
| 1444 | + <span class="item item--white70"> | |
| 1445 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1446 | + Desjardins | |
| 1447 | + </a> | |
| 1448 | + </span> | |
| 1449 | + | |
| 1450 | + | |
| 1451 | + <span class="item item--white70"> | |
| 1452 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-david" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-David" class="item-link " > | |
| 1453 | + Saint-David | |
| 1454 | + </a> | |
| 1455 | + </span> | |
| 1456 | + | |
| 1457 | + | |
| 1458 | + <span class="item item--white70"> | |
| 1459 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-nicolas" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Nicolas" class="item-link " > | |
| 1460 | + Saint-Nicolas | |
| 1461 | + </a> | |
| 1462 | + </span> | |
| 1463 | + | |
| 1464 | + | |
| 1465 | + <span class="item item--white70"> | |
| 1466 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1467 | + Saint-Romuald | |
| 1468 | + </a> | |
| 1469 | + </span> | |
| 1470 | + | |
| 1471 | + | |
| 1472 | + <span class="item item--white70"> | |
| 1473 | + <a href="https://logisco.com/fr/appartements-a-louer/donnacona" data-gtm-page-type="Ville" data-gtm-page-name="Donnacona" class="item-link " > | |
| 1474 | + Donnacona | |
| 1475 | + </a> | |
| 1476 | + </span> | |
| 1477 | + | |
| 1478 | + | |
| 1479 | + <span class="item item--white70"> | |
| 1480 | + <a href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures" data-gtm-page-type="Ville" data-gtm-page-name="Saint-Augustin-de-Desmaures" class="item-link " > | |
| 1481 | + Saint-Augustin-De-Desmaures | |
| 1482 | + </a> | |
| 1483 | + </span> | |
| 1484 | + | |
| 1485 | + | |
| 1486 | + </template> | |
| 1487 | +</single-expand> | |
| 1488 | + | |
| 1489 | + | |
| 1490 | +<div class="id_750d3332f0d42f874d235808f8c66a7d1d9c6129 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1491 | + <single-expand | |
| 1492 | + class="" | |
| 1493 | + :mobile-breakpoint="750" | |
| 1494 | + :mobile-expanded="true" | |
| 1495 | + :expanded="false" | |
| 1496 | + is-link > | |
| 1497 | + <template #label> | |
| 1498 | + <span class="item item--bolder item--white"> | |
| 1499 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Espaces commerciaux à louer" > | |
| 1500 | + <p class="expand-labelName">Espaces commerciaux</p> | |
| 1501 | + </a> | |
| 1502 | + </span> | |
| 1503 | + </template> | |
| 1504 | + <template #content> | |
| 1505 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1506 | + | |
| 1507 | + <span class="item item--white70"> | |
| 1508 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1509 | + Québec | |
| 1510 | + </a> | |
| 1511 | + </span> | |
| 1512 | + | |
| 1513 | + | |
| 1514 | + <span class="item item--white70"> | |
| 1515 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1516 | + Beauport | |
| 1517 | + </a> | |
| 1518 | + </span> | |
| 1519 | + | |
| 1520 | + | |
| 1521 | + <span class="item item--white70"> | |
| 1522 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1523 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1524 | + </a> | |
| 1525 | + </span> | |
| 1526 | + | |
| 1527 | + | |
| 1528 | + <span class="item item--white70"> | |
| 1529 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1530 | + Lévis | |
| 1531 | + </a> | |
| 1532 | + </span> | |
| 1533 | + | |
| 1534 | + | |
| 1535 | + <span class="item item--white70"> | |
| 1536 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/charny" data-gtm-page-type="Quartier" data-gtm-page-name="Charny" class="item-link " > | |
| 1537 | + Charny | |
| 1538 | + </a> | |
| 1539 | + </span> | |
| 1540 | + | |
| 1541 | + | |
| 1542 | + <span class="item item--white70"> | |
| 1543 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1544 | + Desjardins | |
| 1545 | + </a> | |
| 1546 | + </span> | |
| 1547 | + | |
| 1548 | + | |
| 1549 | + <span class="item item--white70"> | |
| 1550 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-jean-chrysostome" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Jean-Chrysostome" class="item-link " > | |
| 1551 | + Saint-Jean-Chrysostome | |
| 1552 | + </a> | |
| 1553 | + </span> | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + <span class="item item--white70"> | |
| 1557 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1558 | + Saint-Romuald | |
| 1559 | + </a> | |
| 1560 | + </span> | |
| 1561 | + | |
| 1562 | + | |
| 1563 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1564 | + | |
| 1565 | + </template> | |
| 1566 | +</single-expand> | |
| 1567 | + | |
| 1568 | + | |
| 1569 | + <single-expand | |
| 1570 | + class="" | |
| 1571 | + :mobile-breakpoint="750" | |
| 1572 | + :mobile-expanded="true" | |
| 1573 | + :expanded="false" | |
| 1574 | + is-link > | |
| 1575 | + <template #label> | |
| 1576 | + <span class="item item--bolder item--white"> | |
| 1577 | + <a href="https://logisco.com/fr/hotels" data-gtm-page-type="Page" data-gtm-page-name="Hôtels" > | |
| 1578 | + <p class="expand-labelName">Hôtels</p> | |
| 1579 | + </a> | |
| 1580 | + </span> | |
| 1581 | + </template> | |
| 1582 | + <template #content> | |
| 1583 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1584 | + | |
| 1585 | + <span class="item item--white70"> | |
| 1586 | + <a href="https://www.hilton.com/fr/hotels/yqbwhht-home2-suites-quebec-city/" class="item-link " > | |
| 1587 | + Home2 Suites par Hilton Québec | |
| 1588 | + </a> | |
| 1589 | + </span> | |
| 1590 | + | |
| 1591 | + | |
| 1592 | + <span class="item item--white70"> | |
| 1593 | + <a href="https://www.hilton.com/fr/hotels/yqbbphx-hampton-suites-quebec-city-beauport/" class="item-link " > | |
| 1594 | + Hampton Inn & Suites Québec/Beauport | |
| 1595 | + </a> | |
| 1596 | + </span> | |
| 1597 | + | |
| 1598 | + | |
| 1599 | + <span class="item item--white70"> | |
| 1600 | + <a href="https://www.hilton.com/fr/hotels/yqbsrhx-hampton-suites-quebec-city-saint-romuald/" class="item-link " > | |
| 1601 | + Hampton Inn & Suites Québec/Lévis | |
| 1602 | + </a> | |
| 1603 | + </span> | |
| 1604 | + | |
| 1605 | + | |
| 1606 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1607 | + | |
| 1608 | + </template> | |
| 1609 | +</single-expand> | |
| 1610 | + | |
| 1611 | + </div> | |
| 1612 | + | |
| 1613 | + | |
| 1614 | +<div class="id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 blockGroup modifier-v--center modifier-vm--left padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1615 | + <span class="item item--bolder item--white"> | |
| 1616 | + <span class="item-link " > | |
| 1617 | + Téléphone sans frais | |
| 1618 | + </span> | |
| 1619 | + </span> | |
| 1620 | + | |
| 1621 | + | |
| 1622 | + <span class="item item--bigger item--white desktopOnly"> | |
| 1623 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1624 | + + 1-833-564-4726 | |
| 1625 | + </a> | |
| 1626 | + </span> | |
| 1627 | + <span class="item item--bigger item--white mobileOnly"> | |
| 1628 | + <a href="tel:+18335644726" class="item-link " data-gtm-event="appelFooter" > | |
| 1629 | + + 1-833-564-4726 | |
| 1630 | + </a> | |
| 1631 | + </span> | |
| 1632 | + | |
| 1633 | + | |
| 1634 | + <div class="items-row items-row--center "> | |
| 1635 | + <modal-button class-names="js-open-modal c2a c2a-hours " aria-label="Heures d'ouverture" modal-id="99e74ab5-6702-4826-8d7d-d6963262fe2d" data-gtm-event="clickButton" data-gtm-id="heures-douverture"> | |
| 1636 | + <div class="c2a-hoursIcon"> | |
| 1637 | + <span class="c2a-hoursIconCenter"></span> | |
| 1638 | + </div> | |
| 1639 | + Heures d’ouverture | |
| 1640 | + </modal-button> | |
| 1641 | + | |
| 1642 | + | |
| 1643 | + </div> | |
| 1644 | + | |
| 1645 | + <single-expand | |
| 1646 | + class="" | |
| 1647 | + :mobile-breakpoint="750" | |
| 1648 | + :mobile-expanded="true" | |
| 1649 | + :expanded="false" | |
| 1650 | + > | |
| 1651 | + <template #label> | |
| 1652 | + <span class="item item--bolder item--white"> | |
| 1653 | + <div > | |
| 1654 | + <p class="expand-labelName">Support</p> | |
| 1655 | + </div> | |
| 1656 | + </span> | |
| 1657 | + </template> | |
| 1658 | + <template #content> | |
| 1659 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1660 | + | |
| 1661 | + <span class="item item--white70"> | |
| 1662 | + <a href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="item-link " > | |
| 1663 | + Centre d'aide | |
| 1664 | + </a> | |
| 1665 | + </span> | |
| 1666 | + | |
| 1667 | + | |
| 1668 | + <span class="item item--white70"> | |
| 1669 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1670 | + Nous joindre | |
| 1671 | + </a> | |
| 1672 | + </span> | |
| 1673 | + | |
| 1674 | + | |
| 1675 | + | |
| 1676 | + <span class="item item--white70"> | |
| 1677 | + <a href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" class="item-link " > | |
| 1678 | + Nouvel arrivant | |
| 1679 | + </a> | |
| 1680 | + </span> | |
| 1681 | + | |
| 1682 | + | |
| 1683 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1684 | + | |
| 1685 | + </template> | |
| 1686 | +</single-expand> | |
| 1687 | + | |
| 1688 | + </div> | |
| 1689 | + | |
| 1690 | + </div> | |
| 1691 | + | |
| 1692 | + | |
| 1693 | +<div class="id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 layout-full padding-top--0x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile-left--0x layout-rowGap--0x"> | |
| 1694 | + <a | |
| 1695 | + data-gtm-event="clickButton" data-gtm-id="donnez-votre-avis-pour-gagner-100" | |
| 1696 | + target=_blank | |
| 1697 | + href="https://logisco.qualtrics.com/jfe/form/SV_2c2Qx298zKfhg34" class="c2a c2a-text c2a--secondary c2a-style--secondary" | |
| 1698 | + aria-label="Donnez votre avis pour gagner 100$" | |
| 1699 | +> | |
| 1700 | + <span class="c2a-name"> | |
| 1701 | + Donnez votre avis pour gagner 100$ | |
| 1702 | + </span> | |
| 1703 | + </a> | |
| 1704 | + | |
| 1705 | + </div> | |
| 1706 | + | |
| 1707 | + | |
| 1708 | + | |
| 1709 | +<div class="id_53475154bf3a1ec91c439fa85367d8e43e69cb6d layout-columns modifier-h--center padding-top--0_5x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_25x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1710 | + | |
| 1711 | +<div class="id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 blockGroup modifier-v--around modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1712 | + <div class="items-row items-row--start "> | |
| 1713 | + <span class="item item--white"> | |
| 1714 | + <a href="https://logisco.com/fr/politique-de-cookies" data-gtm-page-type="Page" data-gtm-page-name="Politique de cookies" class="item-link " > | |
| 1715 | + Politique d'utilisation des cookies | |
| 1716 | + </a> | |
| 1717 | + </span> | |
| 1718 | + | |
| 1719 | + | |
| 1720 | + <span class="item item--white"> | |
| 1721 | + <a href="https://logisco.com/fr/politique-de-protection-des-renseignements-personnels" data-gtm-page-type="Page" data-gtm-page-name="Politique de protection des renseignements personnels" class="item-link " > | |
| 1722 | + Politique de protection des renseignements personnels | |
| 1723 | + </a> | |
| 1724 | + </span> | |
| 1725 | + | |
| 1726 | + | |
| 1727 | + <span class="item item--label item--gray"> | |
| 1728 | + <span class="item-link " > | |
| 1729 | + © Tous droits réservés LOGISCO 2026 | |
| 1730 | + </span> | |
| 1731 | + </span> | |
| 1732 | + | |
| 1733 | + | |
| 1734 | + </div> | |
| 1735 | + | |
| 1736 | + </div> | |
| 1737 | + | |
| 1738 | + | |
| 1739 | +<div class="id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 blockGroup modifier-v--center modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1740 | + <div class="items-row items-row--even "> | |
| 1741 | + <a class="icon-link " href="https://www.facebook.com/logiscogroupe/?locale=fr_CA"> | |
| 1742 | + <i class="icon-social icon-cms-social-facebook"></i> | |
| 1743 | +</a> | |
| 1744 | + | |
| 1745 | + <a class="icon-link " href="https://www.instagram.com/logiscogroupeimmo/"> | |
| 1746 | + <i class="icon-social icon-cms-social-instagram"></i> | |
| 1747 | +</a> | |
| 1748 | + | |
| 1749 | + <a class="icon-link " href="https://www.pinterest.ca/logiscogroupeimmobilier/"> | |
| 1750 | + <i class="icon-social icon-cms-social-pinterest"></i> | |
| 1751 | +</a> | |
| 1752 | + | |
| 1753 | + <a class="icon-link " href="https://www.youtube.com/user/LogiscoGroupeImmo"> | |
| 1754 | + <i class="icon-social icon-cms-social-youtube"></i> | |
| 1755 | +</a> | |
| 1756 | + | |
| 1757 | + <a class="icon-link " href="https://ca.linkedin.com/company/logisco-groupe-immobilier"> | |
| 1758 | + <i class="icon-social icon-cms-social-linkedin"></i> | |
| 1759 | +</a> | |
| 1760 | + | |
| 1761 | + </div> | |
| 1762 | + | |
| 1763 | + </div> | |
| 1764 | + | |
| 1765 | + </div> | |
| 1766 | + | |
| 1767 | + </section> | |
| 1768 | + | |
| 1769 | + </footer> | |
| 1770 | + | |
| 1771 | + | |
| 1772 | + <logisco-chat></logisco-chat> | |
| 1773 | +</div> | |
| 1774 | + | |
| 1775 | + | |
| 1776 | + | |
| 1777 | + | |
| 1778 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vendor-Cx6hDgs3.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/lodash-DsaPwWhQ.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/swiper-BiYw9q3L.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/axios-ngrFHoWO.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/@vue-tv7FT8X3.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/date-fns-BBWgIHR2.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vue-tel-input-DOM-M7oJ.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi" /><script type="module" src="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="dezmJUf9sxiChnevDUhIGSbTRrYc5Qoi"></script><script type="application/ld+json">{ | |
| 1779 | + "@context": "https://schema.org", | |
| 1780 | + "@type": "apartment", | |
| 1781 | + "@id": "1718:11443", | |
| 1782 | + "address": { | |
| 1783 | + "@type": "PostalAddress", | |
| 1784 | + "streetAddress": "612-7076 Boulevard Wilfrid-Hamel", | |
| 1785 | + "addressLocality": "Québec", | |
| 1786 | + "addressRegion": "Québec", | |
| 1787 | + "postalCode": "G2G 0M7", | |
| 1788 | + "addressCountry": "Canada" | |
| 1789 | + }, | |
| 1790 | + "branchCode": "11443", | |
| 1791 | + "floorLevel": "6", | |
| 1792 | + "image": "https://logisco.com/static/vb/5467/plan-1718-084-2023-06-22-planlocation-214-314-412712-page-001.webp", | |
| 1793 | + "map": "https://www.google.com/maps?q=612-7076+Boulevard+Wilfrid-Hamel%2C+Qu%C3%A9bec%2C+Qu%C3%A9bec%2C+G2G+0M7", | |
| 1794 | + "name": "Appartement 612", | |
| 1795 | + "numberOfBedrooms": "4 1/2", | |
| 1796 | + "telephone": "+14185644726", | |
| 1797 | + "url": "https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612" | |
| 1798 | +} | |
| 1799 | +</script> | |
| 1800 | + | |
| 1801 | +<script type="application/ld+json">{ | |
| 1802 | + "@context": "https://schema.org", | |
| 1803 | + "@type": "BreadcrumbList", | |
| 1804 | + "itemListElement": [ | |
| 1805 | + { | |
| 1806 | + "@type": "ListItem", | |
| 1807 | + "position": 1, | |
| 1808 | + "name": "Accueil", | |
| 1809 | + "item": "https://logisco.com/fr" | |
| 1810 | + }, | |
| 1811 | + { | |
| 1812 | + "@type": "ListItem", | |
| 1813 | + "position": 2, | |
| 1814 | + "name": "Appartements \u00e0 louer", | |
| 1815 | + "item": "https://logisco.com/fr/appartements-a-louer" | |
| 1816 | + }, | |
| 1817 | + { | |
| 1818 | + "@type": "ListItem", | |
| 1819 | + "position": 3, | |
| 1820 | + "name": "Qu\u00e9bec", | |
| 1821 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec" | |
| 1822 | + }, | |
| 1823 | + { | |
| 1824 | + "@type": "ListItem", | |
| 1825 | + "position": 4, | |
| 1826 | + "name": "Sainte-Foy-Sillery-Cap-Rouge", | |
| 1827 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge" | |
| 1828 | + }, | |
| 1829 | + { | |
| 1830 | + "@type": "ListItem", | |
| 1831 | + "position": 5, | |
| 1832 | + "name": "Le MUSO", | |
| 1833 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso" | |
| 1834 | + }, | |
| 1835 | + { | |
| 1836 | + "@type": "ListItem", | |
| 1837 | + "position": 6, | |
| 1838 | + "name": "Appartement 612", | |
| 1839 | + "item": "https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/le-muso/7076-appartement-612" | |
| 1840 | + } | |
| 1841 | + ] | |
| 1842 | +}</script> | |
| 1843 | + | |
| 1844 | + | |
| 1845 | +</body> | |
| 1846 | + | |
| 1847 | +</html> | |
added
tests/fixtures/logisco/0cc9b445c67d29952288.html
+1587 −0
@@ -0,0 +1,1587 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + <script nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle"> | |
| 5 | + window.dataLayer = [] | |
| 6 | +</script> | |
| 7 | + <!-- Google Tag Manager --> | |
| 8 | + <script nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 9 | + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 10 | + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 11 | + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;var n=d.querySelector('[nonce]'); | |
| 12 | + n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f); | |
| 13 | + })(window,document,'script','dataLayer','GTM-PR75X6VZ');</script> | |
| 14 | + <!-- End Google Tag Manager --> | |
| 15 | + <meta name="csrf-token" content="RcK0g54Vsq52dUtLxz6zGOlBZlnXZoocezFO9jj4"> | |
| 16 | + <meta charset="utf-8"> | |
| 17 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 18 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes"> | |
| 19 | + | |
| 20 | + <style nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle">@charset "UTF-8";:root{--vs-colors--lightest: rgba(60, 60, 60, .26);--vs-colors--light: rgba(60, 60, 60, .5);--vs-colors--dark: #333;--vs-colors--darkest: rgba(0, 0, 0, .15);--vs-search-input-color: inherit;--vs-search-input-placeholder-color: inherit;--vs-font-size: 1rem;--vs-line-height: 1.4;--vs-state-disabled-bg: rgb(248, 248, 248);--vs-state-disabled-color: var(--vs-colors--light);--vs-state-disabled-controls-color: var(--vs-colors--light);--vs-border-color: var(--vs-colors--lightest);--vs-border-width: 1px;--vs-border-style: solid;--vs-border-radius: 4px;--vs-actions-padding: 4px 6px 0 3px;--vs-controls-color: var(--vs-colors--light);--vs-controls-size: 1;--vs-controls--deselect-text-shadow: 0 1px 0 #fff;--vs-selected-bg: #f0f0f0;--vs-selected-color: var(--vs-colors--dark);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: #fff;--vs-dropdown-color: inherit;--vs-dropdown-z-index: 1000;--vs-dropdown-min-width: 160px;--vs-dropdown-max-height: 350px;--vs-dropdown-box-shadow: 0px 3px 6px 0px var(--vs-colors--darkest);--vs-dropdown-option-bg: #000;--vs-dropdown-option-color: var(--vs-dropdown-color);--vs-dropdown-option-padding: 3px 20px;--vs-dropdown-option--active-bg: #5897fb;--vs-dropdown-option--active-color: #fff;--vs-dropdown-option--deselect-bg: #fb5858;--vs-dropdown-option--deselect-color: #fff}:root{--vs-disabled-bg: var(--vs-state-disabled-bg);--vs-disabled-color: var(--vs-state-disabled-color)}html,body,p,ul,li,h1,h2,h3{margin:0;padding:0}h1,h2,h3{font-size:100%;font-weight:400}ul{list-style:none}input{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img{height:auto;max-width:100%}html{line-height:normal;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2rem}a{text-decoration:none;background-color:transparent}strong{font-weight:bolder}img{border-style:none}input{margin:0;font-family:inherit}input{overflow:visible}[type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner{padding:0;border-style:none}[type=button]:-moz-focusring{outline:1px dotted ButtonText}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}:root{--base-font: $base-font;--spacing-0x: 0;--spacing-0_25x: 1.6em;--spacing-0_5x: 3.2em;--spacing-1x: 6.4em;--spacing-1_25x: 8em;--spacing-1_5x: 9.6em;--spacing-2x: 12em;--border-radius-none: 0;--border-radius-sm: 2rem;--border-radius-md: 4rem;--border-radius-lg: 6rem}@media (max-width:750px){:root{--spacing-0x: 0;--spacing-0_5x: .8em;--spacing-1x: 1.6em;--spacing-2x: 4em}}html{font-size:.7320644217vw}body{line-height:normal}h1,h2,h3{font-weight:400;font-size:1em}a{color:currentColor}img{display:block;width:100%;height:100%}html{font-size:.6944444444vw}@media (max-width:750px){html{font-size:2.7777777778vw}}html{scroll-behavior:smooth}.blockText-title,.blockText-subtitle,.alertTop-close,.c2a-text,.blockText-description,.blockText-surtitle{color:#363636;font-family:Macan}.blockText-title{font-weight:300;font-size:4rem}@media (max-width:750px){.blockText-title{font-weight:300;font-size:2.6rem}}.blockText-subtitle{font-weight:400;font-size:3rem}@media (max-width:750px){.blockText-subtitle{font-weight:400;font-size:2.4rem}}.alertTop-close{font-weight:400;font-size:2rem}@media (max-width:750px){.alertTop-close{font-weight:400;font-size:1.8rem}}.c2a-text{font-weight:500;font-size:1.5rem}@media (max-width:750px){.c2a-text{font-weight:500;font-size:1.4rem}}.blockText-description,.blockText-surtitle{font-weight:400;font-size:1.6rem}@media (max-width:750px){.blockText-description,.blockText-surtitle{font-weight:300;font-size:1.4rem}}.blockText-style--medium .blockText-title{font-family:Macan;font-weight:400;font-size:3rem;line-height:1.3}@media (max-width:750px){.blockText-style--medium .blockText-title{font-size:2.5rem;line-height:1.2}}.projectHeader-label,.blockText-style--project .blockText-title{font-family:Macan;font-weight:400;font-size:2.4rem;line-height:1.3}@media (max-width:750px){.projectHeader-label,.blockText-style--project .blockText-title{font-size:2.3rem;margin-bottom:.5em}}.blockNumbers-elementText,.projectServices-title,.blockText-style--medium .blockText-subtitle,.blockText-subtitle{font-family:Macan;font-weight:400;font-size:2.2rem;line-height:1.3}@media (max-width:750px){.blockNumbers-elementText,.projectServices-title,.blockText-style--medium .blockText-subtitle,.blockText-subtitle{font-size:2.1rem;line-height:1.4}}.blockText-title{font-family:Macan;font-weight:600;font-size:1.6rem;line-height:1.4}.blockText-description{font-family:Macan;font-size:1.8rem;font-weight:300;line-height:1.5}.projectServices-listItem,.alertTop-content{font-family:Macan;font-weight:300;font-size:1.6rem;line-height:1.4}.blockText-style--project .blockText-surtitle{font-family:Macan;font-weight:300;font-size:1.4rem;line-height:1.4}.projectHeader-breadCrumb,.breadcrumb-item{font-family:Macan;font-weight:400;font-size:1.2rem;line-height:1.3}.projectHeader-address{font-family:Macan;font-weight:400;font-size:1.5rem;line-height:1.5}.blockText-style--medium .blockText-surtitle,.blockText-surtitle{font-family:Macan;font-weight:400;font-size:1.4rem;line-height:1.2}.mainMenu-elementLink,.c2a-text{font-family:Macan;font-weight:500;font-size:1.7rem;line-height:1}.tooltip-subtitle{font-family:Macan;font-weight:500;font-size:1.3rem;line-height:1}.blockNumbers-elementNumber{font-family:Macan;font-weight:400;font-size:7.4rem;line-height:1.1}@media (max-width:750px){.blockNumbers-elementNumber{font-size:5.6rem;line-height:1.2}}.projectHeader-name,.blockText-title{font-family:Macan;font-weight:300;font-size:5.6rem;line-height:1.2}@media (max-width:750px){.projectHeader-name,.blockText-title{font-size:3.8rem;line-height:1.3}}.padding-top--0_5x{padding-top:var(--spacing-0_5x)!important}.padding-top--1x{padding-top:var(--spacing-1x)!important}.padding-right--1x{padding-right:var(--spacing-1x)!important}.padding-right--2x{padding-right:var(--spacing-2x)!important}.padding-bottom--0_5x{padding-bottom:var(--spacing-0_5x)!important}.padding-bottom--1x{padding-bottom:var(--spacing-1x)!important}.padding-left--1x{padding-left:var(--spacing-1x)!important}.padding-left--2x{padding-left:var(--spacing-2x)!important}.padding--0x{padding:var(--spacing-0x)!important}@media (max-width:750px){.paddingMobile-top--0x{padding-top:var(--spacing-0x)!important}.paddingMobile-top--2x{padding-top:var(--spacing-2x)!important}.paddingMobile-right--0x{padding-right:var(--spacing-0x)!important}.paddingMobile-right--1x{padding-right:var(--spacing-1x)!important}.paddingMobile-bottom--1x{padding-bottom:var(--spacing-1x)!important}.paddingMobile-bottom--2x{padding-bottom:var(--spacing-2x)!important}.paddingMobile-left--0x{padding-left:var(--spacing-0x)!important}.paddingMobile-left--1x{padding-left:var(--spacing-1x)!important}.paddingMobile--0x{padding:var(--spacing-0x)!important}}.gap--0x{gap:var(--spacing-0x)}.layout-columnsGap--0x{column-gap:var(--spacing-0x)!important}.layout-rowGap--0x{row-gap:var(--spacing-0x)!important}.layout-rowGap--0_5x{row-gap:var(--spacing-0_5x)!important}.gap--1x{gap:var(--spacing-1x)}.layout-columnsGap--1x{column-gap:var(--spacing-1x)!important}@media (max-width:750px){.gap--0x{gap:calc(var(--spacing-0x) * 2)}.layout-rowGapMobile--0_25x{row-gap:var(--spacing-0_25x)!important}.gap--1x{gap:calc(var(--spacing-1x) * 2)}.layout-rowGapMobile--1x{row-gap:var(--spacing-1x)!important}}.modifier-flex{display:flex}.modifier-flex--col{flex-direction:column}.modifier-flex--center{align-items:center;justify-content:center}@font-face{font-family:icon-cms;src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4);src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-cms-DWd4ei5T.woff2?39a3p4) format("woff2"),url(/theme/build/assets/icomoon-cms-DQc2SeWf.ttf?39a3p4) format("truetype"),url(/theme/build/assets/icomoon-cms-PZ9bTWPn.woff?39a3p4) format("woff"),url(/theme/build/assets/icomoon-cms-B-zWZdiB.svg?39a3p4#icomoon-cms) format("svg");font-weight:400;font-style:normal;font-display:block}[class*=" icon-cms-"]{font-family:icon-cms!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*=" icon-cms-"]:after{position:absolute;top:0;left:0}.icon-cms-close:before{content:""}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Semibold-P894naFN.woff2) format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Book-BKtKbQB6.woff2) format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Regular-Tnze7Wf6.woff2) format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Light-D0XdM3nR.woff2) format("woff2");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Thin-D8KRJN3P.woff2) format("woff2");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:icomoon-logisco;src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j);src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-logisco-3ELZv8tI.ttf?u4aq2j) format("truetype"),url(/theme/build/assets/icomoon-logisco-DAB2sWOk.woff?u4aq2j) format("woff"),url(/theme/build/assets/icomoon-logisco-CJnwMfM_.svg?u4aq2j#icomoon) format("svg");font-weight:400;font-style:normal;font-display:swap}[class^=icon-logisco-],[class*=" icon-logisco-"]{font-weight:400;font-family:icomoon-logisco!important;font-style:normal;font-variant:normal;line-height:1;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-logisco-]:after,[class*=" icon-logisco-"]:after{position:absolute;top:0;left:0}.icon-logisco-service--unheated_outdoor_pool:before{content:""}.icon-logisco-service--guest_parking:before{content:""}.icon-logisco-service--developed_land:before{content:""}.icon-logisco-service--bike_rack:before{content:""}.icon-logisco-service--outdoor_parking:before{content:""}.icon-logisco-phone:before{content:""}.icon-logisco-information:before{content:""}.icon-cms-close{font-family:icomoon-logisco!important}.icon-cms-close:before{content:""}.c2aBlock{display:flex;flex-direction:row;flex-wrap:wrap;gap:2em;justify-content:flex-start;width:fit-content;height:fit-content}.c2a{display:block;width:max-content;height:max-content;padding:.9333333333em 1.3333333333em;color:#fff;font-family:Macan;letter-spacing:normal;text-align:center;border:0;border-radius:.8rem}.c2a-text{display:flex;gap:1em;align-items:center;margin:0;color:#fff;font-weight:400;text-decoration:none}.c2a--secondary{background:#32302f}.c2a{padding:1.86rem 2.4rem}.c2a-text{gap:.4em}.c2a--secondary{background:transparent;border:.1em solid #0F1223;color:#0f1223}.alertTop{position:fixed;top:0;z-index:100;display:flex;align-items:center;justify-content:center;width:100%;height:4.8em;padding-top:1em;padding-bottom:1em;color:#fff;font-family:Macan}@media (max-width:750px){.alertTop{justify-content:space-between}}.alertTop-on .alertTop-placeholder{height:4.8em}.alertTop--main{background-color:#0385d4}.alertTop--main .alertTop-close{color:#fff}@media (min-width:751px){.alertTop-text--mobile{display:none}}@media (max-width:750px){.alertTop-text--desktop{display:none}}.alertTop-close{position:absolute;right:1em;font-size:1.2em!important;font-style:normal}@media (max-width:750px){.alertTop-close{right:1.5em}}.alertTop{padding-top:1.2em;padding-bottom:1.2em}.alertTop-close{position:absolute;font-size:3em!important}.alertTop-content a{text-decoration:underline;text-underline-offset:.1em}@media (max-width:750px){.alertTop{padding:.8em 4em .8em 1.6em}.alertTop-close{right:.5rem}.alertTop-content{font-size:1.2em}}.breadcrumb-list{display:flex;gap:1.2rem;margin-bottom:4em;padding-bottom:4em;border-bottom:.1rem solid #0F1223}.breadcrumb-item{display:flex;color:#0f1223}.breadcrumb-item:not(:last-child):after{display:block;padding-left:1.2rem;content:"|"}@media (max-width:750px){.breadcrumb-list{padding:1rem 0;margin:0 0 .6rem;border-bottom:none;overflow-x:scroll}.breadcrumb-item{white-space:nowrap}}.mainMenu{display:flex;gap:3em;align-items:center;justify-content:flex-end}.mainMenu-item{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;width:100%}.mainMenu-element{display:flex;align-items:center}.mainMenu-elementLink{display:flex;flex-direction:row;gap:.25em;align-items:center;padding:.3571428571em;color:#000;font-weight:500;font-size:1.4em;font-family:Macan;line-height:1.2142857143em;letter-spacing:.0642857143em;white-space:nowrap}.mainMenu-list{display:flex;gap:4.4em}@media (max-width:750px){.mainMenu{gap:1em}.mainMenu-list{display:none}}.mainMenu{gap:0;width:100%;justify-content:space-between;padding:0 6.4em}.mainMenu-list{margin-right:auto;margin-left:auto;gap:3.2em}.mainMenu-item{white-space:nowrap}.mainMenu-item:last-child{display:flex;flex-direction:row;align-items:center;gap:3.2em}.mainMenu-item:last-child:before{content:"";background-color:#c9d5dc;width:.1em;height:2.4em}.mainMenu-elementLink{font-size:1.7rem;letter-spacing:0}@media (max-width:750px){.mainMenu{padding:0 1.6em}}.mainHeader{position:fixed;top:0;left:0;z-index:100;width:100%;background-color:#fff}.mainHeader-placeholder{height:5.5em}@media (max-width:750px){.mainHeader-placeholder{height:5em}}.mainHeader-shadow{opacity:0}.mainHeader-bg{position:absolute;left:0;display:block;width:100%;height:5.5em;background-color:#fff;transform:translateY(-100%)}.mainHeader-nav{position:relative;display:flex;align-items:center;justify-content:space-between;height:5.5em;padding:1.5em 6.4em}.mainHeader-brand{display:flex;align-items:center}.mainHeader-logo{display:flex;width:70%;height:100%}.mainHeader-logo.mainHeader-logo--white{display:none}@media (max-width:750px){.mainHeader-bg{height:5em;transform:translateY(0)}.mainHeader-brand{font-size:.15em}.mainHeader-logo{width:85em}.mainHeader-nav{height:5em;padding:0 4em}}.mainHeader-nav{padding:0;border-bottom:.1em solid #C9D5DC}.mainHeader-logo{width:13.7em}.mainHeader-linksList{display:flex;gap:.8em;align-items:center}.mainHeader-listItem{display:flex;align-items:center;justify-content:center;height:max-content}@media (min-width:751px){.mainHeader-listItem{min-width:6.3rem;min-height:4.5rem;padding-right:.8rem;padding-left:.8rem;border:.2rem solid transparent;border-radius:8rem}}.icon-logisco-phone{display:flex;align-items:center;justify-content:center;padding:0;color:#000;font-size:2em;background-color:transparent;border:none;aspect-ratio:1}@supports not (aspect-ratio:1){.icon-logisco-phone{position:relative}.icon-logisco-phone:after{display:block;content:"";width:100%;padding-top:100%}}.icon-logisco-phone{font-size:2.3em}@media (max-width:750px){.mainHeader-nav{padding:0}.mainHeader-brand{margin-right:auto}.mainHeader-logo{width:70em}.mainHeader-linksList{gap:2.2rem}}.section-background{background-repeat:no-repeat;background-position:right;background-size:cover}.layout-full{display:flex;flex-direction:column;position:relative;overflow:hidden;width:100%}.layout-full{margin:0 auto;overflow:visible}@media (max-width:750px){.layout-full{overflow:unset}}.layout-columns{display:grid;gap:2em;width:100%}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.blockText{display:flex;flex-direction:column;gap:2em;align-items:flex-start;text-align:left}.blockText-surtitle,.blockText-title,.blockText-subtitle,.blockText-description{width:auto}@media (max-width:750px){.blockText .c2aBlock{flex-direction:column}}.blockText{gap:0}.blockText .c2aBlock{gap:1.8em}.blockText :not(:first-child):last-child{margin-bottom:0}.blockText-surtitle{color:#0385d4;font-size:1.8rem;width:100%;text-transform:uppercase;margin-bottom:.6666666667em}@media (max-width:750px){.blockText-surtitle{font-size:1.4rem}}.blockText-title{color:#0f1223;width:100%;margin-bottom:.4285714286em}.blockText-subtitle{width:100%;margin-bottom:1.0909090909em}@media (max-width:750px){.blockText-subtitle{margin-bottom:.1em;font-size:1.65rem!important}}.blockText-description{width:100%;margin-bottom:1.3333333333em;color:#566772}@media (max-width:750px){.blockText-subtitle{font-size:2.3rem!important;font-weight:400!important;margin-bottom:1.6rem}}.blockText-style--medium .blockText-surtitle{color:#0385d4;width:100%;text-transform:uppercase}.blockText-style--medium .blockText-title,.blockText-style--medium .blockText-subtitle{width:100%}@media (max-width:750px){.blockText-style--medium .blockText-title{margin-bottom:1em}}.blockText-style--project .blockText-surtitle{color:#0f1223;text-transform:unset}.blockText-style--project .blockText-title{color:#0f1223}:root{--dp-font-family: Macan !important;--dp-input-padding: 1em 3em 1em 1.2em !important;--dp-font-size: 1.6rem !important;--dp-preview-font-size: 1.3rem !important;--dp-border-radius: .8rem !important;--dp-cell-size: 1.8em !important}@media (max-width:750px){#local-content-widget{height:550px!important}}.tooltip-container{display:none}.tooltip-subtitle{margin-bottom:1.6em}.projectServices-title .tooltip-subtitle{margin-bottom:0;font-size:1.3rem}.projectServices{display:flex;flex-direction:column;margin-right:14.4em;margin-left:14.4em;padding-top:12em;padding-bottom:0;gap:4em}.projectServices--padding{padding-top:0}.projectServices-title{position:relative;display:flex;gap:.4em}.projectServices-title .icon-logisco-information{color:#0385d4;margin-top:.2em}.projectServices-list{display:grid;padding-top:2.4em;padding-bottom:4em;border-bottom:.1em solid #EEF0F2;grid-template-columns:repeat(3,1fr);column-gap:3.2em;row-gap:1.6em}.projectServices-itemContainer{display:flex;gap:.8em;align-items:center}.projectServices-icon{font-size:3em}.projectServices-listItem{display:flex;gap:.8em;align-items:center}@media (max-width:750px){.projectServices{margin-right:1.6em;margin-left:1.6em}.projectServices-list{grid-template-columns:repeat(1,1fr);gap:2em 1em}}.projectHeader--light .projectHeader-label,.projectHeader--light .projectHeader-name,.projectHeader--light .projectHeader-address,.projectHeader--light .projectHeader-link{color:#fff}.projectHeader--light .breadcrumb-item{color:#ffffff80}.projectHeader{padding-top:0;padding-bottom:0}.projectHeader-breadCrumb{margin-right:6.4em;margin-bottom:3.2em;margin-left:6.4em}.projectHeader-breadCrumb .breadcrumb-list{margin-bottom:0}.projectHeader-text{margin-right:15.2em;margin-left:15.2em}.projectHeader-label{font-size:2rem!important;margin-bottom:.5em}.projectHeader-name{font-size:4.5rem!important;margin-bottom:2.4rem}.projectHeader-link{text-decoration:underline;text-underline-offset:.3em}.projectHeader-textContainer{padding-top:4.8em;padding-bottom:4.8em}@media (max-width:750px){.projectHeader-text{margin-right:1.6em;margin-left:1.6em}.projectHeader-breadCrumb{padding:0 0 0 1.5rem;margin:0 0 .6rem}.projectHeader-textContainer{padding-top:1.6em;padding-bottom:4em}}.project-plans{padding:0 6.4em}@media (max-width:750px){.project-plans{padding:0}}@media (max-width:750px){.logisco-project #local-content-widget{height:550px!important}}.hide-units .c2a-seeDispo{display:none}.blockNumbers{width:100%;display:flex;justify-content:center;gap:1.6em;text-align:center}.blockNumbers-element{border-top:.1em solid #C9D5DC;padding:2.4em .4em;width:25%}.blockNumbers-elementNumber{color:#0385d4;margin-bottom:.1em}.blockNumbers-elementText{color:#0f1223}@media (max-width:750px){.blockNumbers{flex-direction:column}.blockNumbers-element{width:100%;padding-top:3em;padding-bottom:3em}}.cc-anchors{display:flex;gap:3.2em;align-items:center;padding-top:.8em;padding-bottom:.8em}.cc-anchors .c2aBlock{margin-left:auto}.cc-anchors-image{width:10em}@media (max-width:750px){.cc-anchors{flex-wrap:wrap;justify-content:space-between}.cc-anchors .c2aBlock{position:fixed;right:0;bottom:0;left:0;z-index:10;gap:.4rem;width:100%;padding:.8em;font-size:.7em;background-color:#fff;box-shadow:0 3em 6em 1em #0000004d}.cc-anchors .c2aBlock .c2a{padding:1em}.cc-anchors .c2a{justify-content:center;width:100%;margin-top:0}}.modifier-h--center{align-items:center}.modifier-h--start{align-items:flex-start}.section--fixed{position:fixed;z-index:90;top:5.5em;right:0;left:0;background-color:#fff;box-shadow:0 3em 3em 1em #00000008}.alertTop-on .section--fixed{top:10.3em}.section--fixed+section{margin-top:7em}@media (max-width:750px){.section--fixed{top:5em}.alertTop-on .section--fixed{top:9.8em}.section--fixed+section{margin-top:4.5em}}</style> | |
| 21 | + <script | |
| 22 | + id="locallogic-sdk" | |
| 23 | + nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" | |
| 24 | + async | |
| 25 | + src="https://sdk.locallogic.co/sdks-js/1.23.32/index.umd.js" | |
| 26 | +></script> | |
| 27 | + | |
| 28 | +<script nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle"> | |
| 29 | + (function() { | |
| 30 | + let sdkLoaded = false; | |
| 31 | + let domReady = false; | |
| 32 | + | |
| 33 | + const globalOptions = { | |
| 34 | + locale: "fr", | |
| 35 | + appearance: { | |
| 36 | + theme: "day", | |
| 37 | + variables: { | |
| 38 | + "--ll-color-primary": "#002d5c", | |
| 39 | + "--ll-color-primary-variant1": "#219cd7", | |
| 40 | + "--ll-font-family": "Macan, sans-serif" | |
| 41 | + } | |
| 42 | + } | |
| 43 | + }; | |
| 44 | + | |
| 45 | + function tryInitialize() { | |
| 46 | + if (!sdkLoaded || !domReady) { | |
| 47 | + return; | |
| 48 | + } | |
| 49 | + | |
| 50 | + const sdkContainer = document.getElementById("local-content-widget"); | |
| 51 | + | |
| 52 | + if (!sdkContainer) { | |
| 53 | + return; | |
| 54 | + } | |
| 55 | + | |
| 56 | + const rect = sdkContainer.getBoundingClientRect(); | |
| 57 | + if (rect.width === 0 || rect.height === 0) { | |
| 58 | + setTimeout(tryInitialize, 100); | |
| 59 | + return; | |
| 60 | + } | |
| 61 | + | |
| 62 | + const lat = parseFloat(sdkContainer.dataset.localLogicLat); | |
| 63 | + const lng = parseFloat(sdkContainer.dataset.localLogicLng); | |
| 64 | + | |
| 65 | + const ll = LLSDKsJS("420d1d42c48e9186122576db04e678af.41a932d2-2a53-461a-b85f-b5dd90355bce", globalOptions); | |
| 66 | + | |
| 67 | + const sdkOptions = { | |
| 68 | + lat: lat, | |
| 69 | + lng: lng, | |
| 70 | + marker: { | |
| 71 | + lat: lat, | |
| 72 | + lng: lng | |
| 73 | + }, | |
| 74 | + mapProvider: { | |
| 75 | + name: "google", | |
| 76 | + key: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q" | |
| 77 | + }, | |
| 78 | + scoresMenu: { | |
| 79 | + categories: { | |
| 80 | + transport: { | |
| 81 | + hide: JSON.parse(sdkContainer.dataset.localLogicTransport || 'false'), | |
| 82 | + scores: { | |
| 83 | + pedestrian_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportPedestrianFriendly || 'false') }, | |
| 84 | + cycling_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCyclingFriendly || 'false') }, | |
| 85 | + transit_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportTransitFriendly || 'false') }, | |
| 86 | + car_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCarFriendly || 'false') } | |
| 87 | + } | |
| 88 | + }, | |
| 89 | + education: { | |
| 90 | + hide: JSON.parse(sdkContainer.dataset.localLogicEducation || 'false'), | |
| 91 | + scores: { | |
| 92 | + daycares: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationDaycares || 'false') }, | |
| 93 | + primary_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationPrimarySchools || 'false') }, | |
| 94 | + high_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationHighSchools || 'false') } | |
| 95 | + } | |
| 96 | + }, | |
| 97 | + amenities: { | |
| 98 | + hide: JSON.parse(sdkContainer.dataset.localLogicAmenities || 'false'), | |
| 99 | + scores: { | |
| 100 | + shopping: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesShopping || 'false') }, | |
| 101 | + groceries: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesGroceries || 'false') }, | |
| 102 | + restaurants: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesRestaurants || 'false') }, | |
| 103 | + cafes: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesCafes || 'false') } | |
| 104 | + } | |
| 105 | + }, | |
| 106 | + character: { | |
| 107 | + hide: JSON.parse(sdkContainer.dataset.localLogicCharacter || 'false'), | |
| 108 | + scores: { | |
| 109 | + nightlife: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterNightlife || 'false') }, | |
| 110 | + vibrant: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterVibrant || 'false') }, | |
| 111 | + historic: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterHistoric || 'false') }, | |
| 112 | + quiet: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterQuiet || 'false') } | |
| 113 | + } | |
| 114 | + }, | |
| 115 | + nature: { | |
| 116 | + hide: JSON.parse(sdkContainer.dataset.localLogicNature || 'false'), | |
| 117 | + scores: { | |
| 118 | + parks: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureParks || 'false') }, | |
| 119 | + greenery: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureGreenery || 'false') } | |
| 120 | + } | |
| 121 | + }, | |
| 122 | + wellness: { hide: JSON.parse(sdkContainer.dataset.localLogicWellness || 'false') }, | |
| 123 | + health: { hide: JSON.parse(sdkContainer.dataset.localLogicHealth || 'false') } | |
| 124 | + } | |
| 125 | + } | |
| 126 | + }; | |
| 127 | + | |
| 128 | + ll.create("local-content", sdkContainer, sdkOptions); | |
| 129 | + } | |
| 130 | + | |
| 131 | + document.getElementById('locallogic-sdk').addEventListener('load', function() { | |
| 132 | + sdkLoaded = true; | |
| 133 | + tryInitialize(); | |
| 134 | + }); | |
| 135 | + | |
| 136 | + if (document.readyState === 'loading') { | |
| 137 | + document.addEventListener('DOMContentLoaded', function() { | |
| 138 | + domReady = true; | |
| 139 | + tryInitialize(); | |
| 140 | + }); | |
| 141 | + } else { | |
| 142 | + domReady = true; | |
| 143 | + tryInitialize(); | |
| 144 | + } | |
| 145 | + })(); | |
| 146 | +</script> | |
| 147 | + | |
| 148 | + <script async src="https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="f89f0a00-9a89-4d45-9a32-8a86321619f9"></script> | |
| 149 | + <script type="text/javascript" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle"> | |
| 150 | + function OptanonWrapper() {} | |
| 151 | + </script> | |
| 152 | + | |
| 153 | + <link rel="icon" type="image/png" href="https://logisco.com/theme/images/favicon_logisco-57x57.png" sizes="57x57" /> | |
| 154 | + | |
| 155 | + <!-- TODO this is blocking.... revert to old script --> | |
| 156 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /> <script nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle"> | |
| 157 | + window.Cheetah = { | |
| 158 | + locale: 'fr', | |
| 159 | + themeDir: "theme", | |
| 160 | + gMapKey: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q", | |
| 161 | + isMobile: false, | |
| 162 | + chatbotBaseUrl: "https:\/\/chatbot-api.logisco.com\/v1", | |
| 163 | + form: { | |
| 164 | + maxFileSize: parseInt("4"), | |
| 165 | + maxFileCount: parseInt("5"), | |
| 166 | + fileExtensions: ["jpg","jpeg","png","docx","doc","pdf","txt"] }, | |
| 167 | + formSecurity: { | |
| 168 | + default: 'turnstile', | |
| 169 | + isDisabled: false, | |
| 170 | + config: {"fallback":["turnstile","captcha"],"captcha":{"key":""},"turnstile":{"key":"0x4AAAAAAAc7m33H9T6pSzmR"}} }, | |
| 171 | + reservation: { | |
| 172 | + locationUrl: "https:\/\/logisco.com\/fr\/appartements-a-louer" } | |
| 173 | + } | |
| 174 | + </script> | |
| 175 | + | |
| 176 | + | |
| 177 | + <noscript> | |
| 178 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /> </noscript> | |
| 179 | + <style nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle"> .id_792b9208d92dac83ff664c5a7e90c11d49f92839 { width: 100%; } @media (max-width: 750px) { .id_792b9208d92dac83ff664c5a7e90c11d49f92839 { width: 100%; } } .id_c61b31b08e1f719cc4eb2338c0962784d64712e5 { width: 100%; } @media (max-width: 750px) { .id_c61b31b08e1f719cc4eb2338c0962784d64712e5 { width: 100%; } } .id_c61b31b08e1f719cc4eb2338c0962784d64712e5 { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_c61b31b08e1f719cc4eb2338c0962784d64712e5 { grid-template-columns: 1fr; } } .id_fdc3b9f976412e1c388fcbcd6f3b49a3e0211270 { width: 100%; } @media (max-width: 750px) { .id_fdc3b9f976412e1c388fcbcd6f3b49a3e0211270 { width: 100%; } } .id_fdc3b9f976412e1c388fcbcd6f3b49a3e0211270 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_fdc3b9f976412e1c388fcbcd6f3b49a3e0211270 { grid-template-columns: 1fr; } } .id_ae38e00ed8b36d226d34abefcace63fc5c9aa958 { width: 100%; } @media (max-width: 750px) { .id_ae38e00ed8b36d226d34abefcace63fc5c9aa958 { width: 100%; } } .id_13ee8fc06d98e2fd4370b3403aaf500667383712 { width: 100%; } @media (max-width: 750px) { .id_13ee8fc06d98e2fd4370b3403aaf500667383712 { width: 100%; } } .id_aef8dbadaaf11196043c4581c96844ff4a6d119a { width: 100%; } @media (max-width: 750px) { .id_aef8dbadaaf11196043c4581c96844ff4a6d119a { width: 100%; } } .id_5bb4e5ac0c69ada613fc1dd05f1af36143084e87 { width: 100%; } @media (max-width: 750px) { .id_5bb4e5ac0c69ada613fc1dd05f1af36143084e87 { width: 100%; } } .id_573b7d785203afb7099dc8d2eedffcb6134345aa { width: 75%; } @media (max-width: 750px) { .id_573b7d785203afb7099dc8d2eedffcb6134345aa { width: 90%; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr; } } .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } @media (max-width: 750px) { .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } } .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } @media (max-width: 750px) { .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } } .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } @media (max-width: 750px) { .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } } .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } @media (max-width: 750px) { .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr; } } .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } @media (max-width: 750px) { .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } } .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 100%; } @media (max-width: 750px) { .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 80%; } } </style> | |
| 180 | + <!-- SEO --> | |
| 181 | + <title>Place Jean-Juneau • Des appartements à louer à Saint-Augustin</title> | |
| 182 | +<meta name="description" content="Découvrez Place Jean-Juneau: un immeuble locatif tranquille construit en 2007 offrant des appartements 3 ½ et 4 ½ et une insonorisation supérieure en raison des planchers en béton."> | |
| 183 | +<meta property="og:title" content="Place Jean-Juneau • Des appartements à louer à Saint-Augustin"> | |
| 184 | +<meta property="og:url" content="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures/place-jean-juneau"> | |
| 185 | + <meta property="og:image" content="https://logisco.com/static/vb/545-1200/place-jean-juneau-des-appartements-a-louer-a-saint-augustin.webp"> | |
| 186 | +<meta property="og:description" content="Découvrez Place Jean-Juneau: un immeuble locatif tranquille construit en 2007 offrant des appartements 3 ½ et 4 ½ et une insonorisation supérieure en raison des planchers en béton."> | |
| 187 | + | |
| 188 | +<meta id="gtm-page-info" data-gtm-page-type="Projet" data-gtm-page-name="Place Jean-Juneau" data-gtm-project-id="605" data-gtm-average-price="1395.7142857143"> | |
| 189 | + | |
| 190 | + | |
| 191 | + <link rel="canonical" href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures/place-jean-juneau"/> | |
| 192 | + | |
| 193 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures/place-jean-juneau" | |
| 194 | + hreflang="x-default"> | |
| 195 | + <link rel="alternate" href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures/place-jean-juneau" | |
| 196 | + hreflang="fr"> | |
| 197 | + <meta id="gtm-additional-page-info" data-gtm-wishlist-count="0" data-gtm-reservation-count="0" data-gtm-device_type="desktop"> | |
| 198 | + | |
| 199 | + <meta id="mobile_menu_preload" href="https://logisco.com/mobile_menu.json" /> | |
| 200 | + <!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET--> | |
| 201 | + <script type='text/javascript' nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle"> | |
| 202 | + (function(){var g=function(e,h,f,g){ | |
| 203 | + this.get=function(a){for(var a=a+"=",c=document.cookie.split(";"),b=0,e=c.length;b<e;b++){for(var d=c[b];" "==d.charAt(0);)d=d.substring(1,d.length);if(0==d.indexOf(a))return d.substring(a.length,d.length)}return null}; | |
| 204 | + this.set=function(a,c){var b="",b=new Date;b.setTime(b.getTime()+6048E5);b="; expires="+b.toGMTString();document.cookie=a+"="+c+b+"; path=/; "}; | |
| 205 | + this.check=function(){var a=this.get(f);if(a)a=a.split(":");else if(100!=e)"v"==h&&(e=Math.random()>=e/100?0:100),a=[h,e,0],this.set(f,a.join(":"));else return!0;var c=a[1];if(100==c)return!0;switch(a[0]){case "v":return!1;case "r":return c=a[2]%Math.floor(100/c),a[2]++,this.set(f,a.join(":")),!c}return!0}; | |
| 206 | + this.go=function(){if(this.check()){var a=document.createElement("script");a.type="text/javascript";a.src=g;document.body&&document.body.appendChild(a)}}; | |
| 207 | + this.start=function(){var t=this;"complete"!==document.readyState?window.addEventListener?window.addEventListener("load",function(){t.go()},!1):window.attachEvent&&window.attachEvent("onload",function(){t.go()}):t.go()};}; | |
| 208 | + try{(new g(100,"r","QSI_S_ZN_9H0SsDLTgAxOu1M","https://zn9h0ssdltgaxou1m-logisco.siteintercept.qualtrics.com/SIE/?Q_ZID=ZN_9H0SsDLTgAxOu1M")).start()}catch(i){}})(); | |
| 209 | + </script><div id='ZN_9H0SsDLTgAxOu1M'><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div> | |
| 210 | + <!--END WEBSITE FEEDBACK SNIPPET--> | |
| 211 | + | |
| 212 | + <script type="text/javascript" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle"> | |
| 213 | + !function(e,t){ | |
| 214 | + (e=t.createElement("script")).src="https://cdn.convertbox.com/convertbox/js/embed.js", | |
| 215 | + e.id="app-convertbox-script", | |
| 216 | + e.async=true, | |
| 217 | + e.dataset.uuid="a2c68abb-6a6e-496a-a1ca-455b6413a4c4", | |
| 218 | + document.getElementsByTagName("head")[0].appendChild(e) | |
| 219 | + }(window,document); | |
| 220 | + </script> | |
| 221 | +</head> | |
| 222 | +<body class="logisco-project hide-units alertTop-on "> | |
| 223 | + | |
| 224 | +<noscript> | |
| 225 | + <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PR75X6VZ" height="0" width="0" | |
| 226 | + style="display:none; visibility:hidden"></iframe> | |
| 227 | + </noscript> | |
| 228 | + | |
| 229 | +<div id="app"> | |
| 230 | + | |
| 231 | + <header class="mainHeader not_searchable" data-gtm-creative-slot="entete"> | |
| 232 | + | |
| 233 | + <div id="alertTop--650b259e98957" class="alertTop alertTop--main js-promotion-viewed" data-gtm-creative-slot="alertTop" data-gtm-creative-name="AlertTop" data-gtm-promotion-name="Nouveau site web - Centre d'aide"> | |
| 234 | +<div class="alertTop-container"> | |
| 235 | + <p class="alertTop-content alertTop-text--desktop">Trouvez votre prochain appartement à Québec et Lévis où <i><strong>vous </strong></i>serez bien chez vous– <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 236 | + <p class="alertTop-content alertTop-text--mobile">Trouvez votre prochain appartement à Québec et Lévis – <a href="https://logisco.com/fr/appartements-a-louer"><strong>Voir nos disponibilités</strong></a> 🔑</p> | |
| 237 | + </div> | |
| 238 | +<i class="alertTop-close js-alertTop-close icon-cms-close"></i> | |
| 239 | +</div> | |
| 240 | + | |
| 241 | +<div class="alertTop-placeholder"></div> | |
| 242 | + | |
| 243 | + <div class="mainHeader-bg"></div> | |
| 244 | + <nav class="mainHeader-nav"> | |
| 245 | + <div class="mainMenu"> | |
| 246 | + <sliding-panel class="topMenu" context="topMenu"> | |
| 247 | + <template #button> | |
| 248 | + <button class="topMenu-button" data-gtm-event="clicEntete-menuHamburger"> | |
| 249 | + <i class="topMenu-toggle icon-cms-burger" | |
| 250 | + aria-label="Ouvrir le menu secondaire"> | |
| 251 | + </i> | |
| 252 | + </button> | |
| 253 | + </template> | |
| 254 | + <template #close> | |
| 255 | + <button class="hamburger-close" type="button" aria-label="Fermer le menu secondaire"> | |
| 256 | + <i class="icon-cms-close"></i> | |
| 257 | + </button> | |
| 258 | + <img class="mobileMenu-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 259 | + </template> | |
| 260 | + <template #content> | |
| 261 | + <ul class="slidingPanel-utilsMenuList slidingPanel-level-0"> | |
| 262 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 263 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 264 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 265 | + data-gtm-event="clicMenu" | |
| 266 | + data-gtm-label="Appartements" | |
| 267 | + > | |
| 268 | + Appartements | |
| 269 | + </a> | |
| 270 | + </li> | |
| 271 | + | |
| 272 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 273 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 274 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 275 | + data-gtm-event="clicMenu" | |
| 276 | + data-gtm-label="Espaces commerciaux" | |
| 277 | + > | |
| 278 | + Espaces commerciaux | |
| 279 | + </a> | |
| 280 | + </li> | |
| 281 | + | |
| 282 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 283 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 284 | + href="https://logisco.com/fr/futurs-projets-immobiliers" | |
| 285 | + data-gtm-event="clicMenu" | |
| 286 | + data-gtm-label="Futurs projets immobiliers" | |
| 287 | + > | |
| 288 | + Futurs projets immobiliers | |
| 289 | + </a> | |
| 290 | + </li> | |
| 291 | + | |
| 292 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 "> | |
| 293 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 294 | + href="https://logisco.com/fr/hotels" | |
| 295 | + data-gtm-event="clicMenu" | |
| 296 | + data-gtm-label="Hôtels" | |
| 297 | + > | |
| 298 | + Hôtels | |
| 299 | + </a> | |
| 300 | + </li> | |
| 301 | + | |
| 302 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 303 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 304 | + href="https://logisco.com/fr/emplois" | |
| 305 | + data-gtm-event="clicMenu" | |
| 306 | + data-gtm-label="Emplois" | |
| 307 | + > | |
| 308 | + Emplois | |
| 309 | + </a> | |
| 310 | + </li> | |
| 311 | + | |
| 312 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 313 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 314 | + href="https://logisco.com/fr/nouvel-arrivant" | |
| 315 | + data-gtm-event="clicMenu" | |
| 316 | + data-gtm-label="Nouvel arrivant" | |
| 317 | + > | |
| 318 | + Nouvel arrivant | |
| 319 | + </a> | |
| 320 | + </li> | |
| 321 | + | |
| 322 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 323 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 324 | + href="https://logisco.com/fr/a-propos" | |
| 325 | + data-gtm-event="clicMenu" | |
| 326 | + data-gtm-label="Qui est LOGISCO" | |
| 327 | + > | |
| 328 | + Qui est LOGISCO | |
| 329 | + </a> | |
| 330 | + </li> | |
| 331 | + | |
| 332 | + <li class="slidingPanel-topMenuItem slidingPanel-topMenuItem-level-0 secondary-pages "> | |
| 333 | + <a class="slidingPanel-topMenuElement slidingPanel-topMenuElement-level-0" | |
| 334 | + href="https://logisco.com/fr/blogue" | |
| 335 | + data-gtm-event="clicMenu" | |
| 336 | + data-gtm-label="Blogue" | |
| 337 | + > | |
| 338 | + Blogue | |
| 339 | + </a> | |
| 340 | + </li> | |
| 341 | + | |
| 342 | + </ul> | |
| 343 | + </template> | |
| 344 | + <template #footer> | |
| 345 | + <div class="slidingPanel-c2a"> | |
| 346 | + <a | |
| 347 | + data-gtm-event="clickButton" data-gtm-id="centre-daide" | |
| 348 | + | |
| 349 | + href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="c2a c2a-text c2a--tertiary" | |
| 350 | + aria-label="Centre d'aide" | |
| 351 | +> | |
| 352 | + <span class="c2a-name"> | |
| 353 | + Centre d’aide | |
| 354 | + </span> | |
| 355 | + <i class="icon-cms-arrow-right"></i> | |
| 356 | + </a> | |
| 357 | + | |
| 358 | + </div> | |
| 359 | + <div class="slidingPanel-c2a"> | |
| 360 | + <a | |
| 361 | + data-gtm-event="clickButton" data-gtm-id="nous-joindre" | |
| 362 | + | |
| 363 | + href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="c2a c2a-text c2a--tertiary" | |
| 364 | + aria-label="Nous joindre" | |
| 365 | +> | |
| 366 | + <span class="c2a-name"> | |
| 367 | + Nous joindre | |
| 368 | + </span> | |
| 369 | + <i class="icon-cms-arrow-right"></i> | |
| 370 | + </a> | |
| 371 | + | |
| 372 | + </div> | |
| 373 | + </template> | |
| 374 | + </sliding-panel> | |
| 375 | + <div class="mainHeader-brand"> | |
| 376 | + <a class="mainHeader-logoLink" href="https://logisco.com/fr"> | |
| 377 | + <img class="mainHeader-logo" src="https://logisco.com/theme/images/logo.svg" height="49" width="193" alt="Logisco"> | |
| 378 | +<img class="mainHeader-logo mainHeader-logo--white" src="https://logisco.com/theme/images/logo-white.svg" height="49" width="193" alt="Logisco"> </a> | |
| 379 | + </div> | |
| 380 | + <ul class="mainMenu-list"> | |
| 381 | + | |
| 382 | +<li class="mainMenu-item "> | |
| 383 | + <div class="mainMenu-element"> | |
| 384 | + <a class="mainMenu-elementLink" | |
| 385 | + href="https://logisco.com/fr/appartements-a-louer" | |
| 386 | + data-gtm-event="clicMenu" | |
| 387 | + data-gtm-label="Appartements" | |
| 388 | + > | |
| 389 | + Appartements | |
| 390 | + </a> | |
| 391 | + </div> | |
| 392 | + </li> | |
| 393 | + | |
| 394 | + | |
| 395 | +<li class="mainMenu-item "> | |
| 396 | + <div class="mainMenu-element"> | |
| 397 | + <a class="mainMenu-elementLink" | |
| 398 | + href="https://logisco.com/fr/espaces-commerciaux-a-louer" | |
| 399 | + data-gtm-event="clicMenu" | |
| 400 | + data-gtm-label="Espaces commerciaux" | |
| 401 | + > | |
| 402 | + Espaces commerciaux | |
| 403 | + </a> | |
| 404 | + </div> | |
| 405 | + </li> | |
| 406 | + | |
| 407 | + | |
| 408 | +<li class="mainMenu-item "> | |
| 409 | + <div class="mainMenu-element"> | |
| 410 | + <a class="mainMenu-elementLink" | |
| 411 | + href="https://logisco.com/fr/hotels" | |
| 412 | + data-gtm-event="clicMenu" | |
| 413 | + data-gtm-label="Hôtels" | |
| 414 | + > | |
| 415 | + Hôtels | |
| 416 | + </a> | |
| 417 | + </div> | |
| 418 | + </li> | |
| 419 | + | |
| 420 | + | |
| 421 | +<li class="mainMenu-item "> | |
| 422 | + <div class="mainMenu-element"> | |
| 423 | + <a class="mainMenu-elementLink" | |
| 424 | + href="https://logisco.com/fr/centre-daide" | |
| 425 | + data-gtm-event="clicMenu" | |
| 426 | + data-gtm-label="Centre d'aide" | |
| 427 | + > | |
| 428 | + Centre d'aide | |
| 429 | + </a> | |
| 430 | + </div> | |
| 431 | + </li> | |
| 432 | + | |
| 433 | + </ul> | |
| 434 | + <div class="mainHeader-links"> | |
| 435 | + <ul class="mainHeader-linksList"> | |
| 436 | + <li class="mainHeader-listItem"> | |
| 437 | + <a id="mainHeader-contact" | |
| 438 | + href="https://logisco.com/fr/nous-joindre" | |
| 439 | + class="icon-logisco-phone" | |
| 440 | + type="button" | |
| 441 | + aria-label="vanilla::header.phone" | |
| 442 | + data-gtm-event="clicEntete-appelLogisco" | |
| 443 | + data-contact-cp="https://logisco.com/fr/nous-joindre" | |
| 444 | + ></a> | |
| 445 | + </li> | |
| 446 | + <li class="mainHeader-listItem"> | |
| 447 | + <wishlist-redirect-icon | |
| 448 | + :href-url="'https://logisco.com/fr/favoris'" | |
| 449 | + :default-count="0" | |
| 450 | + label="Vers page 'Favoris'" | |
| 451 | + > | |
| 452 | + </wishlist-redirect-icon> | |
| 453 | + </li> | |
| 454 | + <li class="mainHeader-listItem"> | |
| 455 | + <reservation-panel | |
| 456 | + :default-count="0" | |
| 457 | + label="Vers le 'Planificateur de visites'" | |
| 458 | + > | |
| 459 | + </reservation-panel> | |
| 460 | + </li> | |
| 461 | + </ul> | |
| 462 | +</div> | |
| 463 | +</div> | |
| 464 | + </nav> | |
| 465 | + <div class="mainHeader-shadow"></div> | |
| 466 | +</header> | |
| 467 | + | |
| 468 | +<div class="alertTop-placeholder"></div> | |
| 469 | +<div class="mainHeader-placeholder"></div> | |
| 470 | + | |
| 471 | + <input id="currentId" type="hidden" value="99c9a79f-cf38-4720-81de-c254b62da460"> | |
| 472 | + <input id="ancestors" type="hidden" value="["99c9a187-9f29-4895-a92e-5d01818e748d","990a9815-0c2d-41ed-be1a-0aea582d0ccf","9a858ae0-df43-49c9-a33e-1387e7386ea4","99c9a79f-cf38-4720-81de-c254b62da460"]"> | |
| 473 | + <nav class="left-nav"> | |
| 474 | + </nav> | |
| 475 | + | |
| 476 | + <main id="main" class="vb js-vb" data-gtm-creative-slot="mainContent"> | |
| 477 | + <section | |
| 478 | + class="section section--fixed section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-left--1x padding-right--1x paddingMobile-- id_9a4ad06fa7678c27586c4bc7d35a6c81d3e53e23" | |
| 479 | + > | |
| 480 | + | |
| 481 | +<div class="id_792b9208d92dac83ff664c5a7e90c11d49f92839 layout-full padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 482 | + <div class="cc-anchors" data-gtm-creative-slot="stickyCatfish"> | |
| 483 | + <img class="cc-anchors-image" | |
| 484 | + width="475" height="177" src="https://logisco.com/static/vb/5890-475/place-jean-juneau-appartements.webp" | |
| 485 | + alt="place jean juneau appartements"> | |
| 486 | + <select-dropdown-component default-dropdown-active="Le projet"> | |
| 487 | + <template #default="{ instance: dropDownInstance }"> | |
| 488 | + <div class="cc-anchor-list"> | |
| 489 | + <select-dropdown-item-component @item-changed="dropDownInstance.changeActive"> | |
| 490 | + <template #default="{ instance: dropDownInstance }"> | |
| 491 | + <a href="#survol" class="cc-anchor-title" @click="dropDownInstance.selectItem">Survol</a> | |
| 492 | + </template> | |
| 493 | +</select-dropdown-item-component> | |
| 494 | + <select-dropdown-item-component @item-changed="dropDownInstance.changeActive"> | |
| 495 | + <template #default="{ instance: dropDownInstance }"> | |
| 496 | + <a href="#plans" class="cc-anchor-title" @click="dropDownInstance.selectItem">Plans</a> | |
| 497 | + </template> | |
| 498 | +</select-dropdown-item-component> | |
| 499 | + <select-dropdown-item-component @item-changed="dropDownInstance.changeActive"> | |
| 500 | + <template #default="{ instance: dropDownInstance }"> | |
| 501 | + <a href="#inclusions-et-services" class="cc-anchor-title" @click="dropDownInstance.selectItem">Inclusions et services</a> | |
| 502 | + </template> | |
| 503 | +</select-dropdown-item-component> | |
| 504 | + <select-dropdown-item-component @item-changed="dropDownInstance.changeActive"> | |
| 505 | + <template #default="{ instance: dropDownInstance }"> | |
| 506 | + <a href="#emplacement" class="cc-anchor-title" @click="dropDownInstance.selectItem">Localisation</a> | |
| 507 | + </template> | |
| 508 | +</select-dropdown-item-component> | |
| 509 | + </div> | |
| 510 | + </template> | |
| 511 | +</select-dropdown-component> | |
| 512 | + <div class="c2aBlock"> | |
| 513 | + <modal-button class-names="c2a c2a-text c2a--main js-open-modal " | |
| 514 | + aria-label="Joindre un agent de location" | |
| 515 | + modal-id="" | |
| 516 | + :data-properties="{ 'data-gtm-event': 'clicJoindreAgentLocation' }"> | |
| 517 | + <span class="c2a-name"> | |
| 518 | + Joindre un agent de location | |
| 519 | + </span> | |
| 520 | +</modal-button> | |
| 521 | + | |
| 522 | + <a href="#unites-disponibles" | |
| 523 | + class="c2a c2a-text c2a--secondary c2a-seeDispo" | |
| 524 | + data-gtm-event="pageProjet-voirDisponibilite" | |
| 525 | + aria-label="Voir les disponibilités"> | |
| 526 | + <span class="c2a-name"> | |
| 527 | + Voir les disponibilités | |
| 528 | + </span> | |
| 529 | +</a> | |
| 530 | + | |
| 531 | + </div> | |
| 532 | + </div> | |
| 533 | + | |
| 534 | + </div> | |
| 535 | + | |
| 536 | + </section> | |
| 537 | + | |
| 538 | + <section class="projectHeader projectHeader--light" style="background-color: rgba(19, 24, 52, 1)"> | |
| 539 | + <div class="projectHeader-textContainer"> | |
| 540 | + <div class="projectHeader-breadCrumb"> | |
| 541 | + <div class="breadcrumb-list"> | |
| 542 | + <a class="breadcrumb-item" href="https://logisco.com/fr">Accueil</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer">Appartements à louer</a><a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures">Saint-Augustin-de-Desmaures</a> <a class="breadcrumb-item" href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures/place-jean-juneau">Place Jean-Juneau</a> | |
| 543 | + </div> | |
| 544 | + </div> | |
| 545 | + <div class="projectHeader-text"> | |
| 546 | + <h1 class="projectHeader-label">Place Jean-Juneau • Appartements à louer</h1> | |
| 547 | + <p class="projectHeader-name">Pour un style de vie calme à Saint-Augustin-de-Desmaures</p> | |
| 548 | + <a class="projectHeader-link" | |
| 549 | + href="https://www.google.com/maps?q=111+Rue+Jean-Juneau%2C+Saint-Augustin-de-Desmaures%2C+Qu%C3%A9bec%2C+G3A+0B2" | |
| 550 | + target="_blank" | |
| 551 | + data-gtm-event="pageProjet-lienAdresse" | |
| 552 | + > | |
| 553 | + <p class="projectHeader-address">111 Rue Jean-Juneau, Saint-Augustin-de-Desmaures, Québec, G3A 0B2</p> | |
| 554 | + </a> | |
| 555 | + </div> | |
| 556 | + </div> | |
| 557 | + <cc-fullscreen-gallery class="projectGallery" project-color="rgba(19, 24, 52, 1)" theme="cc-fullscreenGallery--light"> | |
| 558 | + <template #base> | |
| 559 | + <div class="cc-gallery-baseImageTags"> | |
| 560 | + <span class="cc-gallery-tag"> | |
| 561 | + <i class="icon-logisco-image"></i> | |
| 562 | + <span>1/10</span> | |
| 563 | + </span> | |
| 564 | + </div> | |
| 565 | + | |
| 566 | + <div class="cc-gallery-baseImageOverlay"></div> | |
| 567 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/545-1800/vue-exterieure-de-limmeuble.webp" | |
| 568 | + alt="Vue extérieure de l’immeuble"> | |
| 569 | + </template> | |
| 570 | + <template #images> | |
| 571 | + <cc-fullscreen-gallery-slide> | |
| 572 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/545-1800/vue-exterieure-de-limmeuble.webp" | |
| 573 | + alt="Vue extérieure de l’immeuble"> | |
| 574 | + <template #description> | |
| 575 | + Vue extérieure de l’immeuble | |
| 576 | + </template> | |
| 577 | + </cc-fullscreen-gallery-slide> | |
| 578 | + <cc-fullscreen-gallery-slide> | |
| 579 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/6478-1800/vue-exterieure-de-limmeuble.webp" | |
| 580 | + alt="Vue extérieure de l’immeuble"> | |
| 581 | + <template #description> | |
| 582 | + Vue extérieure de l’immeuble | |
| 583 | + </template> | |
| 584 | + </cc-fullscreen-gallery-slide> | |
| 585 | + <cc-fullscreen-gallery-slide> | |
| 586 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/549-1800/cuisine-comptoir-de-stratifie.webp" | |
| 587 | + alt="Cuisine - Comptoir de stratifié"> | |
| 588 | + <template #description> | |
| 589 | + Cuisine - Comptoir de stratifié | |
| 590 | + </template> | |
| 591 | + </cc-fullscreen-gallery-slide> | |
| 592 | + <cc-fullscreen-gallery-slide> | |
| 593 | + <img width="1800" height="981" src="https://logisco.com/static/vb/554-1800/aire-de-vie.webp" | |
| 594 | + alt="Aire de vie"> | |
| 595 | + <template #description> | |
| 596 | + Aire de vie | |
| 597 | + </template> | |
| 598 | + </cc-fullscreen-gallery-slide> | |
| 599 | + <cc-fullscreen-gallery-slide> | |
| 600 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/550-1800/chambre-a-coucher.webp" | |
| 601 | + alt="Chambre à coucher"> | |
| 602 | + <template #description> | |
| 603 | + Chambre à coucher | |
| 604 | + </template> | |
| 605 | + </cc-fullscreen-gallery-slide> | |
| 606 | + <cc-fullscreen-gallery-slide> | |
| 607 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/551-1800/chambre-a-coucher.webp" | |
| 608 | + alt="Chambre à coucher"> | |
| 609 | + <template #description> | |
| 610 | + Chambre à coucher | |
| 611 | + </template> | |
| 612 | + </cc-fullscreen-gallery-slide> | |
| 613 | + <cc-fullscreen-gallery-slide> | |
| 614 | + <img width="1800" height="1200" src="https://logisco.com/static/vb/552-1800/chambre-a-coucher.webp" | |
| 615 | + alt="Chambre à coucher"> | |
| 616 | + <template #description> | |
| 617 | + Chambre à coucher | |
| 618 | + </template> | |
| 619 | + </cc-fullscreen-gallery-slide> | |
| 620 | + <cc-fullscreen-gallery-slide> | |
| 621 | + <img width="1800" height="1199" src="https://logisco.com/static/vb/553-1800/salle-de-bain-bain-douche.webp" | |
| 622 | + alt="Salle de bain - Bain-douche"> | |
| 623 | + <template #description> | |
| 624 | + Salle de bain - Bain-douche | |
| 625 | + </template> | |
| 626 | + </cc-fullscreen-gallery-slide> | |
| 627 | + <cc-fullscreen-gallery-slide> | |
| 628 | + <img width="1800" height="1079" src="https://logisco.com/static/vb/548-1800/piscine-exterieure-chauffee.webp" | |
| 629 | + alt="Piscine extérieure chauffée"> | |
| 630 | + <template #description> | |
| 631 | + Piscine extérieure chauffée | |
| 632 | + </template> | |
| 633 | + </cc-fullscreen-gallery-slide> | |
| 634 | + <cc-fullscreen-gallery-slide> | |
| 635 | + <img width="1800" height="1073" src="https://logisco.com/static/vb/6978-1800/2280x1360-placejeanjuneau-header1-140371166210417.webp" | |
| 636 | + alt=""> | |
| 637 | + <template #description> | |
| 638 | + | |
| 639 | + </template> | |
| 640 | + </cc-fullscreen-gallery-slide> | |
| 641 | + </template> | |
| 642 | + </cc-fullscreen-gallery> | |
| 643 | + </section> | |
| 644 | + | |
| 645 | + | |
| 646 | + <section id="caracteristiques" | |
| 647 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-bottom--1x padding-left--2x padding-right--2x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x id_4aad356e6c5109c31c243d46f22694e9e7207d96" | |
| 648 | + > | |
| 649 | + | |
| 650 | + | |
| 651 | +<div class="id_c61b31b08e1f719cc4eb2338c0962784d64712e5 layout-columns modifier-h--center padding--0x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 652 | + | |
| 653 | + <div class="blockText blockText-style--project " > | |
| 654 | + <h2 class="blockText-surtitle">Unités disponibles à partir de</h2> | |
| 655 | + <h2 class="blockText-title">COMPLET</h2> | |
| 656 | + </div> | |
| 657 | + | |
| 658 | + <div class="blockText blockText-style--project " > | |
| 659 | + <h2 class="blockText-surtitle">Grandeurs offertes</h2> | |
| 660 | + <h2 class="blockText-title">4 1/2 5 1/2</h2> | |
| 661 | + </div> | |
| 662 | + | |
| 663 | + | |
| 664 | + </div> | |
| 665 | + | |
| 666 | + </section> | |
| 667 | + | |
| 668 | + <section id="survol" | |
| 669 | + class="section section-background gap--1x modifier-flex modifier-flex--col modifier-flex--center padding-bottom--1x padding-left--2x padding-right--2x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x id_e1460ce73d14371f288c6b677e75aed645042d74" | |
| 670 | + > | |
| 671 | + | |
| 672 | + | |
| 673 | +<div class="id_fdc3b9f976412e1c388fcbcd6f3b49a3e0211270 layout-columns modifier-h--start padding--0x paddingMobile-top--0x paddingMobile-bottom--1x paddingMobile-left--0x paddingMobile-right--0x layout-rowGap--0x layout-columnsGap--1x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 674 | + <div class="blockText " > | |
| 675 | + <h2 class="blockText-surtitle">Survol du projet</h2> | |
| 676 | + <p class="blockText-title">Un lieu unique où la qualité de vie prend tout son sens</p> | |
| 677 | + </div> | |
| 678 | + | |
| 679 | + <div class="blockText " > | |
| 680 | + <p class="blockText-description">La Place Jean-Juneau, est un immeuble locatif résidentiel offrant des appartements de grandeurs 4½ et 5½ à Saint-Augustin-de-Desmaures. Ces appartements se trouvent dans un immeuble tranquille qui offre une insonorisation supérieure en raison des solides planchers de béton. De type condo, ces logements possèdent tous des portes d’entrée individuelles, créant ainsi une atmosphère exclusive et intime. La luminosité est au rendez-vous dans tous les appartements et les locataires du premier étage ont l’avantage d’être au niveau jardin. Les dimensions généreuses de chaque unité offrent amplement d’espace pour la vie quotidienne, tandis que les espaces de rangement spacieux répondent à tous les besoins de stockage. Chaque unité inclut un stationnement extérieur et des cases de stationnement sont également à la disposition des visiteurs. Une piscine extérieure chauffée est mise à la disposition des locataires durant la période estivale.</p> | |
| 681 | + <span class="c2aBlock"> | |
| 682 | + | |
| 683 | + </span> | |
| 684 | + </div> | |
| 685 | + | |
| 686 | + </div> | |
| 687 | + | |
| 688 | + | |
| 689 | +<div class="id_ae38e00ed8b36d226d34abefcace63fc5c9aa958 layout-full padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 690 | + <div id="caracteristiques" class="blockNumbers"> | |
| 691 | + <div class="blockNumbers-element"> | |
| 692 | + <p class="blockNumbers-elementNumber">1</p> | |
| 693 | + <p class="blockNumbers-elementText">Nombre d’immeubles</p> | |
| 694 | + </div> | |
| 695 | + <div class="blockNumbers-element"> | |
| 696 | + <p class="blockNumbers-elementNumber">2007</p> | |
| 697 | + <p class="blockNumbers-elementText">Année de construction</p> | |
| 698 | + </div> | |
| 699 | + <div class="blockNumbers-element"> | |
| 700 | + <p class="blockNumbers-elementNumber">42</p> | |
| 701 | + <p class="blockNumbers-elementText">Nombre d’unités</p> | |
| 702 | + </div> | |
| 703 | + <div class="blockNumbers-element"> | |
| 704 | + <p class="blockNumbers-elementNumber">3</p> | |
| 705 | + <p class="blockNumbers-elementText">Nombre d’étages</p> | |
| 706 | + </div> | |
| 707 | + </div> | |
| 708 | + | |
| 709 | + </div> | |
| 710 | + | |
| 711 | + </section> | |
| 712 | + | |
| 713 | + | |
| 714 | + | |
| 715 | + <section id="plans" class="project-plans"> | |
| 716 | + <plan-view | |
| 717 | + project-type="RESIDENTIAL" | |
| 718 | + :project="[{"Available":true,"SourceId":166,"Code":"825","Address":{"NumberStreet":"111 Rue Jean-Juneau","City":"Saint-Augustin-de-Desmaures","Province":"Qu\u00e9bec","PostalCode":"G3A 0B2","Neighborhood":null},"file_id":"546","plan_size":{"width":2000,"height":1850},"Floors":{"1":{"level_name":"\u00c9tage #1","level":1,"units":{"114":{"page_id":"99c9cec9-fcd3-4a2e-9c06-2863ba44d11c","available":false,"unit_number":"114","shape":"rect","coords":"120,138,332,246"},"113":{"page_id":"99c9ce54-f795-47c7-8585-5bf0ddb80f42","available":false,"unit_number":"113","shape":"rect","coords":"120,248,306,354"},"112":{"page_id":"99c9ce52-cf06-49d4-bccc-72af38a0dbca","available":false,"unit_number":"112","shape":"rect","coords":"84,356,268,462"},"111":{"page_id":"99c9ce4f-2243-4b06-88b6-73c6007d63a6","available":false,"unit_number":"111","shape":"poly","coords":"84,464,270,464,270,570,212,570,214,576,174,576,174,570,84,570"},"110":{"page_id":"99c9ce47-4bba-43a9-907a-0a360dbbffc9","available":false,"unit_number":"110","shape":"rect","coords":"308,412,416,596"},"109":{"page_id":"99c9ce45-298f-4885-ad8b-01847ed385e1","available":false,"unit_number":"109","shape":"rect","coords":"418,410,524,596"},"108":{"page_id":"99c9ce41-8914-4524-be6a-b53a8604e4d0","available":false,"unit_number":"108","shape":"rect","coords":"526,454,632,640"},"107":{"page_id":"99c9ce39-d771-44cd-aa8e-9cd9f96aeb75","available":false,"unit_number":"107","shape":"rect","coords":"634,456,740,642"},"106":{"page_id":"99c9ce37-d35d-42fd-88e7-4a4913b09d90","available":false,"unit_number":"106","shape":"rect","coords":"740,500,846,684"},"105":{"page_id":"99c9ce35-f6df-4984-a2ba-e0374af76926","available":false,"unit_number":"105","shape":"rect","coords":"848,496,954,682"},"104":{"page_id":"99c9ce2c-741a-4f4a-b3ee-77821013192d","available":false,"unit_number":"104","shape":"poly","coords":"998,498,1182,498,1184,606,1094,606,1094,612,1052,612,1052,606,996,606"},"103":{"page_id":"99c9ce29-dd37-44c5-98b8-8cb11dd4306e","available":false,"unit_number":"103","shape":"rect","coords":"998,390,1182,496"},"102":{"page_id":"99c9ce27-c80c-4f97-9c14-d11d2d6598f7","available":false,"unit_number":"102","shape":"rect","coords":"962,282,1146,388"},"101":{"page_id":"99c9cedd-7fab-4212-b819-722066903b8b","available":false,"unit_number":"101","shape":"rect","coords":"934,174,1146,282"}},"file_id":"4750","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4750-800/plan-605-825-01-plans-etage-place-jean-juneau-logisco.webp"},"2":{"level_name":"\u00c9tage #2","level":2,"units":{"214":{"page_id":"99c9cee0-6e1c-4067-8f21-3ab808094009","available":false,"unit_number":"214","shape":"rect","coords":"120,138,332,246"},"213":{"page_id":"99c9ceb9-4a49-479b-9c51-e77c3943a391","available":false,"unit_number":"213","shape":"rect","coords":"120,248,306,354"},"212":{"page_id":"99c9ceb0-99e5-47b6-90c4-ba86da2d590f","available":false,"unit_number":"212","shape":"rect","coords":"84,356,268,462"},"211":{"page_id":"99c9ceae-6442-42ad-8600-111117c3c398","available":false,"unit_number":"211","shape":"poly","coords":"84,464,270,464,270,570,212,570,214,576,174,576,174,570,84,570"},"210":{"page_id":"99c9cea9-5958-4778-97a3-63d6d98a6dc4","available":false,"unit_number":"210","shape":"rect","coords":"308,412,416,596"},"209":{"page_id":"99c9cea2-bea1-4696-8556-bdfa195136c9","available":false,"unit_number":"209","shape":"rect","coords":"418,410,524,596"},"208":{"page_id":"99c9cea0-a990-4fad-b704-5fee8dd32dca","available":false,"unit_number":"208","shape":"rect","coords":"526,454,632,640"},"207":{"page_id":"99c9ce9e-91fc-4065-a2f3-13df8703c75e","available":false,"unit_number":"207","shape":"rect","coords":"634,456,740,642"},"206":{"page_id":"99c9ce96-00ab-442e-9018-ea389bc3cdd0","available":false,"unit_number":"206","shape":"rect","coords":"740,500,846,684"},"205":{"page_id":"99c9ce93-198c-42af-92c6-49063d2ab13b","available":false,"unit_number":"205","shape":"rect","coords":"848,496,954,682"},"204":{"page_id":"99c9ce8f-d650-4088-ad09-95e29986e249","available":false,"unit_number":"204","shape":"poly","coords":"998,498,1182,498,1184,606,1094,606,1094,612,1052,612,1052,606,996,606"},"203":{"page_id":"99c9ce88-d48f-43fc-9280-58d293e20115","available":false,"unit_number":"203","shape":"rect","coords":"998,390,1182,496"},"202":{"page_id":"99c9ce85-fb18-4ec0-a110-6b4f218376ed","available":false,"unit_number":"202","shape":"rect","coords":"962,282,1146,388"},"201":{"page_id":"99c9ced0-671c-4bfc-b168-c756e868ee10","available":false,"unit_number":"201","shape":"rect","coords":"934,174,1146,282"}},"file_id":"4751","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4751-800/plan-605-825-02-plans-etage-place-jean-juneau-logisco.webp"},"3":{"level_name":"\u00c9tage #3","level":3,"units":{"314":{"page_id":"99c9ceed-f634-4bde-853b-71ce4bf9fce3","available":false,"unit_number":"314","shape":"rect","coords":"120,138,332,246"},"313":{"page_id":"99c9ce60-45d5-48b3-bc4c-2d5102eb716f","available":false,"unit_number":"313","shape":"rect","coords":"120,248,306,354"},"312":{"page_id":"99c9ce5a-b28d-4007-9691-06983303718f","available":false,"unit_number":"312","shape":"rect","coords":"84,356,268,462"},"310":{"page_id":"99c9ce84-0f28-4987-9b51-7eefa23c802f","available":false,"unit_number":"310","shape":"rect","coords":"308,412,416,596"},"309":{"page_id":"99c9ce7d-c5a8-4934-ac98-b8b0e0f1e368","available":false,"unit_number":"309","shape":"rect","coords":"418,410,524,596"},"308":{"page_id":"99c9ce77-b5fc-4d52-ae7a-cfffc5783bdc","available":false,"unit_number":"308","shape":"rect","coords":"526,454,632,640"},"307":{"page_id":"99c9ce75-c699-4c33-9816-6a83017d37a2","available":false,"unit_number":"307","shape":"rect","coords":"634,456,740,642"},"306":{"page_id":"99c9ce6d-c976-47fd-9b11-25c1e54d6674","available":false,"unit_number":"306","shape":"rect","coords":"740,500,846,684"},"305":{"page_id":"99c9ce62-85ee-46f1-8c00-58c1daaa3aa2","available":false,"unit_number":"305","shape":"rect","coords":"848,496,954,682"},"303":{"page_id":"99c9cebf-7b3a-4287-8953-4a0468de38d6","available":false,"unit_number":"303","shape":"rect","coords":"998,390,1182,496"},"302":{"page_id":"99c9cebc-148b-4046-96f8-941a96bc317d","available":false,"unit_number":"302","shape":"rect","coords":"962,282,1146,388"},"301":{"page_id":"99c9cee5-1cfe-488b-ba10-ab52b8a285eb","available":false,"unit_number":"301","shape":"rect","coords":"934,174,1146,282"},"311":{"page_id":"99c9cec7-cfdc-45cf-8527-4d0d9255162d","available":false,"unit_number":"311","shape":"poly","coords":"84,570,84,462,306,462,310,570,212,570,214,576,174,576,172,572"},"304":{"page_id":"99c9ceeb-d88a-419b-aef2-afd7fd66eb1c","available":false,"unit_number":"304","shape":"poly","coords":"956,500,1182,500,1182,606,1094,606,1094,612,1054,612,1052,606,956,606"}},"file_id":"4752","plan_size":{"width":1268,"height":860},"plan_url":"https://logisco.com/static/vb/4752-800/plan-605-825-03-plans-etage-place-jean-juneau-logisco.webp"}},"areas":[{"item_id":"825","shape":"poly","coords":"624,543,625,671,595,673,594,794,556,795,556,902,588,902,588,846,839,847,839,894,1080,895,1079,943,1352,941,1351,833,1312,833,1313,710,1282,710,1283,582,1530,583,1531,823,1569,822,1570,1029,1584,1029,1597,1040,1597,1089,1586,1100,1537,1100,1526,1088,1526,1071,1472,1073,1472,1080,1414,1079,1413,1072,1321,1072,1320,1161,1068,1159,1068,1112,827,1111,828,1064,588,1066,587,1034,495,1035,495,1039,436,1041,437,1034,381,1034,381,1052,370,1063,321,1063,309,1051,311,1001,324,989,338,990,338,783,378,783,376,543","building_id":166,"available":false}],"plan_url":"https://logisco.com/static/vb/546-800/plan-605-825-plan20implantation.webp"}]" | |
| 719 | + :project-name=""Place Jean-Juneau"" | |
| 720 | + :building-id="null" | |
| 721 | + :floor="null" | |
| 722 | + ></plan-view> | |
| 723 | +</section> | |
| 724 | + | |
| 725 | + | |
| 726 | + <section id="inclusions-et-services" class="projectServices projectServices--padding"> | |
| 727 | + <div class="projectServices-container"> | |
| 728 | + <h2 class="projectServices-title"> | |
| 729 | + Services offerts | |
| 730 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 731 | + <span class="tooltip-container js-tooltipContainer"> | |
| 732 | + <span class="tooltip-subtitle">Il s'agit des services offerts aux locataires de ce projet immobilier. Notez que les services peuvent varier d'un immeuble à l'autre.</span> | |
| 733 | + </span> | |
| 734 | + </h2> | |
| 735 | + <ul class="projectServices-list"> | |
| 736 | + <h3 class="projectServices-itemContainer"> | |
| 737 | + <i class="projectServices-icon icon-logisco-service--outdoor_parking"></i> | |
| 738 | + <li class="projectServices-listItem"> | |
| 739 | + Stationnement extérieur | |
| 740 | + </li> | |
| 741 | + </h3> | |
| 742 | + <h3 class="projectServices-itemContainer"> | |
| 743 | + <i class="projectServices-icon icon-logisco-service--bike_rack"></i> | |
| 744 | + <li class="projectServices-listItem"> | |
| 745 | + Support pour vélos | |
| 746 | + </li> | |
| 747 | + </h3> | |
| 748 | + <h3 class="projectServices-itemContainer"> | |
| 749 | + <i class="projectServices-icon icon-logisco-service--guest_parking"></i> | |
| 750 | + <li class="projectServices-listItem"> | |
| 751 | + Stationnement visiteur | |
| 752 | + </li> | |
| 753 | + </h3> | |
| 754 | + </ul> | |
| 755 | + </div> | |
| 756 | + <div class="projectServices-container"> | |
| 757 | + <h2 class="projectServices-title"> | |
| 758 | + Espaces communs | |
| 759 | + | |
| 760 | + <i class="icon-logisco-information js-tooltip"></i> | |
| 761 | + <span class="tooltip-container js-tooltipContainer"> | |
| 762 | + <span class="tooltip-subtitle">Il s'agit des espaces communs accessibles à tous les locataires d'un projet immobilier, peu importe dans quel immeuble ils se trouvent.</span> | |
| 763 | + </span> | |
| 764 | + </h2> | |
| 765 | + <ul class="projectServices-list"> | |
| 766 | + <h3 class="projectServices-itemContainer"> | |
| 767 | + <i class="projectServices-icon icon-logisco-service--developed_land"></i> | |
| 768 | + <li class="projectServices-listItem"> | |
| 769 | + Terrain aménagé | |
| 770 | + </li> | |
| 771 | + </h3> | |
| 772 | + <h3 class="projectServices-itemContainer"> | |
| 773 | + <i class="projectServices-icon icon-logisco-service--unheated_outdoor_pool"></i> | |
| 774 | + <li class="projectServices-listItem"> | |
| 775 | + Piscine extérieure | |
| 776 | + </li> | |
| 777 | + </h3> | |
| 778 | + </ul> | |
| 779 | + </div> | |
| 780 | + </section> | |
| 781 | + | |
| 782 | + <section id="emplacement" | |
| 783 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--0_5x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x id_177e12337518879c664a6b66296d786e25d76725" | |
| 784 | + > | |
| 785 | + | |
| 786 | + | |
| 787 | +<div class="id_13ee8fc06d98e2fd4370b3403aaf500667383712 layout-full padding--0x paddingMobile--0x layout-rowGap--0_5x"> | |
| 788 | + <div class="blockText blockText-style--medium " > | |
| 789 | + <p class="blockText-surtitle">Localisation</p> | |
| 790 | + <h2 class="blockText-title">Découvrez tout ce qui entoure la Place Jean-Juneau à Saint-Augustin-de-Desmaures</h2> | |
| 791 | + <p class="blockText-subtitle">Parcourez la carte interactive et découvrez les incontournables du secteur : tous les services, cafés, restos, boutiques, écoles, transport, parcs et même la tranquillité du secteur. Une vue complète de votre futur milieu de vie.</p> | |
| 792 | + </div> | |
| 793 | + | |
| 794 | + <div class="projectLocalLogic-container" | |
| 795 | + data-gtm-event="" | |
| 796 | + data-gtm-promotion-id="" | |
| 797 | + data-gtm-content="test" | |
| 798 | + data-gtm-content-type="LocalLogic"> | |
| 799 | + | |
| 800 | + <div | |
| 801 | + id="local-content-widget" | |
| 802 | + style="height: 700px;" | |
| 803 | + data-local-logic-lat="46.74305696" | |
| 804 | + data-local-logic-lng="-71.45488746" | |
| 805 | + data-local-logic-transport="false" | |
| 806 | + data-local-logic-transport-pedestrian-friendly="false" | |
| 807 | + data-local-logic-transport-cycling-friendly="false" | |
| 808 | + data-local-logic-transport-transit-friendly="false" | |
| 809 | + data-local-logic-transport-car-friendly="false" | |
| 810 | + data-local-logic-education="false" | |
| 811 | + data-local-logic-education-daycares="false" | |
| 812 | + data-local-logic-education-primary-schools="false" | |
| 813 | + data-local-logic-education-high-schools="false" | |
| 814 | + data-local-logic-amenities="false" | |
| 815 | + data-local-logic-amenities-shopping="false" | |
| 816 | + data-local-logic-amenities-groceries="false" | |
| 817 | + data-local-logic-amenities-restaurants="false" | |
| 818 | + data-local-logic-amenities-cafes="false" | |
| 819 | + data-local-logic-character="false" | |
| 820 | + data-local-logic-character-nightlife="false" | |
| 821 | + data-local-logic-character-vibrant="false" | |
| 822 | + data-local-logic-character-historic="false" | |
| 823 | + data-local-logic-character-quiet="false" | |
| 824 | + data-local-logic-nature="false" | |
| 825 | + data-local-logic-nature-parks="false" | |
| 826 | + data-local-logic-nature-greenery="false" | |
| 827 | + data-local-logic-wellness="false" | |
| 828 | + data-local-logic-health="false" | |
| 829 | + ></div> | |
| 830 | +</div> | |
| 831 | + | |
| 832 | + </div> | |
| 833 | + | |
| 834 | + </section> | |
| 835 | + | |
| 836 | + | |
| 837 | + <section | |
| 838 | + class="section section-background gap--0_5x modifier-flex modifier-flex--col modifier-flex--center padding-top--1x padding-bottom--1x padding-left--2x padding-right--2x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x id_f51866609071069740eb3880d5f4c9f1a68858c0" | |
| 839 | + > | |
| 840 | + | |
| 841 | +<div class="id_aef8dbadaaf11196043c4581c96844ff4a6d119a layout-full padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 842 | + <div class="blockText blockText-style--small " > | |
| 843 | + <h2 class="blockText-surtitle">Foire aux questions concernant nos projets résidentiels</h2> | |
| 844 | + <p class="blockText-title">Trouver la réponse à votre question</p> | |
| 845 | + <span class="c2aBlock"> | |
| 846 | + <a | |
| 847 | + data-gtm-event="clickButton" data-gtm-id="acceder-a-la-faq-residentiel" | |
| 848 | + | |
| 849 | + href="https://logisco.com/fr/centre-daide/residentiel" data-gtm-page-type="Page" data-gtm-page-name="Centre d’aide - Résidentiel" class="c2a c2a-text c2a--tertiary" | |
| 850 | + aria-label="Accéder à la FAQ - Résidentiel" | |
| 851 | +> | |
| 852 | + <span class="c2a-name"> | |
| 853 | + Accéder à la FAQ - Résidentiel | |
| 854 | + </span> | |
| 855 | + <i class="icon-cms-arrow-right"></i> | |
| 856 | + </a> | |
| 857 | + | |
| 858 | + </span> | |
| 859 | + </div> | |
| 860 | + | |
| 861 | + </div> | |
| 862 | + | |
| 863 | + | |
| 864 | +<div class="id_5bb4e5ac0c69ada613fc1dd05f1af36143084e87 layout-full padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 865 | + <div class="accordeon layout-child-0 "> | |
| 866 | + <expand-component :accordion="false"> | |
| 867 | + <expand-item-component | |
| 868 | + class=" expandItem-style--1 " | |
| 869 | + :is-initially-expanded="false" | |
| 870 | + :index="0"> | |
| 871 | + <template #item> | |
| 872 | + <p class="expandItem-title">Est-ce que les animaux sont acceptés dans vos appartements?</p> | |
| 873 | + <i class="icon-accordeon icon-cms-arrow-down"></i> | |
| 874 | + </template> | |
| 875 | + <div class="expandItem-content"> | |
| 876 | + <div class="blockText blockText-style--content " > | |
| 877 | + <p class="blockText-subtitle">Certains animaux sont acceptés dans quelques immeubles. On vous invite à vous référer à un agent de location pour en savoir plus.</p><p class="blockText-subtitle">On accepte les chiens dans deux de nos projets immobiliers; <a href="https://preview-logisco.imarcom.dev/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/9a7459f9-1c82-47f3-8fff-c4775b5cb418">Place LOCASA</a> à Val-Bélair (chiens de moins de 12 lb) et le <a href="https://preview-logisco.imarcom.dev/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/9a745b49-b36a-40d1-950e-1f04dc99e7e8">MUSO</a> à Sainte-Foy (chiens de toutes tailles). </p><p class="blockText-subtitle">Le MUSO est un véritable paradis pour les amoureux des chiens. On comprend que les animaux font partie intégrante de la famille et c’est pourquoi nous avons conçu des installations exclusives pour répondre aux besoins de votre chien, notamment une aire de toilettage et un parc canin. </p> | |
| 878 | + </div> | |
| 879 | + | |
| 880 | + </div> | |
| 881 | +</expand-item-component> | |
| 882 | + | |
| 883 | + <expand-item-component | |
| 884 | + class=" expandItem-style--1 " | |
| 885 | + :is-initially-expanded="false" | |
| 886 | + :index="1"> | |
| 887 | + <template #item> | |
| 888 | + <p class="expandItem-title">Qu’est-ce qu’une formule « tout inclus »? </p> | |
| 889 | + <i class="icon-accordeon icon-cms-arrow-down"></i> | |
| 890 | + </template> | |
| 891 | + <div class="expandItem-content"> | |
| 892 | + <div class="blockText blockText-style--content " > | |
| 893 | + <p class="blockText-subtitle">Notre formule « tout inclus » comprend les services suivants : </p><ul class="blockText-subtitle"><li>Chauffage, électricité et eau chaude</li><li>Service télé et Internet (dans certains cas, consultez-nous!)</li></ul> | |
| 894 | + <span class="c2aBlock"> | |
| 895 | + <a | |
| 896 | + data-gtm-event="clickButton" data-gtm-id="lire-notre-article-de-blogue" | |
| 897 | + target=_blank | |
| 898 | + href="https://logisco.com/fr/blogue/appartement-tout-inclus" data-gtm-page-type="Article" data-gtm-page-name="Qu'est-ce qu’un appartement tout inclus?" class="c2a c2a-text c2a--tertiary" | |
| 899 | + aria-label="Lire notre article de blogue" | |
| 900 | +> | |
| 901 | + <span class="c2a-name"> | |
| 902 | + Lire notre article de blogue | |
| 903 | + </span> | |
| 904 | + <i class="icon-cms-arrow-right"></i> | |
| 905 | + </a> | |
| 906 | + | |
| 907 | + </span> | |
| 908 | + </div> | |
| 909 | + | |
| 910 | + </div> | |
| 911 | +</expand-item-component> | |
| 912 | + | |
| 913 | + <expand-item-component | |
| 914 | + class=" expandItem-style--1 " | |
| 915 | + :is-initially-expanded="false" | |
| 916 | + :index="2"> | |
| 917 | + <template #item> | |
| 918 | + <p class="expandItem-title">Comment faire pour prendre un rendez-vous afin de visiter un appartement?</p> | |
| 919 | + <i class="icon-accordeon icon-cms-arrow-down"></i> | |
| 920 | + </template> | |
| 921 | + <div class="expandItem-content"> | |
| 922 | + <div class="blockText blockText-style--content " > | |
| 923 | + <p class="blockText-subtitle">On offre trois options simples pour prendre rendez-vous avec l’un de nos agents de location: </p><ul class="blockText-subtitle"><li>Joignez par téléphone notre équipe de location au <a href="tel:+14185644726">418 564-4726</a>, en composant le 2.</li><li>Faites une demande directement sur notre site web via la page du projet immobilier ou de l’unité en cliquant sur « Planifier une visite ». Notre équipe fera un suivi avec vous dans un délai de 48 heures.</li><li>Faites une demande auprès de notre assistante virtuelle, Cléo, toujours à votre disposition via l’onglet de la messagerie de notre site web.</li></ul><p class="blockText-subtitle">Il est important de savoir que notre équipe offre des visites à distance via la vidéoconférence de Microsoft Teams à des heures prédéterminées. L’agent de location se déplace dans l’appartement pour prendre le temps de montrer les pièces et de répondre en temps réel aux questions du visiteur. </p><p class="blockText-subtitle">Il est également possible d’effectuer une visite virtuelle 3D de nos appartements d’une façon autonome sur notre site web. Il suffit de vous diriger vers la page d’un projet immobilier, puis de l’unité intéressée sur notre site web et sélectionner « Visite 3D » dans le coin inférieur droit du plan.</p> | |
| 924 | + </div> | |
| 925 | + | |
| 926 | + </div> | |
| 927 | +</expand-item-component> | |
| 928 | + | |
| 929 | + <expand-item-component | |
| 930 | + class=" expandItem-style--1 " | |
| 931 | + :is-initially-expanded="false" | |
| 932 | + :index="3"> | |
| 933 | + <template #item> | |
| 934 | + <p class="expandItem-title">Vos appartements sont situés dans quels quartiers?</p> | |
| 935 | + <i class="icon-accordeon icon-cms-arrow-down"></i> | |
| 936 | + </template> | |
| 937 | + <div class="expandItem-content"> | |
| 938 | + <div class="blockText blockText-style--content " > | |
| 939 | + <p class="blockText-subtitle">On a des milliers d’appartements à louer dans la grande région de Québec, autant du côté de la Rive-Nord que de la Rive-Sud. </p><p class="blockText-subtitle">Voici les quartiers de la ville de Québec dans lesquels nos projets résidentiels sont situés : </p><ul class="blockText-subtitle"><li>L’Ancienne-Lorette</li><li>Beauport</li><li>Charlesbourg</li><li>Les Saules</li><li>Limoilou</li><li>Loretteville</li><li>Montcalm</li><li>Neufchâtel-Est-Lebourgneuf</li><li>Saint-Augustin-de-Desmaures</li><li>Sainte-Foy</li><li>Saint-Émile</li><li>Val-Bélair</li><li>Vanier</li></ul><p class="blockText-subtitle">Voici les quartiers de la ville de Lévis dans lesquels nos projets résidentiels sont situés : </p><ul class="blockText-subtitle"><li>Charny</li><li>Lévis</li><li>Saint-Nicolas</li><li>Saint-Romuald</li></ul><p class="blockText-subtitle">Voici la ville dans la municipalité régionale de comté de Portneuf dans laquelle l’un de nos projets résidentiels est situé : </p><ul class="blockText-subtitle"><li>Donnacona</li></ul> | |
| 940 | + </div> | |
| 941 | + | |
| 942 | + </div> | |
| 943 | +</expand-item-component> | |
| 944 | + | |
| 945 | + <expand-item-component | |
| 946 | + class=" expandItem-style--1 " | |
| 947 | + :is-initially-expanded="false" | |
| 948 | + :index="4"> | |
| 949 | + <template #item> | |
| 950 | + <p class="expandItem-title">Puis-je avoir les dimensions de vos appartements?</p> | |
| 951 | + <i class="icon-accordeon icon-cms-arrow-down"></i> | |
| 952 | + </template> | |
| 953 | + <div class="expandItem-content"> | |
| 954 | + <div class="blockText blockText-style--content " > | |
| 955 | + <p class="blockText-subtitle">Il est possible de consulter les dimensions de chacune de nos unités locatives présentement disponibles sur notre site web. </p><p class="blockText-subtitle">Voici la marche à suivre en 3 étapes simples : </p><p class="blockText-subtitle">1- Rendez-vous sur la page d’un projet résidentiel spécifique.</p><p class="blockText-subtitle">2- Sélectionnez l’unité désirée.</p><p class="blockText-subtitle">3- Consultez le plan de l’unité pour obtenir les dimensions des pièces.</p> | |
| 956 | + </div> | |
| 957 | + | |
| 958 | + </div> | |
| 959 | +</expand-item-component> | |
| 960 | +</expand-component> | |
| 961 | + </div> | |
| 962 | + | |
| 963 | + </div> | |
| 964 | + | |
| 965 | + </section> | |
| 966 | + | |
| 967 | + <section | |
| 968 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding--1x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundColor--lightblue id_1aac581e2d596a1e5c3d26b8584d8dd535e16397" | |
| 969 | + > | |
| 970 | + | |
| 971 | +<div class="id_573b7d785203afb7099dc8d2eedffcb6134345aa layout-full padding-- paddingMobile-- layout-rowGap--0x"> | |
| 972 | + <div class="blockText blockText--centered " > | |
| 973 | + <p class="blockText-title">Vous souhaitez planifier une visite?</p> | |
| 974 | + <p class="blockText-subtitle">Notre équipe de location se fera un plaisir de vous aider à trouver l’appartement qui correspond à vos besoins.</p> | |
| 975 | + <span class="c2aBlock"> | |
| 976 | + <a href="#unites-disponibles" | |
| 977 | + class="c2a c2a-text c2a--secondary c2a-seeDispo" | |
| 978 | + data-gtm-event="pageProjet-voirDisponibilite" | |
| 979 | + aria-label="Voir les disponibilités"> | |
| 980 | + <span class="c2a-name"> | |
| 981 | + Voir les disponibilités | |
| 982 | + </span> | |
| 983 | +</a> | |
| 984 | + | |
| 985 | + <modal-button class-names="c2a c2a-text c2a--main js-open-modal " | |
| 986 | + aria-label="Joindre un agent de location" | |
| 987 | + modal-id="" | |
| 988 | + :data-properties="{ 'data-gtm-event': 'clicJoindreAgentLocation' }"> | |
| 989 | + <span class="c2a-name"> | |
| 990 | + Joindre un agent de location | |
| 991 | + </span> | |
| 992 | +</modal-button> | |
| 993 | + | |
| 994 | + </span> | |
| 995 | + </div> | |
| 996 | + | |
| 997 | + </div> | |
| 998 | + | |
| 999 | + </section> | |
| 1000 | + | |
| 1001 | + | |
| 1002 | +<div id="projectType" data-project-type="9a3234ed-f3e0-4e09-a2f1-796d80a5bd83" /> | |
| 1003 | + | |
| 1004 | + | |
| 1005 | + </main> | |
| 1006 | + | |
| 1007 | + <footer class="footer" data-gtm-creative-slot="footer"> | |
| 1008 | + <section | |
| 1009 | + class="section section-background gap--0x modifier-flex modifier-flex--col modifier-flex--center padding-top--1_5x padding-left--0x padding-right--0x paddingMobile-top--2x paddingMobile-bottom--2x paddingMobile-left--1x paddingMobile-right--1x backgroundEffect--roundedCornersTop id_4ab8b59e9ace372edff7af94b2f0ecfe8af887d9" | |
| 1010 | + style="background-color: rgba(19, 24, 52, 1)" > | |
| 1011 | + | |
| 1012 | + | |
| 1013 | +<div class="id_eca944e94897a9b2d2823841936b19315bf3c414 layout-columns modifier-h--start padding-top--0x padding-bottom--1x padding-left--1x padding-right--1x paddingMobile-top--0x paddingMobile-bottom--2x paddingMobile-left--0x paddingMobile-right--0x layout-rowGap--0x layout-columnsGap--0x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1014 | + | |
| 1015 | +<div class="id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1016 | + <single-expand | |
| 1017 | + class="" | |
| 1018 | + :mobile-breakpoint="750" | |
| 1019 | + :mobile-expanded="true" | |
| 1020 | + :expanded="false" | |
| 1021 | + is-link > | |
| 1022 | + <template #label> | |
| 1023 | + <span class="item item--bolder item--white"> | |
| 1024 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" > | |
| 1025 | + <p class="expand-labelName">À propos</p> | |
| 1026 | + </a> | |
| 1027 | + </span> | |
| 1028 | + </template> | |
| 1029 | + <template #content> | |
| 1030 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1031 | + | |
| 1032 | + <span class="item item--white70"> | |
| 1033 | + <a href="https://logisco.com/fr/a-propos" data-gtm-page-type="Page" data-gtm-page-name="Qui est LOGISCO" class="item-link " > | |
| 1034 | + Qui est LOGISCO | |
| 1035 | + </a> | |
| 1036 | + </span> | |
| 1037 | + | |
| 1038 | + | |
| 1039 | + <span class="item item--white70"> | |
| 1040 | + <a href="https://logisco.com/fr/emplois" data-gtm-page-type="Page" data-gtm-page-name="Emplois marque-employeur" class="item-link " > | |
| 1041 | + Emplois | |
| 1042 | + </a> | |
| 1043 | + </span> | |
| 1044 | + | |
| 1045 | + | |
| 1046 | + <span class="item item--white70"> | |
| 1047 | + <a href="https://logisco.com/fr/blogue" data-gtm-page-type="Page" data-gtm-page-name="Blogue" class="item-link " > | |
| 1048 | + Blogue | |
| 1049 | + </a> | |
| 1050 | + </span> | |
| 1051 | + | |
| 1052 | + | |
| 1053 | + <span class="item item--white70"> | |
| 1054 | + <a href="https://logisco.com/fr/dons-et-commandites" data-gtm-page-type="Page" data-gtm-page-name="Dons et commandites" class="item-link " > | |
| 1055 | + Dons et commandites | |
| 1056 | + </a> | |
| 1057 | + </span> | |
| 1058 | + | |
| 1059 | + | |
| 1060 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1061 | + | |
| 1062 | + </template> | |
| 1063 | +</single-expand> | |
| 1064 | + | |
| 1065 | + <single-expand | |
| 1066 | + class="" | |
| 1067 | + :mobile-breakpoint="750" | |
| 1068 | + :mobile-expanded="true" | |
| 1069 | + :expanded="false" | |
| 1070 | + is-link > | |
| 1071 | + <template #label> | |
| 1072 | + <span class="item item--bolder item--white"> | |
| 1073 | + <a href="https://logisco.com/fr/futurs-projets-immobiliers" data-gtm-page-type="Page" data-gtm-page-name="Futurs projets immobiliers" > | |
| 1074 | + <p class="expand-labelName">Futurs projets immobiliers</p> | |
| 1075 | + </a> | |
| 1076 | + </span> | |
| 1077 | + </template> | |
| 1078 | + <template #content> | |
| 1079 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1080 | + | |
| 1081 | + <span class="item item--white70"> | |
| 1082 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge/axel" data-gtm-page-type="Projet" data-gtm-page-name="Axel" data-gtm-project-id="1738" data-gtm-tag="Location à venir" class="item-link " > | |
| 1083 | + Axel | |
| 1084 | + </a> | |
| 1085 | + </span> | |
| 1086 | + | |
| 1087 | + | |
| 1088 | + <span class="item item--white70"> | |
| 1089 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville/tria" data-gtm-page-type="Projet" data-gtm-page-name="Tria" data-gtm-project-id="1736" data-gtm-average-price="1857.5" data-gtm-listable-unit-count="28" data-gtm-tag="Projet neuf" class="item-link " > | |
| 1090 | + Tria | |
| 1091 | + </a> | |
| 1092 | + </span> | |
| 1093 | + | |
| 1094 | + | |
| 1095 | + | |
| 1096 | + </template> | |
| 1097 | +</single-expand> | |
| 1098 | + | |
| 1099 | + </div> | |
| 1100 | + | |
| 1101 | + <single-expand | |
| 1102 | + class="" | |
| 1103 | + :mobile-breakpoint="750" | |
| 1104 | + :mobile-expanded="true" | |
| 1105 | + :expanded="false" | |
| 1106 | + is-link > | |
| 1107 | + <template #label> | |
| 1108 | + <span class="item item--bolder item--white"> | |
| 1109 | + <a href="https://logisco.com/fr/appartements-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Appartements à louer" > | |
| 1110 | + <p class="expand-labelName">Appartements</p> | |
| 1111 | + </a> | |
| 1112 | + </span> | |
| 1113 | + </template> | |
| 1114 | + <template #content> | |
| 1115 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1116 | + | |
| 1117 | + <span class="item item--white70"> | |
| 1118 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1119 | + Québec | |
| 1120 | + </a> | |
| 1121 | + </span> | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + <span class="item item--white70"> | |
| 1125 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1126 | + Beauport | |
| 1127 | + </a> | |
| 1128 | + </span> | |
| 1129 | + | |
| 1130 | + | |
| 1131 | + <span class="item item--white70"> | |
| 1132 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/charlesbourg" data-gtm-page-type="Quartier" data-gtm-page-name="Charlesbourg" class="item-link " > | |
| 1133 | + Charlesbourg | |
| 1134 | + </a> | |
| 1135 | + </span> | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + <span class="item item--white70"> | |
| 1139 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/duberger-les-saules" data-gtm-page-type="Quartier" data-gtm-page-name="Duberger-Les-Saules" class="item-link " > | |
| 1140 | + Duberger-Les Saules | |
| 1141 | + </a> | |
| 1142 | + </span> | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + <span class="item item--white70"> | |
| 1146 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/loretteville" data-gtm-page-type="Quartier" data-gtm-page-name="Loretteville" class="item-link " > | |
| 1147 | + Loretteville | |
| 1148 | + </a> | |
| 1149 | + </span> | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + <span class="item item--white70"> | |
| 1153 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/neufchatel-est-lebourgneuf" data-gtm-page-type="Quartier" data-gtm-page-name="Neufchâtel-Est-Lebourgneuf" class="item-link " > | |
| 1154 | + Neufchâtel-Est-Lebourgneuf | |
| 1155 | + </a> | |
| 1156 | + </span> | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + <span class="item item--white70"> | |
| 1160 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1161 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1162 | + </a> | |
| 1163 | + </span> | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + <span class="item item--white70"> | |
| 1167 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/saint-emile" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Émile" class="item-link " > | |
| 1168 | + Saint-Émile | |
| 1169 | + </a> | |
| 1170 | + </span> | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + <span class="item item--white70"> | |
| 1174 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/val-belair" data-gtm-page-type="Quartier" data-gtm-page-name="Val-Bélair" class="item-link " > | |
| 1175 | + Val-Bélair | |
| 1176 | + </a> | |
| 1177 | + </span> | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + <span class="item item--white70"> | |
| 1181 | + <a href="https://logisco.com/fr/appartements-a-louer/quebec/vanier" data-gtm-page-type="Quartier" data-gtm-page-name="Vanier" class="item-link " > | |
| 1182 | + Vanier | |
| 1183 | + </a> | |
| 1184 | + </span> | |
| 1185 | + | |
| 1186 | + | |
| 1187 | + <span class="item item--white70"> | |
| 1188 | + <a href="https://logisco.com/fr/appartements-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1189 | + Lévis | |
| 1190 | + </a> | |
| 1191 | + </span> | |
| 1192 | + | |
| 1193 | + | |
| 1194 | + <span class="item item--white70"> | |
| 1195 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1196 | + Desjardins | |
| 1197 | + </a> | |
| 1198 | + </span> | |
| 1199 | + | |
| 1200 | + | |
| 1201 | + <span class="item item--white70"> | |
| 1202 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-david" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-David" class="item-link " > | |
| 1203 | + Saint-David | |
| 1204 | + </a> | |
| 1205 | + </span> | |
| 1206 | + | |
| 1207 | + | |
| 1208 | + <span class="item item--white70"> | |
| 1209 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-nicolas" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Nicolas" class="item-link " > | |
| 1210 | + Saint-Nicolas | |
| 1211 | + </a> | |
| 1212 | + </span> | |
| 1213 | + | |
| 1214 | + | |
| 1215 | + <span class="item item--white70"> | |
| 1216 | + <a href="https://logisco.com/fr/appartements-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1217 | + Saint-Romuald | |
| 1218 | + </a> | |
| 1219 | + </span> | |
| 1220 | + | |
| 1221 | + | |
| 1222 | + <span class="item item--white70"> | |
| 1223 | + <a href="https://logisco.com/fr/appartements-a-louer/donnacona" data-gtm-page-type="Ville" data-gtm-page-name="Donnacona" class="item-link " > | |
| 1224 | + Donnacona | |
| 1225 | + </a> | |
| 1226 | + </span> | |
| 1227 | + | |
| 1228 | + | |
| 1229 | + <span class="item item--white70"> | |
| 1230 | + <a href="https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures" data-gtm-page-type="Ville" data-gtm-page-name="Saint-Augustin-de-Desmaures" class="item-link " > | |
| 1231 | + Saint-Augustin-De-Desmaures | |
| 1232 | + </a> | |
| 1233 | + </span> | |
| 1234 | + | |
| 1235 | + | |
| 1236 | + </template> | |
| 1237 | +</single-expand> | |
| 1238 | + | |
| 1239 | + | |
| 1240 | +<div class="id_750d3332f0d42f874d235808f8c66a7d1d9c6129 blockGroup modifier-v--start modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x layout-rowGapMobile--0_25x"> | |
| 1241 | + <single-expand | |
| 1242 | + class="" | |
| 1243 | + :mobile-breakpoint="750" | |
| 1244 | + :mobile-expanded="true" | |
| 1245 | + :expanded="false" | |
| 1246 | + is-link > | |
| 1247 | + <template #label> | |
| 1248 | + <span class="item item--bolder item--white"> | |
| 1249 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer" data-gtm-page-type="Page" data-gtm-page-name="Espaces commerciaux à louer" > | |
| 1250 | + <p class="expand-labelName">Espaces commerciaux</p> | |
| 1251 | + </a> | |
| 1252 | + </span> | |
| 1253 | + </template> | |
| 1254 | + <template #content> | |
| 1255 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1256 | + | |
| 1257 | + <span class="item item--white70"> | |
| 1258 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec" data-gtm-page-type="Ville" data-gtm-page-name="Québec" class="item-link " > | |
| 1259 | + Québec | |
| 1260 | + </a> | |
| 1261 | + </span> | |
| 1262 | + | |
| 1263 | + | |
| 1264 | + <span class="item item--white70"> | |
| 1265 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/beauport" data-gtm-page-type="Quartier" data-gtm-page-name="Beauport" class="item-link " > | |
| 1266 | + Beauport | |
| 1267 | + </a> | |
| 1268 | + </span> | |
| 1269 | + | |
| 1270 | + | |
| 1271 | + <span class="item item--white70"> | |
| 1272 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/quebec/sainte-foy-sillery-cap-rouge" data-gtm-page-type="Quartier" data-gtm-page-name="Sainte-Foy-Sillery-Cap-Rouge" class="item-link " > | |
| 1273 | + Sainte-Foy-Sillery-Cap-Rouge | |
| 1274 | + </a> | |
| 1275 | + </span> | |
| 1276 | + | |
| 1277 | + | |
| 1278 | + <span class="item item--white70"> | |
| 1279 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis" data-gtm-page-type="Ville" data-gtm-page-name="Lévis" class="item-link " > | |
| 1280 | + Lévis | |
| 1281 | + </a> | |
| 1282 | + </span> | |
| 1283 | + | |
| 1284 | + | |
| 1285 | + <span class="item item--white70"> | |
| 1286 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/charny" data-gtm-page-type="Quartier" data-gtm-page-name="Charny" class="item-link " > | |
| 1287 | + Charny | |
| 1288 | + </a> | |
| 1289 | + </span> | |
| 1290 | + | |
| 1291 | + | |
| 1292 | + <span class="item item--white70"> | |
| 1293 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/desjardins" data-gtm-page-type="Quartier" data-gtm-page-name="Desjardins" class="item-link " > | |
| 1294 | + Desjardins | |
| 1295 | + </a> | |
| 1296 | + </span> | |
| 1297 | + | |
| 1298 | + | |
| 1299 | + <span class="item item--white70"> | |
| 1300 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-jean-chrysostome" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Jean-Chrysostome" class="item-link " > | |
| 1301 | + Saint-Jean-Chrysostome | |
| 1302 | + </a> | |
| 1303 | + </span> | |
| 1304 | + | |
| 1305 | + | |
| 1306 | + <span class="item item--white70"> | |
| 1307 | + <a href="https://logisco.com/fr/espaces-commerciaux-a-louer/levis/saint-romuald" data-gtm-page-type="Quartier" data-gtm-page-name="Saint-Romuald" class="item-link " > | |
| 1308 | + Saint-Romuald | |
| 1309 | + </a> | |
| 1310 | + </span> | |
| 1311 | + | |
| 1312 | + | |
| 1313 | + <span class="spacer " style="margin-top:2em; display: block"></span> | |
| 1314 | + | |
| 1315 | + </template> | |
| 1316 | +</single-expand> | |
| 1317 | + | |
| 1318 | + | |
| 1319 | + <single-expand | |
| 1320 | + class="" | |
| 1321 | + :mobile-breakpoint="750" | |
| 1322 | + :mobile-expanded="true" | |
| 1323 | + :expanded="false" | |
| 1324 | + is-link > | |
| 1325 | + <template #label> | |
| 1326 | + <span class="item item--bolder item--white"> | |
| 1327 | + <a href="https://logisco.com/fr/hotels" data-gtm-page-type="Page" data-gtm-page-name="Hôtels" > | |
| 1328 | + <p class="expand-labelName">Hôtels</p> | |
| 1329 | + </a> | |
| 1330 | + </span> | |
| 1331 | + </template> | |
| 1332 | + <template #content> | |
| 1333 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1334 | + | |
| 1335 | + <span class="item item--white70"> | |
| 1336 | + <a href="https://www.hilton.com/fr/hotels/yqbwhht-home2-suites-quebec-city/" class="item-link " > | |
| 1337 | + Home2 Suites par Hilton Québec | |
| 1338 | + </a> | |
| 1339 | + </span> | |
| 1340 | + | |
| 1341 | + | |
| 1342 | + <span class="item item--white70"> | |
| 1343 | + <a href="https://www.hilton.com/fr/hotels/yqbbphx-hampton-suites-quebec-city-beauport/" class="item-link " > | |
| 1344 | + Hampton Inn & Suites Québec/Beauport | |
| 1345 | + </a> | |
| 1346 | + </span> | |
| 1347 | + | |
| 1348 | + | |
| 1349 | + <span class="item item--white70"> | |
| 1350 | + <a href="https://www.hilton.com/fr/hotels/yqbsrhx-hampton-suites-quebec-city-saint-romuald/" class="item-link " > | |
| 1351 | + Hampton Inn & Suites Québec/Lévis | |
| 1352 | + </a> | |
| 1353 | + </span> | |
| 1354 | + | |
| 1355 | + | |
| 1356 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1357 | + | |
| 1358 | + </template> | |
| 1359 | +</single-expand> | |
| 1360 | + | |
| 1361 | + </div> | |
| 1362 | + | |
| 1363 | + | |
| 1364 | +<div class="id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 blockGroup modifier-v--center modifier-vm--left padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1365 | + <span class="item item--bolder item--white"> | |
| 1366 | + <span class="item-link " > | |
| 1367 | + Téléphone sans frais | |
| 1368 | + </span> | |
| 1369 | + </span> | |
| 1370 | + | |
| 1371 | + | |
| 1372 | + <span class="item item--bigger item--white desktopOnly"> | |
| 1373 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1374 | + + 1-833-564-4726 | |
| 1375 | + </a> | |
| 1376 | + </span> | |
| 1377 | + <span class="item item--bigger item--white mobileOnly"> | |
| 1378 | + <a href="tel:+18335644726" class="item-link " data-gtm-event="appelFooter" > | |
| 1379 | + + 1-833-564-4726 | |
| 1380 | + </a> | |
| 1381 | + </span> | |
| 1382 | + | |
| 1383 | + | |
| 1384 | + <div class="items-row items-row--center "> | |
| 1385 | + <modal-button class-names="js-open-modal c2a c2a-hours " aria-label="Heures d'ouverture" modal-id="99e74ab5-6702-4826-8d7d-d6963262fe2d" data-gtm-event="clickButton" data-gtm-id="heures-douverture"> | |
| 1386 | + <div class="c2a-hoursIcon"> | |
| 1387 | + <span class="c2a-hoursIconCenter"></span> | |
| 1388 | + </div> | |
| 1389 | + Heures d’ouverture | |
| 1390 | + </modal-button> | |
| 1391 | + | |
| 1392 | + | |
| 1393 | + </div> | |
| 1394 | + | |
| 1395 | + <single-expand | |
| 1396 | + class="" | |
| 1397 | + :mobile-breakpoint="750" | |
| 1398 | + :mobile-expanded="true" | |
| 1399 | + :expanded="false" | |
| 1400 | + > | |
| 1401 | + <template #label> | |
| 1402 | + <span class="item item--bolder item--white"> | |
| 1403 | + <div > | |
| 1404 | + <p class="expand-labelName">Support</p> | |
| 1405 | + </div> | |
| 1406 | + </span> | |
| 1407 | + </template> | |
| 1408 | + <template #content> | |
| 1409 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1410 | + | |
| 1411 | + <span class="item item--white70"> | |
| 1412 | + <a href="https://logisco.com/fr/centre-daide" data-gtm-page-type="Page" data-gtm-page-name="Centre d'aide" class="item-link " > | |
| 1413 | + Centre d'aide | |
| 1414 | + </a> | |
| 1415 | + </span> | |
| 1416 | + | |
| 1417 | + | |
| 1418 | + <span class="item item--white70"> | |
| 1419 | + <a href="https://logisco.com/fr/nous-joindre" data-gtm-page-type="Page" data-gtm-page-name="Nous joindre" class="item-link " > | |
| 1420 | + Nous joindre | |
| 1421 | + </a> | |
| 1422 | + </span> | |
| 1423 | + | |
| 1424 | + | |
| 1425 | + | |
| 1426 | + <span class="item item--white70"> | |
| 1427 | + <a href="https://logisco.com/fr/nouvel-arrivant" data-gtm-page-type="Page" data-gtm-page-name="Nouvel arrivant" class="item-link " > | |
| 1428 | + Nouvel arrivant | |
| 1429 | + </a> | |
| 1430 | + </span> | |
| 1431 | + | |
| 1432 | + | |
| 1433 | + <span class="spacer " style="margin-top:1em; display: block"></span> | |
| 1434 | + | |
| 1435 | + </template> | |
| 1436 | +</single-expand> | |
| 1437 | + | |
| 1438 | + </div> | |
| 1439 | + | |
| 1440 | + </div> | |
| 1441 | + | |
| 1442 | + | |
| 1443 | +<div class="id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 layout-full padding-top--0x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile-left--0x layout-rowGap--0x"> | |
| 1444 | + <a | |
| 1445 | + data-gtm-event="clickButton" data-gtm-id="donnez-votre-avis-pour-gagner-100" | |
| 1446 | + target=_blank | |
| 1447 | + href="https://logisco.qualtrics.com/jfe/form/SV_2c2Qx298zKfhg34" class="c2a c2a-text c2a--secondary c2a-style--secondary" | |
| 1448 | + aria-label="Donnez votre avis pour gagner 100$" | |
| 1449 | +> | |
| 1450 | + <span class="c2a-name"> | |
| 1451 | + Donnez votre avis pour gagner 100$ | |
| 1452 | + </span> | |
| 1453 | + </a> | |
| 1454 | + | |
| 1455 | + </div> | |
| 1456 | + | |
| 1457 | + | |
| 1458 | + | |
| 1459 | +<div class="id_53475154bf3a1ec91c439fa85367d8e43e69cb6d layout-columns modifier-h--center padding-top--0_5x padding-bottom--0_5x padding-left--1x padding-right--1x paddingMobile--0x layout-rowGap--0x layout-columnsGap--0_25x layout-rowGap--0x layout-rowGapMobile--1x"> | |
| 1460 | + | |
| 1461 | +<div class="id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 blockGroup modifier-v--around modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1462 | + <div class="items-row items-row--start "> | |
| 1463 | + <span class="item item--white"> | |
| 1464 | + <a href="https://logisco.com/fr/politique-de-cookies" data-gtm-page-type="Page" data-gtm-page-name="Politique de cookies" class="item-link " > | |
| 1465 | + Politique d'utilisation des cookies | |
| 1466 | + </a> | |
| 1467 | + </span> | |
| 1468 | + | |
| 1469 | + | |
| 1470 | + <span class="item item--white"> | |
| 1471 | + <a href="https://logisco.com/fr/politique-de-protection-des-renseignements-personnels" data-gtm-page-type="Page" data-gtm-page-name="Politique de protection des renseignements personnels" class="item-link " > | |
| 1472 | + Politique de protection des renseignements personnels | |
| 1473 | + </a> | |
| 1474 | + </span> | |
| 1475 | + | |
| 1476 | + | |
| 1477 | + <span class="item item--label item--gray"> | |
| 1478 | + <span class="item-link " > | |
| 1479 | + © Tous droits réservés LOGISCO 2026 | |
| 1480 | + </span> | |
| 1481 | + </span> | |
| 1482 | + | |
| 1483 | + | |
| 1484 | + </div> | |
| 1485 | + | |
| 1486 | + </div> | |
| 1487 | + | |
| 1488 | + | |
| 1489 | +<div class="id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 blockGroup modifier-v--center modifier-vm--center padding--0x paddingMobile--0x layout-rowGap--0x"> | |
| 1490 | + <div class="items-row items-row--even "> | |
| 1491 | + <a class="icon-link " href="https://www.facebook.com/logiscogroupe/?locale=fr_CA"> | |
| 1492 | + <i class="icon-social icon-cms-social-facebook"></i> | |
| 1493 | +</a> | |
| 1494 | + | |
| 1495 | + <a class="icon-link " href="https://www.instagram.com/logiscogroupeimmo/"> | |
| 1496 | + <i class="icon-social icon-cms-social-instagram"></i> | |
| 1497 | +</a> | |
| 1498 | + | |
| 1499 | + <a class="icon-link " href="https://www.pinterest.ca/logiscogroupeimmobilier/"> | |
| 1500 | + <i class="icon-social icon-cms-social-pinterest"></i> | |
| 1501 | +</a> | |
| 1502 | + | |
| 1503 | + <a class="icon-link " href="https://www.youtube.com/user/LogiscoGroupeImmo"> | |
| 1504 | + <i class="icon-social icon-cms-social-youtube"></i> | |
| 1505 | +</a> | |
| 1506 | + | |
| 1507 | + <a class="icon-link " href="https://ca.linkedin.com/company/logisco-groupe-immobilier"> | |
| 1508 | + <i class="icon-social icon-cms-social-linkedin"></i> | |
| 1509 | +</a> | |
| 1510 | + | |
| 1511 | + </div> | |
| 1512 | + | |
| 1513 | + </div> | |
| 1514 | + | |
| 1515 | + </div> | |
| 1516 | + | |
| 1517 | + </section> | |
| 1518 | + | |
| 1519 | + </footer> | |
| 1520 | + | |
| 1521 | + | |
| 1522 | + <logisco-chat></logisco-chat> | |
| 1523 | +</div> | |
| 1524 | + | |
| 1525 | + | |
| 1526 | + | |
| 1527 | + | |
| 1528 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="preload" as="style" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vendor-Cx6hDgs3.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/lodash-DsaPwWhQ.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/swiper-BiYw9q3L.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/axios-ngrFHoWO.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/@vue-tv7FT8X3.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/date-fns-BBWgIHR2.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="modulepreload" href="https://logisco.com/theme/build/assets/vue-tel-input-DOM-M7oJ.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/vendor-DMveI3Pu.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/swiper-C4EoHfuM.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/@vue-CWmBI_q2.css" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle" /><script type="module" src="https://logisco.com/theme/build/assets/main-DD2dlRp1.js" nonce="1p8kYv4zmbAFSlYeXIOs5d63JE5yecle"></script><script type="application/ld+json">{ | |
| 1529 | + "@context": "https://schema.org", | |
| 1530 | + "@type": "project", | |
| 1531 | + "@id": "605", | |
| 1532 | + "address": { | |
| 1533 | + "@type": "PostalAddress", | |
| 1534 | + "streetAddress": "111 Rue Jean-Juneau", | |
| 1535 | + "addressLocality": "Saint-Augustin-de-Desmaures", | |
| 1536 | + "addressRegion": "Québec", | |
| 1537 | + "postalCode": "G3A 0B2", | |
| 1538 | + "addressCountry": "Canada" | |
| 1539 | + }, | |
| 1540 | + "branchCode": "605", | |
| 1541 | + "globalLocationNumber": "", | |
| 1542 | + "hasMap": "111+Rue+Jean-Juneau%2C+Saint-Augustin-de-Desmaures%2C+Qu%C3%A9bec%2C+G3A+0B2", | |
| 1543 | + "image": "https://logisco.com/static/vb/545-1800/vue-exterieure-de-limmeuble.webp", | |
| 1544 | + "latitude": "", | |
| 1545 | + "longitude": "", | |
| 1546 | + "map": "111+Rue+Jean-Juneau%2C+Saint-Augustin-de-Desmaures%2C+Qu%C3%A9bec%2C+G3A+0B2", | |
| 1547 | + "name": "Place Jean-Juneau", | |
| 1548 | + "telephone": "+14185644726", | |
| 1549 | + "url": "https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures/place-jean-juneau" | |
| 1550 | +} | |
| 1551 | +</script> | |
| 1552 | + | |
| 1553 | +<script type="application/ld+json">{ | |
| 1554 | + "@context": "https://schema.org", | |
| 1555 | + "@type": "BreadcrumbList", | |
| 1556 | + "itemListElement": [ | |
| 1557 | + { | |
| 1558 | + "@type": "ListItem", | |
| 1559 | + "position": 1, | |
| 1560 | + "name": "Accueil", | |
| 1561 | + "item": "https://logisco.com/fr" | |
| 1562 | + }, | |
| 1563 | + { | |
| 1564 | + "@type": "ListItem", | |
| 1565 | + "position": 2, | |
| 1566 | + "name": "Appartements \u00e0 louer", | |
| 1567 | + "item": "https://logisco.com/fr/appartements-a-louer" | |
| 1568 | + }, | |
| 1569 | + { | |
| 1570 | + "@type": "ListItem", | |
| 1571 | + "position": 3, | |
| 1572 | + "name": "Saint-Augustin-de-Desmaures", | |
| 1573 | + "item": "https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures" | |
| 1574 | + }, | |
| 1575 | + { | |
| 1576 | + "@type": "ListItem", | |
| 1577 | + "position": 4, | |
| 1578 | + "name": "Place Jean-Juneau", | |
| 1579 | + "item": "https://logisco.com/fr/appartements-a-louer/saint-augustin-de-desmaures/place-jean-juneau" | |
| 1580 | + } | |
| 1581 | + ] | |
| 1582 | +}</script> | |
| 1583 | + | |
| 1584 | + | |
| 1585 | +</body> | |
| 1586 | + | |
| 1587 | +</html> | |
added
tests/fixtures/logisco/0db3ea02b0debb6d8fb1.html
+180 −0
@@ -0,0 +1,1832 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + <script nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf"> | |
| 5 | + window.dataLayer = [] | |
| 6 | +</script> | |
| 7 | + <!-- Google Tag Manager --> | |
| 8 | + <script nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 9 | + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 10 | + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 11 | + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;var n=d.querySelector('[nonce]'); | |
| 12 | + n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f); | |
| 13 | + })(window,document,'script','dataLayer','GTM-PR75X6VZ');</script> | |
| 14 | + <!-- End Google Tag Manager --> | |
| 15 | + <meta name="csrf-token" content="RcK0g54Vsq52dUtLxz6zGOlBZlnXZoocezFO9jj4"> | |
| 16 | + <meta charset="utf-8"> | |
| 17 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 18 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes"> | |
| 19 | + | |
| 20 | + <style nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf">@charset "UTF-8";:root{--vs-colors--lightest: rgba(60, 60, 60, .26);--vs-colors--light: rgba(60, 60, 60, .5);--vs-colors--dark: #333;--vs-colors--darkest: rgba(0, 0, 0, .15);--vs-search-input-color: inherit;--vs-search-input-placeholder-color: inherit;--vs-font-size: 1rem;--vs-line-height: 1.4;--vs-state-disabled-bg: rgb(248, 248, 248);--vs-state-disabled-color: var(--vs-colors--light);--vs-state-disabled-controls-color: var(--vs-colors--light);--vs-border-color: var(--vs-colors--lightest);--vs-border-width: 1px;--vs-border-style: solid;--vs-border-radius: 4px;--vs-actions-padding: 4px 6px 0 3px;--vs-controls-color: var(--vs-colors--light);--vs-controls-size: 1;--vs-controls--deselect-text-shadow: 0 1px 0 #fff;--vs-selected-bg: #f0f0f0;--vs-selected-color: var(--vs-colors--dark);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: #fff;--vs-dropdown-color: inherit;--vs-dropdown-z-index: 1000;--vs-dropdown-min-width: 160px;--vs-dropdown-max-height: 350px;--vs-dropdown-box-shadow: 0px 3px 6px 0px var(--vs-colors--darkest);--vs-dropdown-option-bg: #000;--vs-dropdown-option-color: var(--vs-dropdown-color);--vs-dropdown-option-padding: 3px 20px;--vs-dropdown-option--active-bg: #5897fb;--vs-dropdown-option--active-color: #fff;--vs-dropdown-option--deselect-bg: #fb5858;--vs-dropdown-option--deselect-color: #fff}:root{--vs-disabled-bg: var(--vs-state-disabled-bg);--vs-disabled-color: var(--vs-state-disabled-color)}html,body,p,ul,li,h1,h2,h3{margin:0;padding:0}h1,h2,h3{font-size:100%;font-weight:400}ul{list-style:none}input{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img{height:auto;max-width:100%}html{line-height:normal;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2rem}a{text-decoration:none;background-color:transparent}strong{font-weight:bolder}img{border-style:none}input{margin:0;font-family:inherit}input{overflow:visible}[type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner{padding:0;border-style:none}[type=button]:-moz-focusring{outline:1px dotted ButtonText}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}:root{--base-font: $base-font;--spacing-0x: 0;--spacing-0_25x: 1.6em;--spacing-0_5x: 3.2em;--spacing-1x: 6.4em;--spacing-1_25x: 8em;--spacing-1_5x: 9.6em;--spacing-2x: 12em;--border-radius-none: 0;--border-radius-sm: 2rem;--border-radius-md: 4rem;--border-radius-lg: 6rem}@media (max-width:750px){:root{--spacing-0x: 0;--spacing-0_5x: .8em;--spacing-1x: 1.6em;--spacing-2x: 4em}}html{font-size:.7320644217vw}body{line-height:normal}h1,h2,h3{font-weight:400;font-size:1em}a{color:currentColor}img{display:block;width:100%;height:100%}html{font-size:.6944444444vw}@media (max-width:750px){html{font-size:2.7777777778vw}}html{scroll-behavior:smooth}.unitHeader-infoValue,.blockText-title,.alertTop-close,.c2a-text,.blockText-surtitle{color:#363636;font-family:Macan}.unitHeader-infoValue,.blockText-title{font-weight:300;font-size:4rem}@media (max-width:750px){.unitHeader-infoValue,.blockText-title{font-weight:300;font-size:2.6rem}}.alertTop-close{font-weight:400;font-size:2rem}@media (max-width:750px){.alertTop-close{font-weight:400;font-size:1.8rem}}.c2a-text{font-weight:500;font-size:1.5rem}@media (max-width:750px){.c2a-text{font-weight:500;font-size:1.4rem}}.blockText-surtitle{font-weight:400;font-size:1.6rem}@media (max-width:750px){.blockText-surtitle{font-weight:300;font-size:1.4rem}}.unitHeader-priceNumber,.blockText-style--medium .blockText-title{font-family:Macan;font-weight:400;font-size:3rem;line-height:1.3}@media (max-width:750px){.unitHeader-priceNumber,.blockText-style--medium .blockText-title{font-size:2.5rem;line-height:1.2}}.unitHeader-priceText{font-family:Macan;font-weight:400;font-size:2.4rem;line-height:1.3}@media (max-width:750px){.unitHeader-priceText{font-size:2.3rem;margin-bottom:.5em}}.projectServices-title{font-family:Macan;font-weight:400;font-size:2.2rem;line-height:1.3}@media (max-width:750px){.projectServices-title{font-size:2.1rem;line-height:1.4}}.unitHeader-infoValue,.blockText-title{font-family:Macan;font-weight:600;font-size:1.6rem;line-height:1.4}.projectServices-listItem,.alertTop-content{font-family:Macan;font-weight:300;font-size:1.6rem;line-height:1.4}.unitHeader-infoLabel{font-family:Macan;font-weight:300;font-size:1.4rem;line-height:1.4}.breadcrumb-item{font-family:Macan;font-weight:400;font-size:1.2rem;line-height:1.3}.unitHeader-address{font-family:Macan;font-weight:400;font-size:1.5rem;line-height:1.5}.blockText-style--medium .blockText-surtitle,.blockText-surtitle{font-family:Macan;font-weight:400;font-size:1.4rem;line-height:1.2}.mainMenu-elementLink,.c2a-text{font-family:Macan;font-weight:500;font-size:1.7rem;line-height:1}.tooltip-subtitle{font-family:Macan;font-weight:500;font-size:1.3rem;line-height:1}.blockText-title{font-family:Macan;font-weight:300;font-size:5.6rem;line-height:1.2}@media (max-width:750px){.blockText-title{font-size:3.8rem;line-height:1.3}}.unitHeader-label{font-family:Macan;font-weight:300;font-size:4.4rem;line-height:1.3}@media (max-width:750px){.unitHeader-label{font-size:3.2rem;line-height:1.2}}@font-face{font-family:icon-cms;src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4);src:url(/theme/build/assets/icomoon-cms-CjyJ1ZC1.eot?39a3p4#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-cms-DWd4ei5T.woff2?39a3p4) format("woff2"),url(/theme/build/assets/icomoon-cms-DQc2SeWf.ttf?39a3p4) format("truetype"),url(/theme/build/assets/icomoon-cms-PZ9bTWPn.woff?39a3p4) format("woff"),url(/theme/build/assets/icomoon-cms-B-zWZdiB.svg?39a3p4#icomoon-cms) format("svg");font-weight:400;font-style:normal;font-display:block}[class^=icon-cms-],[class*=" icon-cms-"]{font-family:icon-cms!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-cms-]:after,[class*=" icon-cms-"]:after{position:absolute;top:0;left:0}.icon-cms-close:before{content:""}.icon-cms-social-share:before{content:""}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Semibold-P894naFN.woff2) format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Book-BKtKbQB6.woff2) format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Regular-Tnze7Wf6.woff2) format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Light-D0XdM3nR.woff2) format("woff2");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Macan;src:url(/theme/build/assets/Macan-Thin-D8KRJN3P.woff2) format("woff2");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:icomoon-logisco;src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j);src:url(/theme/build/assets/icomoon-logisco-ZB9N8qU8.eot?u4aq2j#iefix) format("embedded-opentype"),url(/theme/build/assets/icomoon-logisco-3ELZv8tI.ttf?u4aq2j) format("truetype"),url(/theme/build/assets/icomoon-logisco-DAB2sWOk.woff?u4aq2j) format("woff"),url(/theme/build/assets/icomoon-logisco-CJnwMfM_.svg?u4aq2j#icomoon) format("svg");font-weight:400;font-style:normal;font-display:swap}[class^=icon-logisco-],[class*=" icon-logisco-"]{font-weight:400;font-family:icomoon-logisco!important;font-style:normal;font-variant:normal;line-height:1;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-logisco-]:after,[class*=" icon-logisco-"]:after{position:absolute;top:0;left:0}.icon-logisco-service--dishwasher_connection:before{content:""}.icon-logisco-service--entrance_washer_dryer:before{content:""}.icon-logisco-service--outside_shed:before{content:""}.icon-logisco-service--intercom:before{content:""}.icon-logisco-service--charging_station:before{content:""}.icon-logisco-service--outdoor_parking:before{content:""}.icon-logisco-phone:before{content:""}.icon-logisco-information:before{content:""}.icon-logisco-download:before{content:""}.icon-cms-close{font-family:icomoon-logisco!important}.icon-cms-close:before{content:""}.icon-cms-social-share{font-family:icomoon-logisco!important}.icon-cms-social-share:before{content:""}.c2a{display:block;width:max-content;height:max-content;padding:.9333333333em 1.3333333333em;color:#fff;font-family:Macan;letter-spacing:normal;text-align:center;border:0;border-radius:.8rem}.c2a-text{display:flex;gap:1em;align-items:center;margin:0;color:#fff;font-weight:400;text-decoration:none}.c2a--tertiary{background:#8895a0}.c2a{padding:1.86rem 2.4rem}.c2a-text{gap:.4em}.c2a--tertiary{background:none;color:#0f1223;padding:0}.c2a--tertiary .c2a-name{text-decoration:underline}.alertTop{position:fixed;top:0;z-index:100;display:flex;align-items:center;justify-content:center;width:100%;height:4.8em;padding-top:1em;padding-bottom:1em;color:#fff;font-family:Macan}@media (max-width:750px){.alertTop{justify-content:space-between}}.alertTop-on .alertTop-placeholder{height:4.8em}.alertTop--main{background-color:#0385d4}.alertTop--main .alertTop-close{color:#fff}@media (min-width:751px){.alertTop-text--mobile{display:none}}@media (max-width:750px){.alertTop-text--desktop{display:none}}.alertTop-close{position:absolute;right:1em;font-size:1.2em!important;font-style:normal}@media (max-width:750px){.alertTop-close{right:1.5em}}.alertTop{padding-top:1.2em;padding-bottom:1.2em}.alertTop-close{position:absolute;font-size:3em!important}.alertTop-content a{text-decoration:underline;text-underline-offset:.1em}@media (max-width:750px){.alertTop{padding:.8em 4em .8em 1.6em}.alertTop-close{right:.5rem}.alertTop-content{font-size:1.2em}}.breadcrumb-list{display:flex;gap:1.2rem;margin-bottom:4em;padding-bottom:4em;border-bottom:.1rem solid #0F1223}.breadcrumb-item{display:flex;color:#0f1223}.breadcrumb-item:not(:last-child):after{display:block;padding-left:1.2rem;content:"|"}@media (max-width:750px){.breadcrumb-list{padding:1rem 0;margin:0 0 .6rem;border-bottom:none;overflow-x:scroll}.breadcrumb-item{white-space:nowrap}}.mainMenu{display:flex;gap:3em;align-items:center;justify-content:flex-end}.mainMenu-item{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;width:100%}.mainMenu-element{display:flex;align-items:center}.mainMenu-elementLink{display:flex;flex-direction:row;gap:.25em;align-items:center;padding:.3571428571em;color:#000;font-weight:500;font-size:1.4em;font-family:Macan;line-height:1.2142857143em;letter-spacing:.0642857143em;white-space:nowrap}.mainMenu-list{display:flex;gap:4.4em}@media (max-width:750px){.mainMenu{gap:1em}.mainMenu-list{display:none}}.mainMenu{gap:0;width:100%;justify-content:space-between;padding:0 6.4em}.mainMenu-list{margin-right:auto;margin-left:auto;gap:3.2em}.mainMenu-item{white-space:nowrap}.mainMenu-item:last-child{display:flex;flex-direction:row;align-items:center;gap:3.2em}.mainMenu-item:last-child:before{content:"";background-color:#c9d5dc;width:.1em;height:2.4em}.mainMenu-elementLink{font-size:1.7rem;letter-spacing:0}@media (max-width:750px){.mainMenu{padding:0 1.6em}}.mainHeader{position:fixed;top:0;left:0;z-index:100;width:100%;background-color:#fff}.mainHeader-placeholder{height:5.5em}@media (max-width:750px){.mainHeader-placeholder{height:5em}}.mainHeader-shadow{opacity:0}.mainHeader-bg{position:absolute;left:0;display:block;width:100%;height:5.5em;background-color:#fff;transform:translateY(-100%)}.mainHeader-nav{position:relative;display:flex;align-items:center;justify-content:space-between;height:5.5em;padding:1.5em 6.4em}.mainHeader-brand{display:flex;align-items:center}.mainHeader-logo{display:flex;width:70%;height:100%}.mainHeader-logo.mainHeader-logo--white{display:none}@media (max-width:750px){.mainHeader-bg{height:5em;transform:translateY(0)}.mainHeader-brand{font-size:.15em}.mainHeader-logo{width:85em}.mainHeader-nav{height:5em;padding:0 4em}}.mainHeader-nav{padding:0;border-bottom:.1em solid #C9D5DC}.mainHeader-logo{width:13.7em}.mainHeader-linksList{display:flex;gap:.8em;align-items:center}.mainHeader-listItem{display:flex;align-items:center;justify-content:center;height:max-content}@media (min-width:751px){.mainHeader-listItem{min-width:6.3rem;min-height:4.5rem;padding-right:.8rem;padding-left:.8rem;border:.2rem solid transparent;border-radius:8rem}}.icon-logisco-phone{display:flex;align-items:center;justify-content:center;padding:0;color:#000;font-size:2em;background-color:transparent;border:none;aspect-ratio:1}@supports not (aspect-ratio:1){.icon-logisco-phone{position:relative}.icon-logisco-phone:after{display:block;content:"";width:100%;padding-top:100%}}.icon-logisco-phone{font-size:2.3em}@media (max-width:750px){.mainHeader-nav{padding:0}.mainHeader-brand{margin-right:auto}.mainHeader-logo{width:70em}.mainHeader-linksList{gap:2.2rem}}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.blockText{display:flex;flex-direction:column;gap:2em;align-items:flex-start;text-align:left}.blockText-surtitle,.blockText-title{width:auto}.blockText{gap:0}.blockText :not(:first-child):last-child{margin-bottom:0}.blockText-surtitle{color:#0385d4;font-size:1.8rem;width:100%;text-transform:uppercase;margin-bottom:.6666666667em}@media (max-width:750px){.blockText-surtitle{font-size:1.4rem}}.blockText-title{color:#0f1223;width:100%;margin-bottom:.4285714286em}.blockText-style--medium .blockText-surtitle{color:#0385d4;width:100%;text-transform:uppercase}.blockText-style--medium .blockText-title{width:100%}@media (max-width:750px){.blockText-style--medium .blockText-title{margin-bottom:1em}}:root{--dp-font-family: Macan !important;--dp-input-padding: 1em 3em 1em 1.2em !important;--dp-font-size: 1.6rem !important;--dp-preview-font-size: 1.3rem !important;--dp-border-radius: .8rem !important;--dp-cell-size: 1.8em !important}.logisco-unit .projectServices-list{grid-template-columns:repeat(2,1fr)}@media (max-width:750px){.logisco-unit .projectServices-list{grid-template-columns:repeat(1,1fr)}}.unitHeader{position:relative;display:flex;flex-direction:column;gap:3.2em;padding-top:4em;padding-right:12.9rem;padding-bottom:8em;padding-left:12.9rem;background-color:#f3f8ff}.unitHeader .breadcrumb-list{margin-bottom:1em;padding-bottom:0;border-bottom:none}.unitSection{padding-right:12.9rem;padding-left:12.9rem}@media (max-width:750px){.unitSection{padding-right:1.6em;padding-left:1.6em}}.unitSection .blockText{margin-bottom:4rem}.unitHeader-background{position:absolute;top:75em;right:0;bottom:0;left:0;background-color:#fff}.unitHeader-topContainer{display:flex;align-items:center;justify-content:space-between}.unitHeader-bottomContainer{z-index:20;display:flex;gap:1.6em;justify-content:space-between}.unitHeader-imageWrapper--mobile{display:none}.unitHeader-label{display:inline-block;align-items:center}.unitHeader-labelDivider{margin-right:.3em}.unitHeader-address{color:#0385d4;text-decoration:underline}.unitHeader-callToActions{position:absolute;top:1.5em;right:1.5em;z-index:20;display:flex;gap:.8em;justify-content:flex-end;width:100%}.unitHeader-callToActions .icon-cms-social-share{color:#0f1223!important;font-size:1.3em}.unitHeader-link{display:block;height:max-content;margin-top:1.6em}.unitHeader-imageWrapper{position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;background-color:#fff;border-radius:.8em;aspect-ratio:1.5068226121}@supports not (aspect-ratio:calc(773 / 513)){.unitHeader-imageWrapper{position:relative}.unitHeader-imageWrapper:after{display:block;content:"";width:100%;padding-top:66.3648124191%}.unitHeader-imageWrapper>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper img{width:unset;max-width:100%;height:100%;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-bottomLeft{position:relative;display:flex;flex-direction:column;width:65%;height:100%}.unitHeader-bottomLeft .projectServices{margin:0}.unitHeader-bottomRight{display:flex;width:35%}.unitHeader-unitInfos{position:sticky;top:12.3em;width:100%;height:max-content;padding:2.4em 2.4em 1.7em;background-color:#fff;border-radius:.8em;box-shadow:0 0 1.2em #32325d1a}.unitHeader-unitInfos .c2a-download{padding-top:.8em}.unitHeader-price{display:flex;flex-wrap:wrap;gap:.8em;align-items:flex-end;padding-bottom:.8em;border-bottom:.1em solid #C9D5DC}.unitHeader-infosContainer{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6em;padding-top:1.6em}.unitHeader-info{display:flex;flex-direction:column}.unitHeader-infoLabel{color:#566772}.unitHeader-infoValue{color:#0f1223}.unitHeader-infosLink{display:flex;flex-direction:column;gap:.8em;margin-top:3.2em}.unitHeader-infosLink .c2a{justify-content:center;width:100%}.unitHeader-infosLink .c2a:last-child{margin-top:.8rem}.unitHeader-imageOverlay{display:none}@media (max-width:750px){#local-content-widget{height:550px!important}.unitHeader-labelDivider{display:none}.unitHeader-imageWrapper--mobile{position:relative;display:block;aspect-ratio:1.3333333333}@supports not (aspect-ratio:calc(360 / 270)){.unitHeader-imageWrapper--mobile{position:relative}.unitHeader-imageWrapper--mobile:after{display:block;content:"";width:100%;padding-top:75%}.unitHeader-imageWrapper--mobile>img{position:absolute;top:0;left:0;right:0;bottom:0}}.unitHeader-imageWrapper--mobile img{width:unset;max-width:100%;height:unset;max-height:100%;margin-right:auto;margin-left:auto}.unitHeader-imageWrapper--mobile .unitHeader-callToActions{display:flex}.unitHeader-imageWrapper--mobile .unitHeader-callToActions .icon-cms-social-share{font-size:1.5em}.unitHeader-callToActions,.unitHeader-imageWrapper{display:none}.unitHeader{padding:0;background-color:#fff}.unitHeader .projectServices{padding:3.2em 1.6em}.unitHeader-background{display:none}.unitHeader-imageWrapper{border-radius:0}.unitHeader-imageOverlay{position:absolute;z-index:10;display:block;background:linear-gradient(180deg,#02002405,#02002405),linear-gradient(180deg,#02002466,#00d4ff00 35%);top:0;right:0;bottom:0;left:0}.unitHeader-topContainer .breadcrumb-list{margin:0;padding:1rem 0 1rem 1.6em}.unitHeader-text{width:100%}.unitHeader-label{display:flex;flex-direction:column;align-items:flex-start;margin-top:1.6rem}.unitHeader-label--small{font-size:2.8rem}.unitHeader-label,.unitHeader-link{padding-right:1.6rem;padding-left:1.6rem}.unitHeader-bottomContainer{flex-direction:column}.unitHeader-bottomLeft,.unitHeader-bottomRight{width:100%}.unitHeader-bottomRight{order:-1}.unitHeader-infosGroup{position:fixed;top:unset;right:0;bottom:0;left:0;z-index:90;display:flex;flex-direction:column;justify-content:space-around;height:14.5em;padding:1em;background-color:#fff;box-shadow:0 -1em 1em #0000000d}.unitHeader-infosLink{position:relative}.unitHeader-infosLink .c2a{margin-top:0}.unitHeader-unitInfos{position:unset;padding:0 1.6em;box-shadow:none}.unitHeader-priceText{margin-bottom:0!important}}.tooltip-container{display:none}.tooltip-subtitle{margin-bottom:1.6em}.projectServices-title .tooltip-subtitle{margin-bottom:0;font-size:1.3rem}.projectServices{display:flex;flex-direction:column;margin-right:14.4em;margin-left:14.4em;padding-top:12em;padding-bottom:0;gap:4em}.unitHeader-bottomLeft .projectServices{padding-top:8em}.unitHeader-bottomLeft .projectServices+.projectServices{padding-top:2.4em}.projectServices-title{position:relative;display:flex;gap:.4em}.projectServices-title .icon-logisco-information{color:#0385d4;margin-top:.2em}.projectServices-list{display:grid;padding-top:2.4em;padding-bottom:4em;border-bottom:.1em solid #EEF0F2;grid-template-columns:repeat(3,1fr);column-gap:3.2em;row-gap:1.6em}.unitHeader-bottomLeft .projectServices-list{padding-bottom:2.4em}.projectServices-itemContainer{display:flex;gap:.8em;align-items:center}.projectServices-icon{font-size:3em}.projectServices-listItem{display:flex;gap:.8em;align-items:center}@media (max-width:750px){.projectServices{margin-right:1.6em;margin-left:1.6em}.projectServices-list{grid-template-columns:repeat(1,1fr);gap:2em 1em}}</style> | |
| 21 | + <script | |
| 22 | + id="locallogic-sdk" | |
| 23 | + nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf" | |
| 24 | + async | |
| 25 | + src="https://sdk.locallogic.co/sdks-js/1.23.32/index.umd.js" | |
| 26 | +></script> | |
| 27 | + | |
| 28 | +<script nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf"> | |
| 29 | + (function() { | |
| 30 | + let sdkLoaded = false; | |
| 31 | + let domReady = false; | |
| 32 | + | |
| 33 | + const globalOptions = { | |
| 34 | + locale: "fr", | |
| 35 | + appearance: { | |
| 36 | + theme: "day", | |
| 37 | + variables: { | |
| 38 | + "--ll-color-primary": "#002d5c", | |
| 39 | + "--ll-color-primary-variant1": "#219cd7", | |
| 40 | + "--ll-font-family": "Macan, sans-serif" | |
| 41 | + } | |
| 42 | + } | |
| 43 | + }; | |
| 44 | + | |
| 45 | + function tryInitialize() { | |
| 46 | + if (!sdkLoaded || !domReady) { | |
| 47 | + return; | |
| 48 | + } | |
| 49 | + | |
| 50 | + const sdkContainer = document.getElementById("local-content-widget"); | |
| 51 | + | |
| 52 | + if (!sdkContainer) { | |
| 53 | + return; | |
| 54 | + } | |
| 55 | + | |
| 56 | + const rect = sdkContainer.getBoundingClientRect(); | |
| 57 | + if (rect.width === 0 || rect.height === 0) { | |
| 58 | + setTimeout(tryInitialize, 100); | |
| 59 | + return; | |
| 60 | + } | |
| 61 | + | |
| 62 | + const lat = parseFloat(sdkContainer.dataset.localLogicLat); | |
| 63 | + const lng = parseFloat(sdkContainer.dataset.localLogicLng); | |
| 64 | + | |
| 65 | + const ll = LLSDKsJS("420d1d42c48e9186122576db04e678af.41a932d2-2a53-461a-b85f-b5dd90355bce", globalOptions); | |
| 66 | + | |
| 67 | + const sdkOptions = { | |
| 68 | + lat: lat, | |
| 69 | + lng: lng, | |
| 70 | + marker: { | |
| 71 | + lat: lat, | |
| 72 | + lng: lng | |
| 73 | + }, | |
| 74 | + mapProvider: { | |
| 75 | + name: "google", | |
| 76 | + key: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q" | |
| 77 | + }, | |
| 78 | + scoresMenu: { | |
| 79 | + categories: { | |
| 80 | + transport: { | |
| 81 | + hide: JSON.parse(sdkContainer.dataset.localLogicTransport || 'false'), | |
| 82 | + scores: { | |
| 83 | + pedestrian_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportPedestrianFriendly || 'false') }, | |
| 84 | + cycling_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCyclingFriendly || 'false') }, | |
| 85 | + transit_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportTransitFriendly || 'false') }, | |
| 86 | + car_friendly: { hide: JSON.parse(sdkContainer.dataset.localLogicTransportCarFriendly || 'false') } | |
| 87 | + } | |
| 88 | + }, | |
| 89 | + education: { | |
| 90 | + hide: JSON.parse(sdkContainer.dataset.localLogicEducation || 'false'), | |
| 91 | + scores: { | |
| 92 | + daycares: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationDaycares || 'false') }, | |
| 93 | + primary_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationPrimarySchools || 'false') }, | |
| 94 | + high_schools: { hide: JSON.parse(sdkContainer.dataset.localLogicEducationHighSchools || 'false') } | |
| 95 | + } | |
| 96 | + }, | |
| 97 | + amenities: { | |
| 98 | + hide: JSON.parse(sdkContainer.dataset.localLogicAmenities || 'false'), | |
| 99 | + scores: { | |
| 100 | + shopping: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesShopping || 'false') }, | |
| 101 | + groceries: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesGroceries || 'false') }, | |
| 102 | + restaurants: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesRestaurants || 'false') }, | |
| 103 | + cafes: { hide: JSON.parse(sdkContainer.dataset.localLogicAmenitiesCafes || 'false') } | |
| 104 | + } | |
| 105 | + }, | |
| 106 | + character: { | |
| 107 | + hide: JSON.parse(sdkContainer.dataset.localLogicCharacter || 'false'), | |
| 108 | + scores: { | |
| 109 | + nightlife: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterNightlife || 'false') }, | |
| 110 | + vibrant: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterVibrant || 'false') }, | |
| 111 | + historic: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterHistoric || 'false') }, | |
| 112 | + quiet: { hide: JSON.parse(sdkContainer.dataset.localLogicCharacterQuiet || 'false') } | |
| 113 | + } | |
| 114 | + }, | |
| 115 | + nature: { | |
| 116 | + hide: JSON.parse(sdkContainer.dataset.localLogicNature || 'false'), | |
| 117 | + scores: { | |
| 118 | + parks: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureParks || 'false') }, | |
| 119 | + greenery: { hide: JSON.parse(sdkContainer.dataset.localLogicNatureGreenery || 'false') } | |
| 120 | + } | |
| 121 | + }, | |
| 122 | + wellness: { hide: JSON.parse(sdkContainer.dataset.localLogicWellness || 'false') }, | |
| 123 | + health: { hide: JSON.parse(sdkContainer.dataset.localLogicHealth || 'false') } | |
| 124 | + } | |
| 125 | + } | |
| 126 | + }; | |
| 127 | + | |
| 128 | + ll.create("local-content", sdkContainer, sdkOptions); | |
| 129 | + } | |
| 130 | + | |
| 131 | + document.getElementById('locallogic-sdk').addEventListener('load', function() { | |
| 132 | + sdkLoaded = true; | |
| 133 | + tryInitialize(); | |
| 134 | + }); | |
| 135 | + | |
| 136 | + if (document.readyState === 'loading') { | |
| 137 | + document.addEventListener('DOMContentLoaded', function() { | |
| 138 | + domReady = true; | |
| 139 | + tryInitialize(); | |
| 140 | + }); | |
| 141 | + } else { | |
| 142 | + domReady = true; | |
| 143 | + tryInitialize(); | |
| 144 | + } | |
| 145 | + })(); | |
| 146 | +</script> | |
| 147 | + | |
| 148 | + <script async src="https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="f89f0a00-9a89-4d45-9a32-8a86321619f9"></script> | |
| 149 | + <script type="text/javascript" nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf"> | |
| 150 | + function OptanonWrapper() {} | |
| 151 | + </script> | |
| 152 | + | |
| 153 | + <link rel="icon" type="image/png" href="https://logisco.com/theme/images/favicon_logisco-57x57.png" sizes="57x57" /> | |
| 154 | + | |
| 155 | + <!-- TODO this is blocking.... revert to old script --> | |
| 156 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf" /> <script nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf"> | |
| 157 | + window.Cheetah = { | |
| 158 | + locale: 'fr', | |
| 159 | + themeDir: "theme", | |
| 160 | + gMapKey: "AIzaSyAhfnWkputugSwNzqTgHJkLVaDaPDVod1Q", | |
| 161 | + isMobile: false, | |
| 162 | + chatbotBaseUrl: "https:\/\/chatbot-api.logisco.com\/v1", | |
| 163 | + form: { | |
| 164 | + maxFileSize: parseInt("4"), | |
| 165 | + maxFileCount: parseInt("5"), | |
| 166 | + fileExtensions: ["jpg","jpeg","png","docx","doc","pdf","txt"] }, | |
| 167 | + formSecurity: { | |
| 168 | + default: 'turnstile', | |
| 169 | + isDisabled: false, | |
| 170 | + config: {"fallback":["turnstile","captcha"],"captcha":{"key":""},"turnstile":{"key":"0x4AAAAAAAc7m33H9T6pSzmR"}} }, | |
| 171 | + reservation: { | |
| 172 | + locationUrl: "https:\/\/logisco.com\/fr\/appartements-a-louer" } | |
| 173 | + } | |
| 174 | + </script> | |
| 175 | + | |
| 176 | + | |
| 177 | + <noscript> | |
| 178 | + <link rel="preload" as="style" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf" /><link rel="stylesheet" href="https://logisco.com/theme/build/assets/main-BWJUvbd8.css" nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf" /> </noscript> | |
| 179 | + <style nonce="tQRjQY6ClgI7xcxKQMzIkE9nWtGo1HKf"> .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } @media (max-width: 750px) { .id_75b91a7ca2a71e492eac7cd5af1d926b6013d11e { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { width: 100%; } } .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_4f9de2cf2b5c2fe600683f36917305105bb82785 { grid-template-columns: 1fr; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { width: 100%; } } .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr 3fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_3d2e7b1607f09492d8adcb3d1d0368bac0e49c2f { grid-template-columns: 1fr; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { width: 100%; } } .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 .carousel-wrapper { grid-template-columns: 1fr 1fr 1fr; } @media (max-width: 750px) { .id_dc5b677777a9a7b8380ed7e3fb1b46cebe7a3d99 { grid-template-columns: ; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { width: 100%; } } .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_eca944e94897a9b2d2823841936b19315bf3c414 { grid-template-columns: 1fr; } } .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } @media (max-width: 750px) { .id_adda4a552a945cd408fadbd3d446a0b7eb8caa45 { width: 100%; } } .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } @media (max-width: 750px) { .id_750d3332f0d42f874d235808f8c66a7d1d9c6129 { width: 100%; } } .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } @media (max-width: 750px) { .id_899ed6ca67934a6ba6fb1c4986905cc23697cb72 { width: 100%; } } .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } @media (max-width: 750px) { .id_bd3372f941d44ce599c4d7e3d2d48ebcb71e0c01 { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { width: 100%; } } .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; } @media (max-width: 750px) { .id_53475154bf3a1ec91c439fa85367d8e43e69cb6d { grid-template-columns: 1fr; } } .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } @media (max-width: 750px) { .id_78016daab434b3ee1ba57a12c90c00c717ef9ca6 { width: 100%; } } .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 100%; } @media (max-width: 750px) { .id_2e9079ba2f60fcfd0c791b2f8054c15ca6d0e146 { width: 80%; } } </style> | |
| 180 | + <!-- SEO --> | |
Diff truncated — file too large.