/** * Observe how the user enters content into the comment form in order to determine whether it's a bot or not. * * Note that no actual input is being saved here, only counts and timings between events. */ ( function() { // Passive event listeners are guaranteed to never call e.preventDefault(), // but they're not supported in all browsers. Use this feature detection // to determine whether they're available for use. var supportsPassive = false; try { var opts = Object.defineProperty( {}, 'passive', { get : function() { supportsPassive = true; } } ); window.addEventListener( 'testPassive', null, opts ); window.removeEventListener( 'testPassive', null, opts ); } catch ( e ) {} function init() { var input_begin = ''; var keydowns = {}; var lastKeyup = null; var lastKeydown = null; var keypresses = []; var modifierKeys = []; var correctionKeys = []; var lastMouseup = null; var lastMousedown = null; var mouseclicks = []; var mousemoveTimer = null; var lastMousemoveX = null; var lastMousemoveY = null; var mousemoveStart = null; var mousemoves = []; var touchmoveCountTimer = null; var touchmoveCount = 0; var lastTouchEnd = null; var lastTouchStart = null; var touchEvents = []; var scrollCountTimer = null; var scrollCount = 0; var correctionKeyCodes = [ 'Backspace', 'Delete', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'Home', 'End', 'PageUp', 'PageDown' ]; var modifierKeyCodes = [ 'Shift', 'CapsLock' ]; var forms = document.querySelectorAll( 'form[method=post]' ); for ( var i = 0; i < forms.length; i++ ) { var form = forms[i]; var formAction = form.getAttribute( 'action' ); // Ignore forms that POST directly to other domains; these could be things like payment forms. if ( formAction ) { // Check that the form is posting to an external URL, not a path. if ( formAction.indexOf( 'http://' ) == 0 || formAction.indexOf( 'https://' ) == 0 ) { if ( formAction.indexOf( 'http://' + window.location.hostname + '/' ) != 0 && formAction.indexOf( 'https://' + window.location.hostname + '/' ) != 0 ) { continue; } } } form.addEventListener( 'submit', function () { var ak_bkp = prepare_timestamp_array_for_request( keypresses ); var ak_bmc = prepare_timestamp_array_for_request( mouseclicks ); var ak_bte = prepare_timestamp_array_for_request( touchEvents ); var ak_bmm = prepare_timestamp_array_for_request( mousemoves ); var input_fields = { // When did the user begin entering any input? 'bib': input_begin, // When was the form submitted? 'bfs': Date.now(), // How many keypresses did they make? 'bkpc': keypresses.length, // How quickly did they press a sample of keys, and how long between them? 'bkp': ak_bkp, // How quickly did they click the mouse, and how long between clicks? 'bmc': ak_bmc, // How many mouseclicks did they make? 'bmcc': mouseclicks.length, // When did they press modifier keys (like Shift or Capslock)? 'bmk': modifierKeys.join( ';' ), // When did they correct themselves? e.g., press Backspace, or use the arrow keys to move the cursor back 'bck': correctionKeys.join( ';' ), // How many times did they move the mouse? 'bmmc': mousemoves.length, // How many times did they move around using a touchscreen? 'btmc': touchmoveCount, // How many times did they scroll? 'bsc': scrollCount, // How quickly did they perform touch events, and how long between them? 'bte': ak_bte, // How many touch events were there? 'btec' : touchEvents.length, // How quickly did they move the mouse, and how long between moves? 'bmm' : ak_bmm }; var akismet_field_prefix = 'ak_'; if ( this.getElementsByClassName ) { // Check to see if we've used an alternate field name prefix. We store this as an attribute of the container around some of the Akismet fields. var possible_akismet_containers = this.getElementsByClassName( 'akismet-fields-container' ); for ( var containerIndex = 0; containerIndex < possible_akismet_containers.length; containerIndex++ ) { var container = possible_akismet_containers.item( containerIndex ); if ( container.getAttribute( 'data-prefix' ) ) { akismet_field_prefix = container.getAttribute( 'data-prefix' ); break; } } } for ( var field_name in input_fields ) { var field = document.createElement( 'input' ); field.setAttribute( 'type', 'hidden' ); field.setAttribute( 'name', akismet_field_prefix + field_name ); field.setAttribute( 'value', input_fields[ field_name ] ); this.appendChild( field ); } }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keydown', function ( e ) { // If you hold a key down, some browsers send multiple keydown events in a row. // Ignore any keydown events for a key that hasn't come back up yet. if ( e.key in keydowns ) { return; } var keydownTime = ( new Date() ).getTime(); keydowns[ e.key ] = [ keydownTime ]; if ( ! input_begin ) { input_begin = keydownTime; } // In some situations, we don't want to record an interval since the last keypress -- for example, // on the first keypress, or on a keypress after focus has changed to another element. Normally, // we want to record the time between the last keyup and this keydown. But if they press a // key while already pressing a key, we want to record the time between the two keydowns. var lastKeyEvent = Math.max( lastKeydown, lastKeyup ); if ( lastKeyEvent ) { keydowns[ e.key ].push( keydownTime - lastKeyEvent ); } lastKeydown = keydownTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keyup', function ( e ) { if ( ! ( e.key in keydowns ) ) { // This key was pressed before this script was loaded, or a mouseclick happened during the keypress, or... return; } var keyupTime = ( new Date() ).getTime(); if ( 'TEXTAREA' === e.target.nodeName || 'INPUT' === e.target.nodeName ) { if ( -1 !== modifierKeyCodes.indexOf( e.key ) ) { modifierKeys.push( keypresses.length - 1 ); } else if ( -1 !== correctionKeyCodes.indexOf( e.key ) ) { correctionKeys.push( keypresses.length - 1 ); } else { // ^ Don't record timings for keys like Shift or backspace, since they // typically get held down for longer than regular typing. var keydownTime = keydowns[ e.key ][0]; var keypress = []; // Keypress duration. keypress.push( keyupTime - keydownTime ); // Amount of time between this keypress and the previous keypress. if ( keydowns[ e.key ].length > 1 ) { keypress.push( keydowns[ e.key ][1] ); } keypresses.push( keypress ); } } delete keydowns[ e.key ]; lastKeyup = keyupTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusin", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusout", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); } document.addEventListener( 'mousedown', function ( e ) { lastMousedown = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mouseup', function ( e ) { if ( ! lastMousedown ) { // If the mousedown happened before this script was loaded, but the mouseup happened after... return; } var now = ( new Date() ).getTime(); var mouseclick = []; mouseclick.push( now - lastMousedown ); if ( lastMouseup ) { mouseclick.push( lastMousedown - lastMouseup ); } mouseclicks.push( mouseclick ); lastMouseup = now; // If the mouse has been clicked, don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mousemove', function ( e ) { if ( mousemoveTimer ) { clearTimeout( mousemoveTimer ); mousemoveTimer = null; } else { mousemoveStart = ( new Date() ).getTime(); lastMousemoveX = e.offsetX; lastMousemoveY = e.offsetY; } mousemoveTimer = setTimeout( function ( theEvent, originalMousemoveStart ) { var now = ( new Date() ).getTime() - 500; // To account for the timer delay. var mousemove = []; mousemove.push( now - originalMousemoveStart ); mousemove.push( Math.round( Math.sqrt( Math.pow( theEvent.offsetX - lastMousemoveX, 2 ) + Math.pow( theEvent.offsetY - lastMousemoveY, 2 ) ) ) ); if ( mousemove[1] > 0 ) { // If there was no measurable distance, then it wasn't really a move. mousemoves.push( mousemove ); } mousemoveStart = null; mousemoveTimer = null; }, 500, e, mousemoveStart ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchmove', function ( e ) { if ( touchmoveCountTimer ) { clearTimeout( touchmoveCountTimer ); } touchmoveCountTimer = setTimeout( function () { touchmoveCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchstart', function ( e ) { lastTouchStart = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchend', function ( e ) { if ( ! lastTouchStart ) { // If the touchstart happened before this script was loaded, but the touchend happened after... return; } var now = ( new Date() ).getTime(); var touchEvent = []; touchEvent.push( now - lastTouchStart ); if ( lastTouchEnd ) { touchEvent.push( lastTouchStart - lastTouchEnd ); } touchEvents.push( touchEvent ); lastTouchEnd = now; // Don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'scroll', function ( e ) { if ( scrollCountTimer ) { clearTimeout( scrollCountTimer ); } scrollCountTimer = setTimeout( function () { scrollCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); } /** * For the timestamp data that is collected, don't send more than `limit` data points in the request. * Choose a random slice and send those. */ function prepare_timestamp_array_for_request( a, limit ) { if ( ! limit ) { limit = 100; } var rv = ''; if ( a.length > 0 ) { var random_starting_point = Math.max( 0, Math.floor( Math.random() * a.length - limit ) ); for ( var i = 0; i < limit && i < a.length; i++ ) { rv += a[ random_starting_point + i ][0]; if ( a[ random_starting_point + i ].length >= 2 ) { rv += "," + a[ random_starting_point + i ][1]; } rv += ";"; } } return rv; } if ( document.readyState !== 'loading' ) { init(); } else { document.addEventListener( 'DOMContentLoaded', init ); } })();{"id":736,"date":"2021-05-27T09:59:30","date_gmt":"2021-05-27T02:59:30","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=736"},"modified":"2021-08-30T17:08:20","modified_gmt":"2021-08-30T10:08:20","slug":"nghia-trang-yen-ky","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/nghia-trang-yen-ky\/","title":{"rendered":"H\u01b0\u1edbng d\u1eabn \u0111\u01b0\u1eddng \u0111i ngh\u0129a trang Y\u00ean K\u1ef3 t\u1ea1i H\u00e0 N\u1ed9i"},"content":{"rendered":"

Ngh\u0129a trang Y\u00ean K\u1ef3<\/em><\/strong><\/a> thu\u1ed9c x\u00e3 Ph\u00fa S\u01a1n, huy\u1ec7n Ba V\u00ec, th\u00e0nh ph\u1ed1 H\u00e0 N\u1ed9i. Ngh\u0129a trang n\u00e0y \u0111\u01b0\u1ee3c th\u00e0nh l\u1eadp t\u1eeb n\u0103m 1963 c\u00f3 di\u1ec7n t\u00edch l\u00ean t\u1edbi 384.000m2. Ngh\u0129a trang c\u0169ng \u0111\u01b0\u1ee3c m\u1edf r\u1ed9ng th\u00eam v\u1edbi di\u1ec7n t\u00edch 203,18ha. \u0110\u00e2y c\u00f3 th\u1ec3 coi l\u00e0 ngh\u0129a trang c\u1ea3i t\u00e1ng l\u1edbn nh\u1ea5t H\u00e0 N\u1ed9i. V\u1edbi c\u00e1ch quy ho\u1ea1ch m\u1edbi t\u1ea1o cho c\u00f4ng vi\u00ean ngh\u0129a trang xanh h\u01a1n, nhi\u1ec1u \u0111\u01b0\u1eddng l\u1ed1i h\u01a1n th\u00ec ng\u00e0y c\u00e0ng c\u00f3 nhi\u1ec1u ng\u01b0\u1eddi ch\u1ecdn n\u01a1i \u0111\u00e2y l\u00e0m n\u01a1i t\u1ed5 ch\u1ee9c tang l\u1ec5<\/a> v\u00e0 mai t\u00e1ng.<\/em><\/p>\n

\"Ngh\u0129a
Ngh\u0129a trang Y\u00ean K\u1ef3 thu\u1ed9c huy\u1ec7n Ba V\u00ec, H\u00e0 N\u1ed9i<\/figcaption><\/figure>\n

V\u1ecb tr\u00ed \u0111\u1ecba l\u00fd c\u1ee7a ngh\u0129a trang.<\/strong><\/h2>\n

Ngh\u0129a trang Y\u00ean K\u1ef3 n\u1eb1m gi\u1eefa x\u00e3 Ph\u00fa S\u01a1n v\u00e0 x\u00e3 Th\u00e1i H\u00f2a thu\u1ed9c huy\u1ec7n Ba V\u00ec, th\u00e0nh ph\u1ed1 H\u00e0 N\u1ed9i. Ph\u00eda B\u1eafc ngh\u0129a trang gi\u00e1p v\u1edbi \u0111\u1ea5t n\u00f4ng nghi\u1ec7p x\u00e3 Ph\u00fa S\u01a1n; ph\u00eda T\u00e2y gi\u00e1p v\u1edbi h\u00e0nh lang b\u1ea3o v\u1ec7 s\u00f4ng \u0110\u00e0, khu d\u00e2n c\u01b0 Ph\u00fa S\u01a1n v\u00e0 \u0111\u1ea5t n\u00f4ng nghi\u1ec7p. C\u00f2n ph\u00eda \u0110\u00f4ng, \u0110\u00f4ng Nam gi\u00e1p v\u1edbi Y\u00ean K\u1ef3 c\u0169 c\u00f9ng tuy\u1ebfn giao th\u00f4ng Qu\u1ed1c l\u1ed9 32 \u0111i h\u1ed3 su\u1ed1i Hai. Ph\u00eda Nam l\u1ea1i gi\u00e1p t\u1ec9nh l\u1ed9 411C v\u00e0 khu d\u00e2n c\u01b0 Ph\u00fa S\u01a1n.<\/p>\n

\u0110\u01b0\u1eddng \u0111i \u0111\u1ebfn ngh\u0129a trang c\u0169ng kh\u00f4ng h\u1ec1 kh\u00f3. T\u1eeb H\u00e0 N\u1ed9i b\u1ea1n \u0111i \u0110\u1ea1i L\u1ed9 Th\u0103ng Long, \u0111i ti\u1ebfp theo qu\u1ed1c l\u1ed9 32 s\u1ebd t\u1edbi ngh\u0129a trang Y\u00ean K\u1ef3. \u0110\u01b0\u1eddng h\u01a1i h\u1eb9p n\u00ean b\u1ea1n c\u1ea7n c\u1ea9n th\u1eadn khi \u0111i tr\u00ean \u0111\u01b0\u1eddng.<\/p>\n

>>> Xem th\u00eam:<\/strong> Gi\u00e1 \u0111\u1ea5t ngh\u0129a trang V\u0129nh H\u1eb1ng Ba V\u00ec chi t\u1ebft (c\u1eadp nh\u1eadt 2021)<\/a><\/em><\/p>\n

Quy ho\u1ea1ch c\u00f4ng vi\u00ean ngh\u0129a trang <\/strong><\/h2>\n

Hi\u1ec7n t\u1ea1i ngh\u0129a trang c\u00f3 h\u01a1n 100.000 m\u1ed9 c\u00f3 danh v\u00e0 20.000 ng\u00f4i m\u1ed9 v\u00f4 danh \u0111\u00e3 \u0111\u01b0\u1ee3c c\u1ea3i t\u00e1ng. H\u01a1n 20.000 ng\u00f4i m\u1ed9 n\u00e0y n\u1eb1m r\u1ea3i r\u00e1c \u1edf nhi\u1ec1u khu kh\u00e1c nhau nh\u01b0ng ch\u1ee7 y\u1ebfu n\u1eb1m trong khu v\u1ef1c H\u00e0 N\u1ed9i. M\u1eb7c d\u00f9 \u0111\u00e3 quy ho\u1ea1ch chia h\u00e0ng l\u1ed1i v\u00e0 \u0111\u00e1nh s\u1ed1 th\u1ee9 t\u1ef1 r\u00f5 r\u00e0ng nh\u01b0ng do qu\u1ea3n l\u00fd l\u1ecfng, m\u1ed7i ng\u00f4i m\u1ed9 l\u1ea1i x\u00e2y b\u00e8 ra khi\u1ebfn l\u1ed1i \u0111i v\u00e0o ng\u00e0y c\u00e0ng ch\u1eadt h\u1eb9p.<\/p>\n

Trong quy ho\u1ea1ch, di\u1ec7n t\u00edch c\u00f4ng vi\u00ean ngh\u0129a trang s\u1ebd \u0111\u01b0\u1ee3c m\u1edf r\u1ed9ng th\u00eam 203,18ha. Ph\u1ea7n \u0111\u1ea5t \u0111\u01b0\u1ee3c m\u1edf r\u1ed9ng th\u00eam n\u00e0y thu\u1ed9c \u0111\u1ecba b\u00e0n x\u00e3 Ph\u00fa S\u01a1n v\u00e0 x\u00e3 Th\u00e1i H\u00f2a.<\/p>\n

\"Ngh\u0129a
Ngh\u0129a trang Y\u00ean K\u1ef3 \u0111\u01b0\u1ee3c nhi\u1ec1u ng\u01b0\u1eddi l\u1ef1a ch\u1ecdn \u0111\u1ec3 mai t\u00e1ng ng\u01b0\u1eddi th\u00e2n.<\/figcaption><\/figure>\n

Di\u1ec7n t\u00edch ph\u1ea7n \u0111\u1ea5t m\u1edf r\u1ed9ng \u0111\u01b0\u1ee3c chia l\u00e0 nhi\u1ec1u khu v\u1ef1c kh\u00e1c nhau trong c\u00f4ng vi\u00ean. Trong \u0111\u00f3 c\u00f3 t\u1edbi 66,32 ha di\u1ec7n t\u00edch \u0111\u1ea5t \u0111\u1ec3 tr\u1ed3ng c\u00e2y xanh, x\u00e2y d\u1ef1ng c\u00f4ng vi\u00ean, c\u00e1ch ly, c\u00e2y xanh d\u1ecdc tuy\u1ebfn giao th\u00f4ng v\u00e0 c\u1ea3nh quan c\u00f4ng vi\u00ean. C\u00f2n kho\u1ea3ng 56,68ha ( chi\u1ebfm 27,9%) l\u00e0 di\u1ec7n t\u00edch \u0111\u1ea5t c\u00e1t t\u00e1ng bao g\u1ed3m 34 khu v\u00e0 c\u00f3 k\u00fd hi\u1ec7u t\u1eeb C1 cho \u0111\u1ebfn C3. Di\u1ec7n t\u00edch \u0111\u1ea5t hung t\u00e1ng chi\u1ebfm kho\u1ea3ng 13,29ha bao g\u1ed3m 6 khu c\u00f3 k\u00fd hi\u1ec7u t\u1eeb A1 cho \u0111\u1ebfn A6. C\u00f2n h\u01a1n 5,94ha \u0111\u1ea5t an t\u00e1ng ch\u00f4n m\u1ed9t l\u1ea7n k\u00fd hi\u1ec7u t\u1eeb B1 \u0111\u1ebfn B3 v\u00e0 c\u00f3 t\u1edbi 3 khu.<\/p>\n

T\u1ed5ng di\u1ec7n t\u00edch quy ho\u1ea1ch c\u1ee7a ngh\u0129a trang l\u00e0 582,91ha. \u0110\u00e2y l\u00e0 m\u1ed9t lo\u1ea1i h\u00ecnh ngh\u0129a trang m\u1edbi hay c\u00f2n \u0111\u01b0\u1ee3c g\u1ecdi l\u00e0 ngh\u0129a trang xanh. N\u01a1i \u0111\u00e2y \u0111\u01b0\u1ee3c nhi\u1ec1u ng\u01b0\u1eddi l\u1ef1a ch\u1ecdn \u0111\u1ec3 l\u00e0m n\u01a1i an ngh\u1ec9 cho ng\u01b0\u1eddi th\u00e2n c\u1ee7a m\u00ecnh.<\/p>\n

C\u1ea3nh quan ngh\u0129a trang.<\/strong><\/h2>\n

To\u00e0n b\u1ed9 khu ngh\u0129a trang l\u00e0 m\u1ed9t qu\u1ea7n th\u1ec3 t\u00e2m linh th\u00f4ng qua c\u00e1c ch\u1ee7 th\u1ec3 l\u00e0 c\u00e1c khu m\u1ed9 n\u1eb1m trong kh\u00f4ng gian xanh t\u0129nh l\u1eb7ng v\u00e0 v\u0129nh h\u1eb1ng. C\u00e1c ki\u1ebfn tr\u00fac t\u1ea1i ngh\u0129a trang \u0111\u01b0\u1ee3c thi\u1ebft k\u1ebf theo phong c\u00e1ch truy\u1ec1n th\u1ed1ng trang nghi\u00eam. L\u1ed1i ki\u1ebfn tr\u00fac \u0111\u01b0\u1ee3c ph\u1ed1i h\u00e0i h\u00f2a v\u00e0 h\u1ee3p l\u00fd v\u1edbi khung c\u1ea3nh chung t\u1ea1o n\u00ean c\u00e1c \u0111i\u1ec3m nh\u1ea5n \u0111\u1eb9p m\u1eaft.<\/p>\n

\"Khu\u00f4n
Khu\u00f4n vi\u00ean c\u1ee7a ngh\u0129a trang.<\/figcaption><\/figure>\n

Khung c\u1ea3nh chung\u00a0 trong c\u00f4ng vi\u00ean c\u00f3 t\u1ef7 l\u1ec7 c\u00e2y xanh v\u00e0 m\u1eb7t n\u01b0\u1edbc chi\u1ebfm m\u1ed9t ph\u1ea7n quan tr\u1ecdng. Tuy l\u00e0 ph\u1ea7n \u0111\u1ec7m nh\u01b0ng c\u00e2y xanh gi\u00fap khu\u00f4n vi\u00ean c\u00e1c ng\u00f4i m\u1ed9 kh\u00f4ng c\u00f2n l\u1ea1nh l\u1ebdo. C\u00e1c c\u00f4ng tr\u00ecnh ki\u1ebfn tr\u00fac, \u0111\u01b0\u1eddng d\u1ea1o, c\u00e1c ng\u00f4i m\u1ed9,… l\u00e0 m\u1ed9t y\u1ebfu t\u1ed1 trong t\u1ed5ng th\u1ec3 khu ngh\u0129a trang c\u00f4ng vi\u00ean. Ki\u1ebfn tr\u00fac c\u1ee7a c\u00e1c ng\u00f4i m\u1ed9 \u0111\u01b0\u1ee3c nghi\u00ean c\u1ee9u v\u00e0 thi\u1ebft k\u1ebf h\u00e0i h\u00f2a v\u1edbi thi\u00ean nhi\u00ean.<\/p>\n

Tr\u00ean \u0111\u00e2y l\u00e0 m\u1ed9t v\u00e0i n\u00e9t v\u1ec1 ngh\u0129a trang Y\u00ean K\u1ef3, m\u1ed9t ngh\u0129a trang r\u1ed9ng l\u1edbn nh\u1ea5t H\u00e0 N\u1ed9i. Ngo\u00e0i ngh\u0129a trang Y\u00ean K\u1ef3<\/strong>, c\u00f3 r\u1ea5t nhi\u1ec1u ng\u01b0\u1eddi ch\u1ecdn m\u1ed9t ngh\u0129a trang kh\u00e1c l\u00e0m n\u01a1i mai t\u00e1ng l\u00e0 c\u00f4ng vi\u00ean ngh\u0129a trang H\u00f2a B\u00ecnh. Ngh\u0129a trang n\u00e0y n\u1eb1m tr\u00ean v\u1ecb tr\u00ed h\u1ed9i t\u1ee5 \u0111\u1ee7 Long \u2013 Ly \u2013 Quy \u2013 Ph\u01b0\u1ee3ng. C\u00f4ng vi\u00ean Ngh\u0129a trang<\/a>\u00a0H\u00f2a B\u00ecnh\u00a0c\u00f3 khung c\u1ea3nh h\u1eefu t\u00ecnh, n\u00ean th\u01a1 mang d\u00e1ng d\u1ea5p c\u1ee7a n\u01a1i an ngh\u1ec9 v\u0129nh h\u1eb1ng thi\u00ean thu.<\/p>\n

\n

> Xem th\u00eam b\u1ea3ng gi\u00e1 \u0111\u1ea5t ngh\u0129a trang<\/a> C\u00f4ng vi\u00ean t\u00e2m linh m\u1edbi c\u1eadp nh\u1eadt 2021<\/em><\/p>\n<\/blockquote>\n

>>> C\u00f3 th\u1ec3 b\u1ea1n quan t\u00e2m:<\/strong> D\u1ecbch v\u1ee5 nh\u00e0 tang l\u1ec5 b\u1ec7nh vi\u1ec7n \u0110\u1ee9c Giang c\u00f3 t\u1ed1t<\/em><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

Ngh\u0129a trang Y\u00ean K\u1ef3 thu\u1ed9c x\u00e3 Ph\u00fa S\u01a1n, huy\u1ec7n Ba V\u00ec, th\u00e0nh ph\u1ed1 H\u00e0 N\u1ed9i. Ngh\u0129a trang n\u00e0y \u0111\u01b0\u1ee3c th\u00e0nh l\u1eadp t\u1eeb n\u0103m 1963 c\u00f3 di\u1ec7n t\u00edch l\u00ean t\u1edbi 384.000m2. Ngh\u0129a trang c\u0169ng \u0111\u01b0\u1ee3c m\u1edf r\u1ed9ng th\u00eam v\u1edbi di\u1ec7n t\u00edch 203,18ha. \u0110\u00e2y c\u00f3 th\u1ec3 coi l\u00e0 ngh\u0129a trang c\u1ea3i t\u00e1ng l\u1edbn nh\u1ea5t H\u00e0 N\u1ed9i. V\u1edbi […]\n","protected":false},"author":3,"featured_media":737,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-736","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tin-tuc"],"_links":{"self":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/736","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/comments?post=736"}],"version-history":[{"count":0,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/736\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media\/737"}],"wp:attachment":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media?parent=736"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/categories?post=736"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/tags?post=736"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}