/** * 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":677,"date":"2021-05-27T14:35:57","date_gmt":"2021-05-27T07:35:57","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=677"},"modified":"2021-05-26T23:38:17","modified_gmt":"2021-05-26T16:38:17","slug":"nghia-trang-hang-duong","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/nghia-trang-hang-duong\/","title":{"rendered":"Ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng C\u00f4n \u0110\u1ea3o v\u00e0 nh\u1eefng c\u00e2u chuy\u1ec7n c\u1ee7a th\u1eddi gian"},"content":{"rendered":"

Nh\u1eefng n\u0103m th\u00e1ng chi\u1ebfn tranh gi\u00e0nh l\u1ea1i h\u00f2a b\u00ecnh cho T\u1ed5 Qu\u1ed1c lu\u00f4n l\u00e0 nh\u1eefng n\u0103m th\u00e1ng \u0111au th\u01b0\u01a1ng nh\u1ea5t khi m\u00e1u v\u00e0 n\u01b0\u1edbc m\u1eaft c\u1ee7a nh\u1eefng chi\u1ebfn s\u0129 anh h\u00f9ng r\u01a1i xu\u1ed1ng, \u0111\u00e1nh tan qu\u00e2n th\u1ee7 tr\u1ea3 l\u1ea1i b\u00ecnh y\u00ean cho \u0111\u1ea5t n\u01b0\u1edbc. C\u00f4n \u0110\u1ea3o ch\u00ednh l\u00e0 n\u01a1i ghi d\u1ea5u nhi\u1ec1u m\u1ea5t m\u00e1t v\u00e0 ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng<\/strong> C\u00f4n \u0110\u1ea3o c\u0169ng ch\u00ednh l\u00e0 n\u01a1i an ngh\u1ec9 c\u1ee7a h\u00e0ng tr\u0103m anh h\u00f9ng, li\u1ec7t s\u0129, trong \u0111\u00f3 c\u00f3 h\u00ecnh \u1ea3nh n\u1eef anh h\u00f9ng ch\u1ecb V\u00f5 Th\u1ecb S\u00e1u.<\/em><\/p>\n

H\u00ecnh \u1ea3nh c\u1ee7a ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng<\/strong><\/h2>\n

Ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng C\u00f4n \u0110\u1ea3o \u0111\u01b0\u1ee3c chia l\u00e0m b\u1ed1n khu: A, B, C, D. V\u1edbi khu A, B, C l\u00e0 ngh\u0129a trang c\u0169, c\u00f2n khu D m\u1edbi \u0111\u01b0\u1ee3c x\u00e2y d\u1ef1ng th\u00eam. Khu A ch\u00ednh l\u00e0 n\u01a1i an ngh\u1ec9 c\u1ee7a c\u1ee5 Nguy\u1ec5n An Ninh v\u00e0 \u0111\u1ed3ng ch\u00ed L\u00ea H\u1ed3ng Phong, khu B v\u1edbi \u0111\u1ed3i c\u00e1t tr\u1ea3i d\u00e0i \u0111\u01b0\u1ee3c m\u1edf th\u00eam khi khu A \u0111\u00e3 ch\u1eadt ch\u1ed7 ch\u00f4n, \u0111\u00e2y c\u0169ng l\u00e0 khu c\u00f3 ph\u1ea7n m\u1ed9 ch\u1ecb V\u00f5 Th\u1ecb S\u00e1u hay c\u00f2n \u0111\u01b0\u1ee3c g\u1ecdi l\u00e0 c\u00f4 S\u00e1u.<\/p>\n

Th\u1eddi \u0111\u00f3, nh\u1eefng t\u00f9 nh\u00e2n C\u00f4n \u0110\u1ea3o ch\u1ebft ng\u00e0y m\u1ed9t nhi\u1ec1u v\u00e0 h\u00e0ng tr\u0103m h\u00e0i c\u1ed1t l\u1edbp t\u00f9 nh\u00e2n \u0111\u01b0\u1ee3c ch\u00f4n k\u1ebf ti\u1ebfp nhau t\u1ea1o ngh\u0129a trang n\u00e0y. Ch\u00ednh v\u00ec v\u1eady m\u00e0 ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng kh\u00f4ng \u0111\u01b0\u1ee3c mang t\u00ean ngh\u0129a trang li\u1ec7t s\u1ef9.<\/p>\n

\"C\u1ed5ng<\/p>\n

C\u1ed5ng ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng<\/i><\/p>\n

M\u1ed7i ng\u00f4i m\u1ed9 kh\u00f4ng ch\u1ec9 l\u00e0 m\u1ed9t s\u1ed1 ph\u1eadn bi h\u00f9ng, chi\u1ebfn t\u00edch \u0111\u00e1nh b\u1ea1i qu\u00e2n x\u00e2m l\u01b0\u1ee3c c\u1ee7a nh\u00e2n d\u00e2n ta, m\u00e0 m\u1ed7i ng\u00f4i m\u1ed9 l\u00e0 m\u1ed9t ph\u1ea7n m\u00e0 ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng \u0111ang b\u1ea3o v\u1ec7 v\u00e0 g\u00ecn gi\u1eef h\u1eb1ng ng\u00e0y. N\u01a1i \u0111\u00e2y l\u00e0 khu linh thi\u00eang, kh\u00e1ch th\u1eadp ph\u01b0\u01a1ng \u0111\u1ebfn vi\u1ebfng th\u0103m b\u00e0y t\u1ecf s\u1ef1 t\u00f4n k\u00ednh, l\u1ed9c th\u00e0nh v\u1edbi t\u1ea5m l\u00f2ng h\u01b0\u1edbng v\u1ec1 c\u1ed9i ngu\u1ed3n d\u00e2n t\u1ed9c.<\/p>\n

\"nghia-trang-hang-duong-con-dao\"<\/p>\n

Quang c\u1ea3nh quan xanh m\u00e1t tuy\u1ec7t \u0111\u1eb9p t\u1ea1i ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng<\/em><\/p>\n

Cu\u1ed9c kh\u00e1ng chi\u1ebfn ch\u1ed1ng M\u1ef9 bi\u1ebft bao \u0111au th\u01b0\u01a1ng \u0111\u1ec3 l\u1ea1i bi\u1ebft bao v\u1ebft th\u01b0\u01a1ng l\u00f2ng cho ng\u01b0\u1eddi n\u01a1i h\u1eadu ph\u01b0\u01a1ng. Ngh\u0129a trang ghi nh\u1eadn c\u00f3 1913 ng\u00f4i m\u1ed9, nh\u01b0ng ch\u1ec9 c\u00f3 793 ng\u00f4i c\u00f3 t\u00ean li\u1ec7t s\u1ef9 c\u1ee5 th\u1ec3, s\u1ed1 c\u00f2n l\u1ea1i l\u00e0 nh\u1eefng ng\u00f4i m\u1ed9 v\u00f4 danh, bao g\u1ed3m c\u1ea3 nh\u1eefng t\u00f9 nh\u00e2n s\u1ed1ng trong nh\u00e0 t\u00f9 C\u00f4n \u0110\u1ea3o. H\u00ecnh \u1ea3nh c\u1ee7a ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng hi\u1ec7n l\u00ean trong m\u1eaft nh\u1eefng ng\u01b0\u1eddi Vi\u1ec7t Nam th\u1eadt t\u1ef1 h\u00e0o, th\u1eadt oanh li\u1ec7t khi l\u00e0 n\u01a1i ch\u1ee9ng ki\u1ebfn bi\u1ebft bao s\u1ef1 h\u00e0o h\u00f9ng, qu\u1ea3 c\u1ea3m, hy sinh c\u1ee7a nh\u1eefng ng\u01b0\u1eddi anh h\u00f9ng.<\/p>\n

\"c\u1ea3nh<\/p>\n

C\u1ea3nh quan tho\u00e1ng m\u00e1t t\u1ea1i ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng C\u00f4n \u0110\u1ea3o<\/p>\n

>> Xem th\u00eam : D\u1ef1 \u00e1n ngh\u0129a trang cao c\u1ea5p\u00a0An Vi\u00ean<\/a><\/em><\/p>\n

T\u01b0\u1ee3ng \u0111\u00e0i trao \u00e1o \u1edf ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng<\/strong><\/h2>\n

S\u00e2n h\u00e0nh l\u1ec5 n\u1eb1m \u1edf ph\u00eda sau khu ngh\u0129a trang v\u1edbi m\u1ed9t t\u01b0\u1ee3ng \u0111\u00e0i cao 9 m\u00e9t, n\u1eb7ng kho\u1ea3ng 25 t\u1ea5n, d\u01b0\u1edbi ch\u00e2n ghi d\u00f2ng ch\u1eef \u201cV\u0129nh bi\u1ec7t \u0111\u1ed3ng ch\u00ed\u201d. T\u01b0\u1ee3ng \u0111\u00e0i \u0111\u01b0\u1ee3c kh\u1edfi d\u1ef1ng v\u00e0o 16\/07\/1980, \u0111\u01b0\u1ee3c t\u00e1i t\u1ea1o t\u1eeb c\u00e2u chuy\u1ec7n \u201c ch\u1ebft c\u1edfi \u00e1o cho nhau\u201d.<\/p>\n

T\u01b0\u1ee3ng \u0111\u00e0i mang h\u00ecnh t\u01b0\u1ee3ng trao \u00e1o, ng\u01b0\u1eddi trao l\u00e0 \u00f4ng V\u0169 v\u0103n Hi\u1ebfu, nguy\u00ean b\u00ed th\u01b0 \u0111\u1ea7u ti\u00ean c\u1ee7a \u0111\u1eb7c khu m\u1ecf H\u00f2n Gai (10\/1930), c\u00f2n ng\u01b0\u1eddi nh\u1eadn \u00e1o l\u00e0 nguy\u00ean c\u1ed1 T\u1ed5ng B\u00ed Th\u01b0 L\u00ea Du\u1ea9n. T\u00e1c gi\u1ea3 c\u1ee7a b\u1ee9c t\u01b0\u1ee3ng n\u1ed5i ti\u1ebfng ch\u00ednh l\u00e0 nh\u00e0 \u0111i\u00eau kh\u1eafc L\u01b0u Thanh Danh, \u00f4ng \u0111\u00e3 l\u00e0m n\u00ean m\u1ed9t t\u00e1c ph\u1ea9m \u0111\u1ec3 \u0111\u1eddi v\u00e0 g\u00e2y \u1ea5n t\u01b0\u1ee3ng m\u1ea1nh \u0111\u1ebfn ng\u01b0\u1eddi H\u00e0ng D\u01b0\u01a1ng v\u00e0 nh\u1eefng du kh\u00e1ch t\u1edbi vi\u1ebfng th\u0103m n\u01a1i \u0111\u00e2y.<\/p>\n

\"T\u01b0\u1ee3ng
T\u01b0\u1ee3ng \u0111\u00e0i “Trao \u00e1o”<\/figcaption><\/figure>\n

Ng\u01b0\u1eddi d\u00e2n \u1edf \u0111\u00e2y k\u1ec3 r\u1eb1ng, c\u00f4 S\u00e1u r\u1ea5t linh thi\u00eang, \u0111\u1ebfn \u0111\u00e2y h\u00e3y c\u1ea7u t\u00e0i l\u1ed9c, s\u1ee9c kh\u1ecfe, may m\u1eafn c\u00f4 s\u1ebd cho m\u1ecdi \u0111i\u1ec1u \u0111\u01b0\u1ee3c vi\u00ean m\u00e3n. Ngo\u00e0i ra C\u00f4n \u0110\u1ea3o c\u0169ng l\u00e0 \u0111\u1ecba danh n\u1ed5i ti\u1ebfng v\u1edbi c\u00e1c \u0111i\u1ec3m t\u00e2m linh nh\u01b0 Mi\u1ebfu b\u00e0 Phi Y\u1ebfn, mi\u1ebfu N\u0103m c\u00f4, mi\u1ebfu c\u1eadu, ch\u00f9a n\u00fai m\u1ed9t C\u00f4n \u0110\u1ea3o, h\u1ec7 th\u1ed1ng nh\u00e0 t\u00f9 C\u00f4n \u0110\u1ea3o…<\/p>\n

M\u1ed7i m\u1ed9t ngh\u0129a trang, \u0111\u1ec1u c\u00f3 nh\u1eefng c\u00e2u chuy\u1ec7n c\u1ee7a th\u1eddi gian \u1ea9n sau \u0111\u00f3. Tr\u00ean kh\u1eafp d\u1ea3i \u0111\u1ea5t h\u00ecnh ch\u1eef S \u0111\u00e3 c\u00f3 bi\u1ebft bao ngh\u0129a trang oanh li\u1ec7t, ch\u1ee9ng nh\u00e2n c\u1ee7a l\u1ecbch s\u1eed. Kh\u00f4ng ch\u1ec9 l\u00e0 ngh\u0129a trang, l\u00e0 m\u00e1i \u1ea5m b\u00ecnh y\u00ean \u0111\u1ec3 nh\u1eefng ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t an ngh\u1ec9, m\u00e0 \u0111\u00e2y c\u00f2n l\u00e0 n\u01a1i \u0111\u1ec3 ng\u01b0\u1eddi c\u00f2n s\u1ed1ng t\u01b0\u1edfng ni\u1ec7m, th\u1eafp n\u00e9n nhang th\u01a1m, h\u01b0\u1edbng v\u1ec1 c\u1ed9i ngu\u1ed3n.<\/p>\n

Nh\u1eefng h\u00ecnh \u1ea3nh th\u1eadt \u0111\u1eb9p c\u1ee7a ngh\u0129a trang H\u00e0ng D\u01b0\u01a1ng khi\u1ebfn l\u00f2ng ta l\u1ea1i tr\u00f9ng xu\u1ed1ng. Khi \u0111\u1ebfn \u0111\u00e2y c\u00e1c b\u1ea1n s\u1ebd nh\u1edb v\u1ec1 th\u00e1ng n\u0103m tr\u01b0\u1eddng k\u1ef3 kh\u00e1ng chi\u1ebfn c\u1ee7a d\u00e2n t\u1ed9c, nh\u1edb v\u1ec1 nh\u1eefng \u0111au th\u01b0\u01a1ng \u0111\u1ec3 t\u1eeb \u0111au th\u01b0\u01a1ng m\u00e0 \u0111\u1ee9ng l\u00ean ph\u00e1t tri\u1ec3n g\u00e2y d\u1ef1ng \u0111\u1ea5t n\u01b0\u1edbc, con ng\u01b0\u1eddi Vi\u1ec7t Nam, ti\u1ebfp n\u1ed1i truy\u1ec1n th\u1ed1ng \u00f4ng cha ta \u0111\u1ec3 l\u1ea1i.<\/p>\n

>> Ngo\u00e0i ra, c\u00e1c b\u1ea1n c\u0169ng c\u00f3 th\u1ec3 tham kh\u1ea3o th\u00eam v\u1ec1 ngh\u0129a trang L\u1ea1c H\u1ed3ng Vi\u00ean<\/a> – n\u01a1i cung c\u1ea5p c\u00e1c d\u1ecbch v\u1ee5 li\u00ean quan \u0111\u1ebfn ma chay uy t\u00edn.<\/em><\/p>\n

Xem th\u00eam:<\/p>\n