<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><clipPath id="a"><path d="M0 0h100v100H0z"/></clipPath></defs><g clip-path="url(#a)"><path fill="#fff" d="M0 0h100v100H0z"/><path d="M100 100H0V0h100v100zM40.665 75.539a6.446 6.446 0 1 0 6.447 6.447 6.376 6.376 0 0 0-.3-1.843l7.346-7.343a19.808 19.808 0 1 0 15.048-35.32h.015v-9.025a6.959 6.959 0 0 0 4.013-6.273v-.211a6.971 6.971 0 0 0-6.952-6.953h-.212a6.97 6.97 0 0 0-6.952 6.953v.211a6.957 6.957 0 0 0 4.013 6.273V37.5a19.745 19.745 0 0 0-9.376 4.126l-24.82-19.331a7.919 7.919 0 0 0-4.148-9.145 7.845 7.845 0 0 0-3.5-.817 7.919 7.919 0 1 0 3.938 14.786l24.4 19a19.775 19.775 0 0 0 .3 22.3l-7.426 7.427a6.362 6.362 0 0 0-1.834-.307zm25.522-8.321h-.023a10.164 10.164 0 0 1 .023-20.328h.013a10.166 10.166 0 0 1-.012 20.333z" fill="#ff7a59"/></g></svg>
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
	<!-- wp:columns {"verticalAlignment":"center","align":"wide","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|50"}}}} -->
	<div class="wp-block-columns alignwide are-vertically-aligned-center">
		<!-- wp:column {"verticalAlignment":"center","width":"50%"} -->
		<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:50%">
			<!-- wp:heading -->
			<h2 class="wp-block-heading">Enhance your architectural journey with the Études Architect app.</h2>
			<!-- /wp:heading -->

			<!-- wp:list {"style":{"typography":{"lineHeight":"1.75"}},"className":"is-style-checkmark-list"} -->
			<ul class="is-style-checkmark-list" style="line-height:1.75">
				<!-- wp:list-item -->
				<li>Collaborate with fellow architects.</li>
				<!-- /wp:list-item -->

				<!-- wp:list-item -->
				<li>Showcase your projects.</li>
				<!-- /wp:list-item -->

				<!-- wp:list-item -->
				<li>Experience the world of architecture.</li>
				<!-- /wp:list-item -->
			</ul>
			<!-- /wp:list -->

			<!-- wp:buttons -->
			<div class="wp-block-buttons">
				<!-- wp:button -->
				<div class="wp-block-button">
					<a class="wp-block-button__link wp-element-button">Download app</a>
				</div>
				<!-- /wp:button -->

				<!-- wp:button {"className":"is-style-outline"} -->
				<div class="wp-block-button is-style-outline">
					<a class="wp-block-button__link wp-element-button">How it works</a>
				</div>
				<!-- /wp:button -->
			</div>
			<!-- /wp:buttons -->
		</div>
		<!-- /wp:column -->

		<!-- wp:column {"verticalAlignment":"center","width":"50%"} -->
		<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:50%">
			<!-- wp:image {"aspectRatio":"4/3","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded"} -->
			<figure class="wp-block-image size-full is-style-rounded">
				<img src="https://dailyposttv.in/wp-content/themes/dailyposttv/assets/images/abstract-geometric-art.webp" alt="White abstract geometric artwork from Dresden, Germany" style="aspect-ratio:4/3;object-fit:cover" />
			</figure>
			<!-- /wp:image -->
		</div>
		<!-- /wp:column -->
	</div>
	<!-- /wp:columns -->
</div>
<!-- /wp:group -->
/**
 * URL utilities - scroll-to-UUID and edit-draft-from-URL
 *
 * Reads:   SFE.TIMING (set early in frontend-inline-edit.js)
 * Exposes: SFE.UrlUtils  { scrollToUUID, handleEditDraftFromURL }
 *
 * This module self-registers its own DOMContentLoaded and hashchange listeners,
 * so those can be removed from frontend-inline-edit.js entirely.
 */

(function() {
	'use strict';

	window.MWP      = window.MWP || {};
	window.MWP.SFE  = window.MWP.SFE || {};
	const SFE       = window.MWP.SFE;
	SFE.ManagerData = SFE.ManagerData || {};

	/**
	 * Custom scroll function to smoothly scroll to a specific UUID
	 */
	function scrollToUUID() {
		if (!location.hash) return;

		const uuid = decodeURIComponent(location.hash.slice(1));
		const el   = document.querySelector(
			`[data-mwp-sfe-uuid="${CSS.escape(uuid)}"]`
		);
		if (!el) return;

		requestAnimationFrame(() => {
			requestAnimationFrame(() => {
				const rect = el.getBoundingClientRect();
				const top  =
					window.pageYOffset +
					rect.top -
					window.innerHeight / 2 +
					rect.height / 2;

				window.scrollTo({
					top,
					behavior: 'smooth'
				});

				el.focus({ preventScroll: true });
			});
		});
	}

	/**
	 * Auto-trigger draft edit mode if URL contains action=edit-draft
	 */
	function handleEditDraftFromURL() {
		const TIMING    = SFE.TIMING;
		const urlParams = new URLSearchParams(window.location.search);
		const action    = urlParams.get('action');
		
		if (action === 'edit-draft' && location.hash) {
			const uuid = decodeURIComponent(location.hash.slice(1));
			if (!uuid) return;
			
			const element = document.querySelector(`[data-mwp-sfe-uuid="${CSS.escape(uuid)}"]`);
			if (!element) return;
			
			// Mark element for auto-edit after preview loads
			element.dataset.autoEditDraft = 'true';
			
			// Wait for page to settle, then trigger preview
			setTimeout(() => {
				// CSS [data-mwp-sfe-uuid] handles scroll
				element.scrollIntoView({ behavior: 'smooth', block: 'start' });
				
				// Trigger click to start preview
				setTimeout(() => {
					element.click();
				}, TIMING.TRIGGER_DELAY);
			}, 100);
		}
	}

	// Initial load
	document.addEventListener('DOMContentLoaded', () => {
		scrollToUUID();
		handleEditDraftFromURL();
	});

	// Hash changes (clicks, back/forward)
	window.addEventListener('hashchange', scrollToUUID);

	SFE.UrlUtils = { scrollToUUID, handleEditDraftFromURL };

})();<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//dailyposttv.in/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://dailyposttv.in/post-sitemap.xml</loc>
		<lastmod>2026-09-09T23:56:16+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/post-sitemap2.xml</loc>
		<lastmod>2026-07-31T22:13:08+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/post-sitemap3.xml</loc>
		<lastmod>2026-09-09T23:56:16+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/page-sitemap.xml</loc>
		<lastmod>2026-09-09T18:14:59+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap.xml</loc>
		<lastmod>2026-09-09T17:09:17+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap2.xml</loc>
		<lastmod>2025-04-07T11:08:47+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap3.xml</loc>
		<lastmod>2025-04-27T06:01:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap4.xml</loc>
		<lastmod>2025-05-13T12:00:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap5.xml</loc>
		<lastmod>2025-05-29T08:16:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap6.xml</loc>
		<lastmod>2025-06-14T05:49:17+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap7.xml</loc>
		<lastmod>2025-07-01T11:29:12+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap8.xml</loc>
		<lastmod>2025-07-17T09:48:45+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap9.xml</loc>
		<lastmod>2025-08-02T08:34:03+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap10.xml</loc>
		<lastmod>2025-08-19T06:39:19+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap11.xml</loc>
		<lastmod>2025-09-05T14:25:00+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap12.xml</loc>
		<lastmod>2025-09-22T11:38:31+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap13.xml</loc>
		<lastmod>2025-10-11T04:06:20+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap14.xml</loc>
		<lastmod>2025-10-29T06:23:01+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap15.xml</loc>
		<lastmod>2025-11-14T15:14:00+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap16.xml</loc>
		<lastmod>2025-12-02T03:36:37+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap17.xml</loc>
		<lastmod>2025-12-24T05:54:03+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap18.xml</loc>
		<lastmod>2026-01-16T10:06:23+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap19.xml</loc>
		<lastmod>2026-02-07T09:52:01+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap20.xml</loc>
		<lastmod>2026-03-01T14:31:05+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap21.xml</loc>
		<lastmod>2026-03-26T12:13:21+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap22.xml</loc>
		<lastmod>2026-04-17T16:50:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap23.xml</loc>
		<lastmod>2026-05-14T05:12:53+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap24.xml</loc>
		<lastmod>2026-07-07T08:43:28+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap25.xml</loc>
		<lastmod>2026-08-14T10:53:37+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-sitemap26.xml</loc>
		<lastmod>2026-09-09T17:09:17+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/web-story-sitemap.xml</loc>
		<lastmod>2026-07-31T16:08:19+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/category-sitemap.xml</loc>
		<lastmod>2026-09-09T23:56:16+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/post_tag-sitemap.xml</loc>
		<lastmod>2026-09-09T01:44:46+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/news-categories-sitemap.xml</loc>
		<lastmod>2026-09-09T17:09:17+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/state-sitemap.xml</loc>
		<lastmod>2026-08-11T07:51:30+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://dailyposttv.in/author-sitemap.xml</loc>
		<lastmod>2026-09-08T23:46:51+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->