/** * 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":1285,"date":"2021-05-27T00:26:56","date_gmt":"2021-05-26T17:26:56","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=1285"},"modified":"2021-08-30T15:54:59","modified_gmt":"2021-08-30T08:54:59","slug":"thu-moi-du-le-vu-lan-bao-hieu","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/thu-moi-du-le-vu-lan-bao-hieu\/","title":{"rendered":"Th\u01b0 m\u1eddi d\u1ef1 \u0111ai l\u1ec5 Vu Lan b\u00e1o hi\u1ebfu 2019-Congviennghiatrang"},"content":{"rendered":"

Xu\u1ea5t ph\u00e1t t\u1eeb ng\u00e0n \u0111\u1eddi nay ng\u00e0y l\u1ec5 Vu Lan hay c\u00f2n g\u1ecdi l\u00e0 ng\u00e0y l\u1ec5 Vu Lan b\u00e1o hi\u1ebfu d\u1ea7n tr\u1edf th\u00e0nh m\u1ed9t n\u00e9t \u0111\u1eb9p trong v\u0103n h\u00f3a t\u00edn ng\u01b0\u1ee1ng ph\u1eadt gi\u00e1o. Xu\u1ea5t ph\u00e1t t\u1eeb s\u1ef1 t\u00edch v\u1ec1 B\u1ed3 t\u00e1t M\u1ee5c Ki\u1ec1n Li\u00ean \u0111\u1ea1i hi\u1ebfu \u0111\u00e3 c\u1ee9u m\u1eb9 c\u1ee7a m\u00ecnh ra kh\u1ecfi ng\u1ea1 qu\u1ef7 t\u1eeb \u0111\u00f3 ng\u00e0y l\u1ec5 Vu Lan h\u1eb1ng n\u0103m l\u00e0 m\u1ed9t d\u1ecbp \u0111\u1ec3 m\u1ed7i ch\u00fang ta xem l\u1ea1i ch\u00ednh m\u00ecnh v\u00e0 noi g\u01b0\u01a1ng \u0111\u1ee9c ph\u1eadt lu\u00f4n ghi nh\u1edb v\u00e0 \u0111\u1ec1n \u0111\u00e1p c\u00f4ng \u01a1n sinh th\u00e0nh d\u01b0\u1ee1ng d\u1ee5c c\u1ee7a cha m\u1eb9. \u0110\u1ec3 t\u01b0\u1edfng nh\u1edb \u0111\u1ebfn ng\u00e0y n\u00e0y ch\u00f9a Kim S\u01a1n L\u1ea1c H\u1ed3ng Vi\u00ean<\/a><\/strong> long tr\u1ecdng t\u1ed5 ch\u1ee9c \u0111\u1ea1i l\u1ec5 Vu Lan\u00a0<\/span><\/p>\n

L\u1ec5 vu lan b\u00e1o hi\u1ec3u \u1edf ngh\u0129a trang L\u1ea1c H\u1ed3ng Vi\u00ean<\/h2>\n

T\u1ea1i L\u1ea1c h\u1ed3ng vi\u00ean h\u00e0ng n\u0103m c\u1ee9 \u0111\u1ebfn m\u00f9a Vu Lan B\u00e1o Hi\u1ebfu c\u00f4ng ty \u0111\u1ec1u t\u1ed5 ch\u1ee9c l\u1ec5 Vu Lan d\u00e0nh cho Kh\u00e1ch H\u00e0ng v\u00e0 ng\u01b0\u1eddi th\u00e2n \u0111\u00e3 an ngh\u1ec9 t\u1ea1i d\u1ef1 \u00e1n.<\/p>\n

Th\u1ea7y tr\u1ee5 tr\u00ec ch\u00f9a Kim S\u01a1n L\u1ea1c H\u1ed3ng Vi\u00ean c\u00f3 t\u1ed5 ch\u1ee9c bu\u1ed5i c\u1ea7u an c\u1ea7u si\u00eau v\u00e0 \u0111\u1ed1t qu\u1ea7n \u00e1o v\u00e0ng m\u00e3 cho c\u00e1c vong linh \u0111\u00e3 an ngh\u1ec9 t\u1ea1i d\u1ef1 \u00e1n.<\/p>\n

Ngo\u00e0i ra Kh\u00e1ch h\u00e0ng c\u00f3 th\u1ec3 \u0111\u0103ng k\u00fd l\u00e0m c\u1ea7u an, c\u1ea7u si\u00eau ri\u00eang cho ng\u01b0\u1eddi th\u00e2n c\u1ee7a m\u00ecnh \u0111\u00e3 an ngh\u1ec9 t\u1ea1i d\u1ef1 \u00e1n<\/p>\n

\"\"<\/span><\/p>\n

Th\u1eddi gian : 14h00 ngay 11\/08\/2019 (t\u1ee9c 11\/07 n\u0103m K\u1ef7 H\u1ee3i )<\/span><\/p>\n

\u0110\u1ecba \u0111i\u1ec3m : Ch\u00f9a Kim S\u01a1n L\u1ea1c H\u1ed3ng ,\u00a0C\u00f4ng vi\u00ean t\u00e2m linh L\u1ea1c H\u1ed3ng Vi\u00ean<\/a><\/span><\/span><\/p>\n

Nh\u00e0 ch\u00f9a tr\u00e2n tr\u1ecdng k\u00ednh m\u1edbi : Qu\u00fd Kh\u00e1ch<\/span><\/p>\n

Hoan h\u1ef7 b\u1edbt ch\u00fat th\u1eddi gian qu\u00fd b\u00e1u, v\u1ec1 ch\u1ed1n tr\u1ee5 x\u1ee9\u00a0ch\u00f9a Kim S\u01a1n L\u1ea1c H\u1ed3ng<\/strong>\u00a0\u00a0tham gia bu\u1ed5i l\u1ec5 \u0111\u01b0\u1ee3c th\u1eadt vi\u00ean m\u00e3n. S\u1ef1 hi\u1ec7n di\u1ec7n c\u1ee7a Qu\u00fd v\u1ecb s\u1ebd l\u00e0 ng\u1ecdn \u0111\u00e8n th\u1eafp s\u00e1ng d\u00e2ng l\u00ean M\u1eb9 v\u00e0 Cha trong mua Vu Lan hi\u1ec1u h\u1ea1nh n\u00e0y. Nguy\u1ec7n c\u1ea7u Tam b\u1ea3o gia h\u1ed9 cho Qu\u00fd v\u1ecb c\u00f9ng Gia quy\u1ebfn th\u00e2 kh\u1ecfe , t\u00e2m an v\u00e0 v\u1ea1n s\u1ef1 c\u00e1t t\u01b0\u1eddng nh\u01b0 \u00fd.<\/span><\/p>\n

Xin vui l\u00f2ng li\u00ean h\u1ec7 Ban t\u1ed5 ch\u1ee9c : Email chuakimsonlachong@gmail.com Phone 0989 385 877 \u0110\u1ea1i \u0111\u1ee9c : Th\u00edch Tr\u00ed Th\u1ecbnh<\/span><\/p>\n

Ngu\u1ed3n g\u1ed1c ng\u00e0y l\u1ec5 Vu Lan b\u00e1o hi\u1ebfu<\/strong><\/span><\/h2>\n
\"Ngu\u1ed3n<\/a>
Ngu\u1ed3n g\u1ed1c ng\u00e0y l\u1ec5 Vu Lan b\u00e1o hi\u1ebfu<\/span><\/figcaption><\/figure>\n
\n
<\/div>\n<\/div>\n

Vu Lan b\u00e1o hi\u1ebfu l\u00e0 l\u1ec5 h\u1ed9i v\u0103n h\u00f3a t\u00e2m linh c\u00f3 t\u1eeb l\u00e2u \u0111\u1eddi trong truy\u1ec1n th\u1ed1ng c\u1ee7a Ph\u1eadt gi\u00e1o \u0111\u01b0\u1ee3c t\u1ed5 ch\u1ee9c v\u00e0o th\u00e1ng 7 \u00e2m l\u1ecbch (15\/7) h\u00e0ng n\u0103m.<\/em><\/span><\/p>\n

Ngu\u1ed3n g\u1ed1c c\u1ee7a ng\u00e0y r\u1eb1m th\u00e1ng 7, l\u1ec5 Vu Lan b\u00e1o hi\u1ebfu xu\u1ea5t ph\u00e1t t\u1eeb s\u1ef1 t\u00edch v\u1ec1 B\u1ed3 t\u00e1t M\u1ee5c Ki\u1ec1u Li\u00ean \u0111\u1ea1i hi\u1ebfu c\u1ee9u m\u1eb9 c\u1ee7a m\u00ecnh ra kh\u1ecfi ki\u1ebfp ng\u1ea1 qu\u1ef7 b\u1eb1ng c\u00e1ch nghe l\u1eddi Ph\u1eadt d\u1ea1y: “D\u00f9 \u00f4ng th\u1ea7n th\u00f4ng qu\u1ea3ng \u0111\u1ea1i \u0111\u1ebfn \u0111\u00e2u c\u0169ng kh\u00f4ng \u0111\u1ee7 s\u1ee9c c\u1ee9u m\u1eb9 \u00f4ng. Ch\u1ec9 c\u00f3 m\u1ed9t c\u00e1ch nh\u1edd h\u1ee3p l\u1ef1c c\u1ee7a ch\u01b0 t\u0103ng kh\u1eafp m\u01b0\u1eddi ph\u01b0\u01a1ng m\u1edbi mong gi\u1ea3i c\u1ee9u \u0111\u01b0\u1ee3c. Ng\u00e0y r\u1eb1m th\u00e1ng b\u1ea3y l\u00e0 ng\u00e0y th\u00edch h\u1ee3p \u0111\u1ec3 v\u1eadn \u0111\u1ed9ng ch\u01b0 t\u0103ng, h\u00e3y s\u1eafm s\u1eeda l\u1ec5 c\u00fang v\u00e0o ng\u00e0y \u0111\u00f3”. L\u00e0m theo l\u1eddi Ph\u1eadt, m\u1eb9 c\u1ee7a M\u1ee5c Li\u00ean \u0111\u00e3 \u0111\u01b0\u1ee3c gi\u1ea3i tho\u00e1t. Ph\u1eadt c\u0169ng d\u1ea1y r\u1eb1ng, ch\u00fang sinh ai mu\u1ed1n b\u00e1o hi\u1ebfu cho cha m\u1eb9 c\u0169ng c\u00f3 th\u1ec3 l\u00e0m theo c\u00e1ch n\u00e0y (Vu Lan B\u1ed3n Ph\u00e1p). T\u1eeb \u0111\u00f3, ng\u00e0y l\u1ec5 Vu Lan ra \u0111\u1eddi.<\/span><\/p>\n

T\u1eeb \u0111\u00f3 ngo\u00e0i \u00fd ngh\u0129a “m\u00f9a hi\u1ebfu h\u1ea1nh”, th\u00e1ng 7 \u00c2m l\u1ecbch c\u00f2n g\u1ecdi l\u00e0 th\u00e1ng “x\u00e1 t\u1ed9i vong nh\u00e2n”, t\u1ee9c l\u00e0 th\u1eddi gian c\u00e1c vong h\u1ed3n \u0111\u01b0\u1ee3c th\u1ea3 t\u1ef1 do.<\/span><\/p>\n

Trong nh\u1eefng ng\u00e0y n\u00e0y, ng\u01b0\u1eddi d\u00e2n th\u01b0\u1eddng l\u1eadp \u0111\u00e0n c\u1ea7u si\u00eau ho\u1eb7c c\u00fang th\u00ed (b\u1ed1 th\u00ed) th\u1ee9c \u0103n cho c\u00e1c c\u00f4 h\u1ed3n (t\u1ee9c l\u00e0 vong h\u1ed3n kh\u00f4ng c\u00f3 ng\u01b0\u1eddi th\u00e2n) \u0111\u1ec3 mong h\u1ecd ph\u00f9 h\u1ed9 cho m\u00ecnh.<\/span><\/p>\n

T\u1eeb \u0111\u00f3 v\u1ec1 sau theo l\u1eddi Ph\u1eadt d\u1ea1y, c\u00e1c ph\u1eadt t\u1eed mu\u1ed1n b\u00e1o hi\u1ebfu cha m\u1eb9 c\u0169ng c\u1eed h\u00e0nh l\u1ec5 Vu Lan \u0111\u1ec3 c\u1ea7u si\u00eau cho c\u00e1c \u0111\u1ea5ng sinh th\u00e0nh v\u00e0 c\u1ea7u ph\u00e1 \u0111\u1ecba ng\u1ee5c cho nh\u1eefng vong h\u1ed3n.<\/span><\/p>\n

\u00dd ngh\u0129a ng\u00e0y l\u1ec5 Vu lan<\/strong><\/span><\/h2>\n
\"L\u1ec5<\/a>
L\u1ec5 Vu Lan l\u00e0 d\u1ecbp tri \u00e2n b\u1ed1 m\u1eb9, t\u00ecm v\u1ec1 ngu\u1ed3n c\u1ed9i c\u1ee7a m\u1ed7i con ng\u01b0\u1eddi.<\/span><\/figcaption><\/figure>\n

H\u00e0ng n\u0103m, \u0111\u1ebfn ng\u00e0y R\u1eb1m th\u00e1ng 7, m\u1ed7i ng\u01b0\u1eddi con trong gia \u0111\u00ecnh l\u1ea1i \u0111\u01b0\u1ee3c nh\u1eafc nh\u1edf t\u1ecf l\u00f2ng hi\u1ebfu thu\u1eadn v\u1edbi cha m\u1eb9, \u0111ong \u0111\u1ea7y th\u00eam t\u00ecnh c\u1ea3m hi\u1ebfu l\u1ec5, l\u00f2ng bi\u1ebft \u01a1n t\u1ed5 ti\u00ean, c\u0169ng nh\u01b0 nh\u1eefng \u0111\u00f3ng g\u00f3p to l\u1edbn c\u1ee7a c\u00e1c anh h\u00f9ng d\u00e2n t\u1ed9c, nh\u1eefng ng\u01b0\u1eddi c\u00f3 c\u00f4ng v\u1edbi \u0111\u1ea5t n\u01b0\u1edbc.<\/span><\/p>\n

L\u1ec5 Vu Lan kh\u00f4ng c\u00f2n \u0111\u01a1n thu\u1ea7n ch\u1ec9 c\u00f3 \u00fd ngh\u0129a t\u00f4n gi\u00e1o thi\u00eang li\u00eang ca ng\u1ee3i l\u00f2ng hi\u1ebfu th\u1ea3o \u0111\u1ed1i v\u1edbi m\u1eb9 kh\u00f4ng th\u00f4i m\u00e0 \u0111\u00e3 tr\u1edf th\u00e0nh ng\u00e0y l\u1ec5 mang t\u00ednh c\u00e1ch nh\u00e2n v\u0103n, n\u00f3i l\u00ean l\u00f2ng hi\u1ebfu k\u00ednh c\u1ee7a t\u1ea5t c\u1ea3 m\u1ecdi ng\u01b0\u1eddi \u0111\u1ed1i \u0111\u00e1ng sinh th\u00e0nh. L\u00f2ng tr\u00e2n tr\u1ecdng hi\u1ebfu k\u00ednh m\u1eb9 cha, ph\u1ee5ng th\u1edd t\u1ed5 ti\u00ean \u00f4ng b\u00e0, ch\u00ednh l\u00e0 s\u1ee3i d\u00e2y li\u00ean k\u1ebft gi\u1eefa ng\u01b0\u1eddi c\u00f2n k\u1ebb m\u1ea5t, l\u00e0 truy\u1ec1n th\u1ed1ng cao \u0111\u1eb9p n\u00eau cao t\u00ecnh ng\u01b0\u1eddi c\u1ee7a d\u00e2n t\u1ed9c Vi\u1ec7t.<\/span><\/p>\n

Ngo\u00e0i ra, \u0111\u00e2y c\u0169ng l\u00e0 d\u1ecbp m\u1ecdi ng\u01b0\u1eddi t\u00ecm v\u1ec1 c\u1ed9i ngu\u1ed3n.<\/span><\/p>\n

\"l\u1ec5<\/a><\/span><\/p>\n

V\u00e0o ng\u00e0y l\u1ec5 Vu Lan, c\u00e1c ph\u1eadt t\u1eed th\u01b0\u1eddng l\u00e0m l\u1ec5 c\u00fang d\u01b0\u1eddng, l\u1ec5 c\u1ea7u si\u00eau, l\u00e0m ph\u00fac b\u1ed1 th\u00ed, ph\u00f3ng sinh \u0111\u1ec3 t\u00edch ph\u01b0\u1edbc c\u1ea7u an, c\u1ea7u mong cho cha m\u1eb9 \u0111\u01b0\u1ee3c t\u0103ng ph\u00fac t\u0103ng th\u1ecd, h\u00f3a gi\u1ea3i nghi\u1ec7p ch\u01b0\u1edbng…<\/span><\/p>\n

D\u1ecbp l\u1ec5 Vu Lan, m\u1ed7i ng\u01b0\u1eddi th\u01b0\u1eddng \u0111\u01b0\u1ee3c c\u00e0i l\u00ean \u00e1o m\u1ed9t chi\u1ebfc hoa h\u1ed3ng: m\u00e0u \u0111\u1ecf cho ng\u01b0\u1eddi c\u00f2n m\u1eb9 v\u00e0 m\u00e0u tr\u1eafng cho ai \u0111\u00e3 m\u1ea5t m\u1eb9.<\/span><\/p>\n

Ngu\u1ed3n: www.dichvutangle.vn<\/a><\/p>\n

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