CINXE.COM
News Archives
<!doctype html> <html lang="en-US" prefix="og: https://ogp.me/ns#"> <head><style>img.lazy{min-height:1px}</style><link href="https://tesfanews.com/wp-content/plugins/w3-total-cache/pub/js/lazyload.min.js" as="script"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <style> .pro-wccp:before { content: "\f160"; top: 3px; } .pro-wccp:before{ color:#02CA03 !important } .pro-wccp { transform: rotate(45deg); } </style> <script id="wccp_pro_disable_hot_keys"> /*****************For contenteditable tags***************/ var wccp_pro_iscontenteditable_flag = false; function wccp_pro_iscontenteditable(e) { var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement; var iscontenteditable = "false"; if(typeof target.getAttribute!="undefined" ) { iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string if(typeof target.hasAttribute!="undefined") { if(target.hasAttribute("contenteditable")) iscontenteditable = true; } } console.log("iscontenteditable:" + iscontenteditable); var iscontenteditable2 = false; if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable; if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true) { if(typeof target.style!="undefined" ) target.style.cursor = "text"; //wccp_pro_log_to_console_if_allowed("", iscontenteditable + " " + iscontenteditable2); wccp_pro_iscontenteditable_flag = true; wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: true"); return true; } wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: false"); //wccp_pro_iscontenteditable_flag = false; } /******************************************************/ function wccp_pro_clear_any_selection() { if(window.wccp_pro_iscontenteditable_flag == true) return; wccp_pro_log_to_console_if_allowed("function", "wccp_pro_clear_any_selection"); var myName = wccp_pro_clear_any_selection.caller.toString(); myName = myName.substr('function '.length); myName = myName.substr(0, myName.indexOf('(')); console.log("called_by: " + myName); if (window.getSelection) { if (window.getSelection().empty) { // Chrome window.getSelection().empty(); } else if (window.getSelection().removeAllRanges) { // Firefox window.getSelection().removeAllRanges(); } } else if (document.selection) { // IE? document.selection.empty(); } //show_wccp_pro_message("You are not allowed to make this operation"); } /*Is content_editable element*/ function is_content_editable_element(element_name = "") { if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK") { wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: true >>" + element_name); return true; } wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: false >>" + element_name); return false; } /*Is selection enabled element*/ /* function is_selection_enabled_element(element_name = "") { if (is_content_editable_element == true) { wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: true >>" + element_name); return true; } wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: false >>" + element_name); return false; } */ /*Hot keys function */ function disable_hot_keys(e) { wccp_pro_log_to_console_if_allowed("function", "disable_hot_keys"); e = e || window.event; //console.log(e); if (!e) return; var key; if(window.event) key = window.event.keyCode; /*IE*/ else if (e.hasOwnProperty("which")) key = e.which; /*firefox (97)*/ wccp_pro_log_to_console_if_allowed("Data:", key); if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } var elemtype = e.target.tagName; elemtype = elemtype.toUpperCase(); var sel = getSelectionTextAndContainerElement(); if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */ /*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/ if (is_content_editable_element(elemtype) == true) { elemtype = 'TEXT'; } if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT'; if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/ { copyTextToClipboard(""); show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (e.ctrlKey || e.metaKey) { if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43)) { show_wccp_pro_message(''); return false; } if (elemtype!= 'TEXT') { if (key == 65) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 67) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 88) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 86) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } } if (key == 85) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 80) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 44) { copyTextToClipboard("no"); show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 73)//F12 chrome developer key disable { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 83) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } } return true; } window.addEventListener('load', function (){ if(window.Zepto || !window.jQuery) jQuery = $; jQuery(document).ready(function() { jQuery(document).bind("keyup keydown", disable_hot_keys); }); }); </script> <style> .wccp_pro_copy_code_button { line-height: 6px; width: auto; font-size: 8pt; font-family: tahoma; margin-top: 1px; margin-right: 2px; position:absolute; top:0; right:0; border-radius: 4px; opacity: 100%; margin-top: -30px; } .wccp_pro_copy_code_button:hover { opacity: 100%; } .wccp_pro_copy_code_button[disabled] { opacity: 40%; border-color: red; } code,pre { overflow: visible; white-space: pre-line; } </style> <script id="wccp_pro_disable_Right_Click"> function nocontext(e) { wccp_pro_log_to_console_if_allowed("function", "nocontext"); e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement if (apply_class_exclusion(e) == 'Yes') return true; var exception_tags = 'NOTAG,'; var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName; console.log("clickedTag: " + clickedTag); var target = e.target || e.srcElement; var parent_tag = ""; var parent_of_parent_tag = ""; if(target.parentElement != null) { parent_tag = target.parentElement.tagName; if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName; } var checker = 'checked'; if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') { if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG); return false; }else {exception_tags = exception_tags + 'IMG,';} checker = ''; if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') { if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO); return false; }else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';} checker = ''; if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') { if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A); return false; }else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";} checker = 'checked'; if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" || clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') { if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB); return false; }else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';} checker = 'checked'; if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') { if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT); return false; }else {exception_tags = exception_tags + 'INPUT,PASSWORD,';} checker = 'checked'; if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') { if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H); return false; }else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';} checker = 'checked'; if (clickedTag == "TEXTAREA" && checker == 'checked') { if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA); return false; }else {exception_tags = exception_tags + 'TEXTAREA,';} checker = 'checked'; if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') { if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces); return false; } else { if (exception_tags.indexOf(clickedTag)!=-1) { return true; } else return false; } } function disable_drag_images(e) { wccp_pro_log_to_console_if_allowed("function", "disable_drag_images"); var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement; //For contenteditable tags if (apply_class_exclusion(e) == "Yes") return true; var elemtype = e.target.nodeName; if (elemtype != "IMG") {return;} elemtype = elemtype.toUpperCase(); var disable_drag_drop_images = 'checked'; if (disable_drag_drop_images != "checked") return true; if (window.location.href.indexOf("/user/") > -1) { return true; //To allow users to drag & drop images when editing thier profiles } show_wccp_pro_message(alertMsg_IMG); return false; } var alertMsg_IMG = ""; var alertMsg_A = ""; var alertMsg_PB = ""; var alertMsg_INPUT = ""; var alertMsg_H = ""; var alertMsg_TEXTAREA = ""; var alertMsg_EmptySpaces = ""; var alertMsg_VIDEO = ""; document.oncontextmenu=null; document.oncontextmenu = nocontext; document.addEventListener("contextmenu",nocontext); window.addEventListener("contextmenu",nocontext); </script> <script id="wccp_pro_disable_drag_images"> document.ondragstart = disable_drag_images; window.addEventListener('load', function (){ if(window.Zepto || !window.jQuery) jQuery = $; jQuery(document).ready(function(){ jQuery('img').each(function() { jQuery(this).attr('draggable', false); }); }); }); </script> <style id="wccp_pro_style1"> img{ -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -khtml-user-select: none; user-select: none; -webkit-user-drag: none; } </style> <style><!-- Start your code after this line --> <!-- End your code before this line --></style> <script id="wccp_pro_css_disable_selection"> function wccp_pro_msieversion() { var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE"); var msie2 = ua.indexOf("Edge"); var msie3 = ua.indexOf("Trident"); if (msie > -1 || msie2 > -1 || msie3 > -1) // If Internet Explorer, return version number { return "IE"; } else // If another browser, return 0 { return "otherbrowser"; } } var e = document.getElementsByTagName('H1')[0]; if(e && wccp_pro_msieversion() == "IE") { e.setAttribute('unselectable',"on"); } </script> <script id="wccp_pro_class_exclusion"> function copyToClipboard(elem) { // create hidden text element, if it doesn't already exist var targetId = "_wccp_pro_hiddenCopyText_"; { // must use a temporary form element for the selection and copy target = document.getElementById(targetId); if (!target) { var target = document.createElement("textarea"); target.style.position = "absolute"; target.style.left = "-9999px"; target.style.top = "0"; target.id = targetId; document.body.appendChild(target); } target.textContent = elem.textContent; } // select the content var currentFocus = document.activeElement; target.focus(); target.setSelectionRange(0, target.value.length); // copy the selection var succeed; try { succeed = document.execCommand("copy"); } catch(e) { succeed = false; } // restore original focus if (currentFocus && typeof currentFocus.focus === "function") { currentFocus.focus(); } // clear temporary content target.textContent = ""; document.getElementsByTagName('span')[0].innerHTML = " "; return succeed; } /**************************************************/ function wccp_pro_log_to_console_if_allowed(title = "title", data = "") { var myName = ""; if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString(); myName = myName.substr('function '.length); myName = myName.substr(0, myName.indexOf('(')); //console.log("function_name: " + myName); } /**************************************************/ function fallbackCopyTextToClipboard(text) { var textArea = document.createElement("textarea"); textArea.value = text; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand("copy"); var msg = successful ? "successful" : "unsuccessful"; console.log("Fallback: Copying text command was " + msg); } catch (err) { console.error("Fallback: Oops, unable to copy", err); } document.body.removeChild(textArea); } /*****************************************/ function copyTextToClipboard(text) { if (!navigator.clipboard) { fallbackCopyTextToClipboard(text); return; } navigator.clipboard.writeText(text).then( function() { console.log("Async: Copying to clipboard was successful!"); }, function(err) { console.error("Async: Could not copy text: ", err); } ); } /*****************************************/ /*getSelectionTextAndContainerElement*/ function getSelectionTextAndContainerElement() { var text = "", containerElement = null; if (typeof window.getSelection != "undefined") { var sel = window.getSelection(); if (sel.rangeCount) { var node = sel.getRangeAt(0).commonAncestorContainer; containerElement = node.nodeType == 1 ? node : node.parentNode; if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement; text = sel.toString(); } } else if (typeof document.selection != "undefined" && document.selection.type != "Control") { var textRange = document.selection.createRange(); containerElement = textRange.parentElement(); text = textRange.text; } return { text: text, containerElement: containerElement }; } function getSelectionParentElement() { var parentEl = null, sel; if (window.getSelection) { sel = window.getSelection(); if (sel.rangeCount) { parentEl = sel.getRangeAt(0).commonAncestorContainer; //sel.getRangeAt(0).startContainer.parentNode; if (parentEl.nodeType != 1) { parentEl = parentEl.parentNode; } } } else if ( (sel = document.selection) && sel.type != "Control") { parentEl = sel.createRange().parentElement(); } let arr = new Array(); arr["nodeName"] = "cant_find_parent_element"; if(parentEl != null) return parentEl; else return arr; } /*****************************************/ function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } /*****************************************/ </script> <script id="apply_class_exclusion"> function apply_class_exclusion(e) { wccp_pro_log_to_console_if_allowed("function", "apply_class_exclusion" + e); var my_return = 'No'; var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement || 'nothing'; //if(target.parentElement != null) console.log (target.parentElement.className); var excluded_classes = '' + ''; var class_to_exclude = ""; if(target.parentElement != null) { class_to_exclude = target.className + ' ' + target.parentElement.className || ''; }else{ class_to_exclude = target.className; } var class_to_exclude_array = Array(); //console.log(class_to_exclude); if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" "); //console.log (class_to_exclude_array); class_to_exclude_array.forEach(function(item) { if(item != '' && excluded_classes.indexOf(item)>=0) { //target.style.cursor = "text"; //console.log ('Yes'); my_return = 'Yes'; } }); try { class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || ''; } catch(err) { class_to_exclude = ''; } if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0) { //target.style.cursor = "text"; my_return = 'Yes'; } return my_return; } </script> <style id="wccp_pro_style2" data-asas-style=""> *[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/ -webkit-user-select: auto !important; cursor: text !important; user-select: text !important; pointer-events: auto !important; } /* *[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;} *[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;} input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;} input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;} */ a{ cursor: pointer ; pointer-events: auto !important;} </style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</style> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <!-- Jetpack Site Verification Tags --> <meta name="google-site-verification" content="aMXrl5jWmc3xc_7RkpnSlvMhfj9X1iz5PvPYAtNWYRo" /> <!-- Search Engine Optimization by Rank Math - https://rankmath.com/ --> <title>News Archives</title> <meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://tesfanews.com/category/news/" /> <link rel="next" href="https://tesfanews.com/category/news/page/2/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="News Archives" /> <meta property="og:url" content="https://tesfanews.com/category/news/" /> <meta property="og:site_name" content="TesfaNews" /> <meta property="article:publisher" content="https://www.facebook.com/TesfaNewsPage/" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="News Archives" /> <meta name="twitter:site" content="@tesfanews" /> <meta name="twitter:label1" content="Posts" /> <meta name="twitter:data1" content="6170" /> <script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":"Person","@id":"https://tesfanews.com/#person","name":"TesfaNews","sameAs":["https://www.facebook.com/TesfaNewsPage/","https://twitter.com/tesfanews"],"image":{"@type":"ImageObject","@id":"https://tesfanews.com/#logo","url":"https://tesfanews.com/wp-content/uploads/2023/03/NP_tn_logo.png","contentUrl":"https://tesfanews.com/wp-content/uploads/2023/03/NP_tn_logo.png","caption":"TesfaNews","inLanguage":"en-US","width":"300","height":"50"}},{"@type":"WebSite","@id":"https://tesfanews.com/#website","url":"https://tesfanews.com","name":"TesfaNews","alternateName":"TN","publisher":{"@id":"https://tesfanews.com/#person"},"inLanguage":"en-US"},{"@type":"CollectionPage","@id":"https://tesfanews.com/category/news/#webpage","url":"https://tesfanews.com/category/news/","name":"News Archives","isPartOf":{"@id":"https://tesfanews.com/#website"},"inLanguage":"en-US"}]}</script> <!-- /Rank Math WordPress SEO plugin --> <link rel='dns-prefetch' href='//secure.gravatar.com' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel='dns-prefetch' href='//stats.wp.com' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//v0.wordpress.com' /> <link rel='dns-prefetch' href='//jetpack.wordpress.com' /> <link rel='dns-prefetch' href='//s0.wp.com' /> <link rel='dns-prefetch' href='//public-api.wordpress.com' /> <link rel='dns-prefetch' href='//0.gravatar.com' /> <link rel='dns-prefetch' href='//1.gravatar.com' /> <link rel='dns-prefetch' href='//2.gravatar.com' /> <link rel='dns-prefetch' href='//i0.wp.com' /> <link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /> <link rel="alternate" type="application/rss+xml" title="TesfaNews » Feed" href="https://tesfanews.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="TesfaNews » Comments Feed" href="https://tesfanews.com/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="TesfaNews » News Category Feed" href="https://tesfanews.com/category/news/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/tesfanews.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.1"}}; /*! This file is auto-generated */ !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings); /* ]]> */ </script> <link rel='stylesheet' id='wgs-css' href='https://tesfanews.com/wp-content/plugins/wp-google-search/wgs.css?ver=6.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='wgs2-css' href='https://tesfanews.com/wp-content/plugins/wp-google-search/wgs2.css?ver=6.7.1' type='text/css' media='all' /> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://tesfanews.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mediaelement-css' href='https://tesfanews.com/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css?ver=4.2.17' type='text/css' media='all' /> <link rel='stylesheet' id='wp-mediaelement-css' href='https://tesfanews.com/wp-includes/js/mediaelement/wp-mediaelement.min.css?ver=6.7.1' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css' type='text/css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <style id='rank-math-toc-block-style-inline-css' type='text/css'> .wp-block-rank-math-toc-block nav ol{counter-reset:item}.wp-block-rank-math-toc-block nav ol li{display:block}.wp-block-rank-math-toc-block nav ol li:before{content:counters(item, ".") ". ";counter-increment:item} </style> <style id='rank-math-rich-snippet-style-inline-css' type='text/css'> /*! * Plugin: Rank Math * URL: https://rankmath.com/wordpress/plugin/seo-suite/ * Name: rank-math-review-snippet.css */@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}@keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}:root{--rankmath-wp-adminbar-height: 0}#rank-math-rich-snippet-wrapper{overflow:hidden}#rank-math-rich-snippet-wrapper h5.rank-math-title{display:block;font-size:18px;line-height:1.4}#rank-math-rich-snippet-wrapper .rank-math-review-image{float:right;max-width:40%;margin-left:15px}#rank-math-rich-snippet-wrapper .rank-math-review-data{margin-bottom:15px}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper{width:100%;padding:0 0 20px 0;float:left;clear:both;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{border:0;display:block;margin:0;width:auto;float:left;text-align:left;padding:0;font-size:24px;line-height:1;font-weight:700;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:left;margin-left:15px;margin-top:5px;position:relative;z-index:99;line-height:1}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper{display:inline-block;white-space:nowrap;position:relative;color:#e7e7e7}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper .rank-math-review-result{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap;color:#ffbe01}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i{font-size:18px;-webkit-text-stroke-width:1px;font-style:normal;padding:0 2px;line-height:inherit}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i:before{content:"\2605"}body.rtl #rank-math-rich-snippet-wrapper .rank-math-review-image{float:left;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{float:right}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:right;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result{left:auto;right:0}@media screen and (max-width: 480px){#rank-math-rich-snippet-wrapper .rank-math-review-image{display:block;max-width:100%;width:100%;text-align:center;margin-right:0}#rank-math-rich-snippet-wrapper .rank-math-review-data{clear:both}}.clear{clear:both} </style> <link rel='stylesheet' id='wpblog-post-layouts-block-style-css' href='https://tesfanews.com/wp-content/plugins/wp-blog-post-layouts/includes/assets/css/build.css?ver=1.1.4' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='embedpress-style-css' href='https://tesfanews.com/wp-content/plugins/embedpress/assets/css/embedpress.css?ver=6.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='junkie-shortcodes-css' href='https://tesfanews.com/wp-content/plugins/theme-junkie-shortcodes/assets/css/junkie-shortcodes.css?ver=6.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='wpblog-post-layouts-google-fonts-css' href='https://fonts.googleapis.com/css?family=Roboto%3A400%2C100%2C300%2C400%2C500%2C700%2C900%7CYanone+Kaffeesatz%3A200%2C300%2C400%2C500%2C600%2C700%7COpen+Sans%3A300%2C400%2C600%2C700%2C800%7CRoboto+Slab%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%7CPoppins%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900&ver=1.1.4#038;subset=latin%2Clatin-ext' type='text/css' media='all' /> <link rel='stylesheet' id='fontawesome-css' href='https://tesfanews.com/wp-content/plugins/wp-blog-post-layouts/includes/assets/fontawesome/css/all.min.css?ver=5.12.1' type='text/css' media='all' /> <link rel='stylesheet' id='wpmagazine-modules-lite-google-fonts-css' href='https://fonts.googleapis.com/css?family=Roboto%3A400%2C100%2C300%2C400%2C500%2C700%2C900%7CYanone+Kaffeesatz%3A200%2C300%2C400%2C500%2C600%2C700%7COpen+Sans%3A300%2C400%2C600%2C700%2C800%7CRoboto+Slab%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%7CPoppins%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900&subset=latin%2Clatin-ext' type='text/css' media='all' /> <link rel='stylesheet' id='wpmagazine-modules-lite-frontend-css' href='https://tesfanews.com/wp-content/plugins/wp-magazine-modules-lite/includes/assets/css/build.css?ver=1.1.3' type='text/css' media='all' /> <link rel='stylesheet' id='slick-slider-css' href='https://tesfanews.com/wp-content/plugins/wp-magazine-modules-lite/includes/assets/library/slick-slider/css/slick.css?ver=1.8.0' type='text/css' media='all' /> <link rel='stylesheet' id='slick-slider-theme-css' href='https://tesfanews.com/wp-content/plugins/wp-magazine-modules-lite/includes/assets/library/slick-slider/css/slick-theme.css?ver=1.8.0' type='text/css' media='all' /> <link rel='stylesheet' id='news-portal-fonts-css' href='https://fonts.googleapis.com/css?family=Roboto+Condensed%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700%7CRoboto%3A300%2C400%2C400i%2C500%2C700%7CTitillium+Web%3A400%2C600%2C700%2C300&subset=latin%2Clatin-ext' type='text/css' media='all' /> <link rel='stylesheet' id='news-portal-font-awesome-css' href='https://tesfanews.com/wp-content/themes/news-portal/assets/library/font-awesome/css/all.min.css?ver=6.5.1' type='text/css' media='all' /> <link rel='stylesheet' id='lightslider-style-css' href='https://tesfanews.com/wp-content/themes/news-portal/assets/library/lightslider/css/lightslider.min.css?ver=1.1.6' type='text/css' media='all' /> <link rel='stylesheet' id='news-portal-style-css' href='https://tesfanews.com/wp-content/themes/news-portal/style.css?ver=1.5.4' type='text/css' media='all' /> <link rel='stylesheet' id='news-portal-dark-style-css' href='https://tesfanews.com/wp-content/themes/news-portal/assets/css/np-dark.css?ver=1.5.4' type='text/css' media='all' /> <link rel='stylesheet' id='news-portal-preloader-style-css' href='https://tesfanews.com/wp-content/themes/news-portal/assets/css/np-preloader.css?ver=1.5.4' type='text/css' media='all' /> <link rel='stylesheet' id='news-portal-responsive-style-css' href='https://tesfanews.com/wp-content/themes/news-portal/assets/css/np-responsive.css?ver=1.5.4' type='text/css' media='all' /> <link rel='stylesheet' id='tablepress-default-css' href='https://tesfanews.com/wp-content/plugins/tablepress/css/build/default.css?ver=3.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='css-protect.css-css' href='https://tesfanews.com/wp-content/plugins/wccp-pro/css-protect.css?wccp_ver_num=1&ver=10.9.2' type='text/css' media='all' /> <link rel='stylesheet' id='print-protection.css-css' href='https://tesfanews.com/wp-content/plugins/wccp-pro/css/print-protection.css?wccp_ver_num=1&ver=6.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://tesfanews.com/wp-includes/css/dashicons.min.css?ver=6.7.1' type='text/css' media='all' /> <script type="text/javascript" src="https://tesfanews.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-PBGB6HH" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["tesfanews.com"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-PBGB6HH"); /* ]]> */ </script> <!-- End Google tag (gtag.js) snippet added by Site Kit --> <link rel="https://api.w.org/" href="https://tesfanews.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://tesfanews.com/wp-json/wp/v2/categories/6" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://tesfanews.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.1" /> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com"> <link href='https://fonts.googleapis.com/css2?display=swap&family=Merriweather:wght@300;400&family=Merriweather+Sans&family=Playfair+Display&family=Lora:ital,wght@1,400' rel='stylesheet'><meta name="generator" content="Site Kit by Google 1.141.0" /><style type="text/css"> .wpsdc-drop-cap { float : left; padding : 0.25em 0.05em 0.25em 0; font-size : 5em; line-height : 0.4em;color : #dd9933;} </style> <style>img#wpstats{display:none}</style> <!-- Google AdSense meta tags added by Site Kit --> <meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"> <meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"> <!-- End Google AdSense meta tags added by Site Kit --> <meta name="generator" content="Elementor 3.25.10; features: additional_custom_breakpoints, e_optimized_control_loading; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <style type="text/css" id="custom-background-css"> body.custom-background { background-color: #3d3d3d; } </style> <!-- Google AdSense snippet added by Site Kit --> <script type="text/javascript" async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4596033848606154&host=ca-host-pub-2644536267352236" crossorigin="anonymous"></script> <!-- End Google AdSense snippet added by Site Kit --> <link rel="icon" href="https://i0.wp.com/tesfanews.com/wp-content/uploads/2017/08/TN-fav.png?fit=32%2C32&ssl=1" sizes="32x32" /> <link rel="icon" href="https://i0.wp.com/tesfanews.com/wp-content/uploads/2017/08/TN-fav.png?fit=32%2C32&ssl=1" sizes="192x192" /> <link rel="apple-touch-icon" href="https://i0.wp.com/tesfanews.com/wp-content/uploads/2017/08/TN-fav.png?fit=32%2C32&ssl=1" /> <meta name="msapplication-TileImage" content="https://i0.wp.com/tesfanews.com/wp-content/uploads/2017/08/TN-fav.png?fit=32%2C32&ssl=1" /> <style type="text/css" id="wp-custom-css"> ins.adsbygoogle { background: transparent !important; } </style> <style id="egf-frontend-styles" type="text/css"> p {font-family: 'Merriweather', sans-serif;font-style: normal;font-weight: 400;} h2 {font-family: 'Merriweather Sans', sans-serif;font-size: 10px;font-style: normal;font-weight: 400;} h1 {color: #000000;font-family: 'Playfair Display', sans-serif;font-size: 35px;font-style: normal;font-weight: 400;line-height: 1.3;} h3 {font-family: 'Merriweather', sans-serif;font-size: 10px;font-style: normal;} h4 {font-family: 'Lora', sans-serif;font-style: italic;font-weight: 400;} h5 {font-family: 'Merriweather', sans-serif;font-style: normal;font-weight: 300;} h6 {font-family: 'Merriweather', sans-serif;font-style: normal;font-weight: 300;} </style> <!--News Portal CSS --> <style type="text/css"> .category-button.np-cat-11437 a{background:#00a9e0}.category-button.np-cat-11437 a:hover{background:#0077ae}.np-block-title .np-cat-11437{color:#00a9e0}.category-button.np-cat-3 a{background:#00a9e0}.category-button.np-cat-3 a:hover{background:#0077ae}.np-block-title .np-cat-3{color:#00a9e0}.category-button.np-cat-11434 a{background:#00a9e0}.category-button.np-cat-11434 a:hover{background:#0077ae}.np-block-title .np-cat-11434{color:#00a9e0}.category-button.np-cat-4 a{background:#dd3333}.category-button.np-cat-4 a:hover{background:#ab0101}.np-block-title .np-cat-4{color:#dd3333}.category-button.np-cat-11436 a{background:#00a9e0}.category-button.np-cat-11436 a:hover{background:#0077ae}.np-block-title .np-cat-11436{color:#00a9e0}.category-button.np-cat-11428 a{background:#1e73be}.category-button.np-cat-11428 a:hover{background:#00418c}.np-block-title .np-cat-11428{color:#1e73be}.category-button.np-cat-6 a{background:#dd9933}.category-button.np-cat-6 a:hover{background:#ab6701}.np-block-title .np-cat-6{color:#dd9933}.category-button.np-cat-5 a{background:#00a9e0}.category-button.np-cat-5 a:hover{background:#0077ae}.np-block-title .np-cat-5{color:#00a9e0}.category-button.np-cat-7 a{background:#00a9e0}.category-button.np-cat-7 a:hover{background:#0077ae}.np-block-title .np-cat-7{color:#00a9e0}.category-button.np-cat-70 a{background:#00a9e0}.category-button.np-cat-70 a:hover{background:#0077ae}.np-block-title .np-cat-70{color:#00a9e0}.category-button.np-cat-5662 a{background:#8224e3}.category-button.np-cat-5662 a:hover{background:#5000b1}.np-block-title .np-cat-5662{color:#8224e3}.category-button.np-cat-11435 a{background:#00a9e0}.category-button.np-cat-11435 a:hover{background:#0077ae}.np-block-title .np-cat-11435{color:#00a9e0}.category-button.np-cat-8 a{background:#156fbf}.category-button.np-cat-8 a:hover{background:#003d8d}.np-block-title .np-cat-8{color:#156fbf}.category-button.np-cat-9 a{background:#00a9e0}.category-button.np-cat-9 a:hover{background:#0077ae}.np-block-title .np-cat-9{color:#00a9e0}.category-button.np-cat-5035 a{background:#00a9e0}.category-button.np-cat-5035 a:hover{background:#0077ae}.np-block-title .np-cat-5035{color:#00a9e0}.navigation .nav-links a,.bttn,button,input[type='button'],input[type='reset'],input[type='submit'],.navigation .nav-links a:hover,.bttn:hover,button,input[type='button']:hover,input[type='reset']:hover,input[type='submit']:hover,.widget_search .search-submit,.edit-link .post-edit-link,.reply .comment-reply-link,.np-top-header-wrap,.np-header-menu-wrapper,#site-navigation ul.sub-menu,#site-navigation ul.children,.np-header-menu-wrapper::before,.np-header-menu-wrapper::after,.np-header-search-wrapper .search-form-main .search-submit,.news_portal_slider .lSAction > a:hover,.news_portal_default_tabbed ul.widget-tabs li,.np-full-width-title-nav-wrap .carousel-nav-action .carousel-controls:hover,.news_portal_social_media .social-link a,.np-archive-more .np-button:hover,.error404 .page-title,#np-scrollup,.news_portal_featured_slider .slider-posts .lSAction > a:hover,div.wpforms-container-full .wpforms-form input[type='submit'],div.wpforms-container-full .wpforms-form button[type='submit'],div.wpforms-container-full .wpforms-form .wpforms-page-button,div.wpforms-container-full .wpforms-form input[type='submit']:hover,div.wpforms-container-full .wpforms-form button[type='submit']:hover,div.wpforms-container-full .wpforms-form .wpforms-page-button:hover,.widget.widget_tag_cloud a:hover{background:#dd3333} .home .np-home-icon a,.np-home-icon a:hover,#site-navigation ul li:hover > a,#site-navigation ul li.current-menu-item > a,#site-navigation ul li.current_page_item > a,#site-navigation ul li.current-menu-ancestor > a,#site-navigation ul li.focus > a,.news_portal_default_tabbed ul.widget-tabs li.ui-tabs-active,.news_portal_default_tabbed ul.widget-tabs li:hover,.menu-toggle:hover,.menu-toggle:focus{background:#ab0101} .np-header-menu-block-wrap::before,.np-header-menu-block-wrap::after{border-right-color:#ab0101} a,a:hover,a:focus,a:active,.widget a:hover,.widget a:hover::before,.widget li:hover::before,.entry-footer a:hover,.comment-author .fn .url:hover,#cancel-comment-reply-link,#cancel-comment-reply-link:before,.logged-in-as a,.np-slide-content-wrap .post-title a:hover,#top-footer .widget a:hover,#top-footer .widget a:hover:before,#top-footer .widget li:hover:before,.news_portal_featured_posts .np-single-post .np-post-content .np-post-title a:hover,.news_portal_fullwidth_posts .np-single-post .np-post-title a:hover,.news_portal_block_posts .layout3 .np-primary-block-wrap .np-single-post .np-post-title a:hover,.news_portal_featured_posts .layout2 .np-single-post-wrap .np-post-content .np-post-title a:hover,.np-block-title,.widget-title,.page-header .page-title,.np-related-title,.np-post-meta span:hover,.np-post-meta span a:hover,.news_portal_featured_posts .layout2 .np-single-post-wrap .np-post-content .np-post-meta span:hover,.news_portal_featured_posts .layout2 .np-single-post-wrap .np-post-content .np-post-meta span a:hover,.np-post-title.small-size a:hover,#footer-navigation ul li a:hover,.entry-title a:hover,.entry-meta span a:hover,.entry-meta span:hover,.np-post-meta span:hover,.np-post-meta span a:hover,.news_portal_featured_posts .np-single-post-wrap .np-post-content .np-post-meta span:hover,.news_portal_featured_posts .np-single-post-wrap .np-post-content .np-post-meta span a:hover,.news_portal_featured_slider .featured-posts .np-single-post .np-post-content .np-post-title a:hover{color:#dd3333} .site-mode--dark .news_portal_featured_posts .np-single-post-wrap .np-post-content .np-post-title a:hover,.site-mode--dark .np-post-title.large-size a:hover,.site-mode--dark .np-post-title.small-size a:hover,.site-mode--dark .news-ticker-title>a:hover,.site-mode--dark .np-archive-post-content-wrapper .entry-title a:hover,.site-mode--dark h1.entry-title:hover,.site-mode--dark .news_portal_block_posts .layout4 .np-post-title a:hover{color:#dd3333} .navigation .nav-links a,.bttn,button,input[type='button'],input[type='reset'],input[type='submit'],.widget_search .search-submit,.np-archive-more .np-button:hover,.widget.widget_tag_cloud a:hover{border-color:#dd3333} .comment-list .comment-body,.np-header-search-wrapper .search-form-main{border-top-color:#dd3333} .np-header-search-wrapper .search-form-main:before{border-bottom-color:#dd3333} @media (max-width:768px){#site-navigation,.main-small-navigation li.current-menu-item > .sub-toggle i{background:#dd3333 !important}} .news-portal-wave .np-rect,.news-portal-three-bounce .np-child,.news-portal-folding-cube .np-cube:before{background-color:#dd3333} .site-title,.site-description{position:absolute;clip:rect(1px,1px,1px,1px)} </style></head> <body class="archive category category-news category-6 custom-background wp-custom-logo group-blog hfeed right-sidebar boxed_layout archive-classic site-mode--light unselectable elementor-default elementor-kit-63171"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <div class="np-top-header-wrap"><div class="mt-container"> <div class="np-top-left-section-wrapper"> <div class="date-section">Monday, December 02, 2024</div> <nav id="top-navigation" class="top-navigation" role="navigation"> <div class="menu-top-menu-container"><ul id="top-menu" class="menu"><li id="menu-item-63211" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-63211"><a href="https://tesfanews.com/disclaimer/">Disclaimer</a></li> <li id="menu-item-63212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-63212"><a href="https://tesfanews.com/donate/">Donate</a></li> <li id="menu-item-63741" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-63741"><a href="https://tesfanews.com/about-us/">About TN</a></li> </ul></div> </nav><!-- #site-navigation --> </div><!-- .np-top-left-section-wrapper --> <div class="np-top-right-section-wrapper"> <div class="mt-social-icons-wrapper"><span class="social-link"><a href="#" target="_blank"><i class="fab fa-facebook"></i></a></span><span class="social-link"><a href="https://twitter.com/tesfanews" target="_blank"><i class="fab fa-x-twitter"></i></a></span><span class="social-link"><a href="https://www.youtube.com/@tn_media" target="_blank"><i class="fab fa-youtube"></i></a></span></div><!-- .mt-social-icons-wrapper --> </div><!-- .np-top-right-section-wrapper --> </div><!-- .mt-container --></div><!-- .np-top-header-wrap --><header id="masthead" class="site-header" role="banner"><div class="np-logo-section-wrapper"><div class="mt-container"> <div class="site-branding"> <a href="https://tesfanews.com/" class="custom-logo-link" rel="home"><img width="300" height="50" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%2050'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/03/NP_tn_logo.png?fit=300%2C50&ssl=1" class="custom-logo lazy" alt="TesfaNews" decoding="async" /></a> <p class="site-title"><a href="https://tesfanews.com/" rel="home">TesfaNews</a></p> <p class="site-description">Your go-to source for the latest news and updates on Eritrea.</p> </div><!-- .site-branding --> <div class="np-header-ads-area"> <section id="custom_html-13" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4596033848606154" crossorigin="anonymous"></script> <!-- leaderboard --> <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-4596033848606154" data-ad-slot="3873244036"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script></div></section> </div><!-- .np-header-ads-area --> </div><!-- .mt-container --></div><!-- .np-logo-section-wrapper --> <div id="np-menu-wrap" class="np-header-menu-wrapper"> <div class="np-header-menu-block-wrap"> <div class="mt-container"> <div class="np-home-icon"> <a href="https://tesfanews.com/" rel="home"> <i class="fa fa-home"> </i> </a> </div><!-- .np-home-icon --> <div class="mt-header-menu-wrap"> <a href="javascript:void(0)" class="menu-toggle hide"><i class="fa fa-navicon"> </i> </a> <nav id="site-navigation" class="main-navigation" role="navigation"> <div class="menu-primary-menu-container"><ul id="primary-menu" class="menu"><li id="menu-item-63219" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63219"><a href="https://tesfanews.com/category/business/">Development</a></li> <li id="menu-item-63220" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63220"><a href="https://tesfanews.com/category/ethiopia/">Politics</a></li> <li id="menu-item-63221" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63221"><a href="https://tesfanews.com/category/interview/">Interviews</a></li> <li id="menu-item-63222" class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-63222"><a href="https://tesfanews.com/category/news/" aria-current="page">News</a></li> <li id="menu-item-63223" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-63223"><a href="https://tesfanews.com/category/must-read/">Guest Writers</a> <ul class="sub-menu"> <li id="menu-item-63228" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63228"><a href="https://tesfanews.com/category/must-read/amanuel-biedemariam/">Amanuel Biedemariam</a></li> <li id="menu-item-63229" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63229"><a href="https://tesfanews.com/category/must-read/bereket-kidane/">Bereket Kidane</a></li> <li id="menu-item-63230" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63230"><a href="https://tesfanews.com/category/must-read/fikrejesus-amhazion/">Fikrejesus Amhazion</a></li> <li id="menu-item-63231" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63231"><a href="https://tesfanews.com/category/must-read/sophia-tesfamariam/">Sophia Tesfamariam</a></li> </ul> </li> <li id="menu-item-63232" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63232"><a href="https://tesfanews.com/category/photos/">Photo Galleries</a></li> <li id="menu-item-63234" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63234"><a href="https://tesfanews.com/category/press-release/">Press Release</a></li> <li id="menu-item-63235" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63235"><a href="https://tesfanews.com/category/tigrinya/">ትግርኛ</a></li> </ul></div> </nav><!-- #site-navigation --> </div><!-- .mt-header-menu-wrap --> <div class="np-icon-elements-wrapper"> <div id="np-site-mode-wrap" class="np-icon-elements"> <a id="mode-switcher" class="light-mode" data-site-mode="light-mode" href="#"> <span class="site-mode-icon">site mode button</span> </a> </div><!-- #np-site-mode-wrap --> <div class="np-header-search-wrapper"> <span class="search-main"><a href="javascript:void(0)"><i class="fa fa-search"></i></a></span> <div class="search-form-main np-clearfix"> <form role="search" method="get" class="search-form" action="https://tesfanews.com/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field" placeholder="Search …" value="" name="s" /> </label> <input type="submit" class="search-submit" value="Search" /> </form> </div> </div><!-- .np-header-search-wrapper --> </div> <!-- .np-icon-elements-wrapper --> </div> </div> </div><!-- .np-header-menu-wrapper --> </header><!-- .site-header --> <div id="content" class="site-content"> <div class="mt-container"> <div class="mt-archive-content-wrapper"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <header class="page-header"> <h1 class="page-title">Category: <span>News</span></h1> </header><!-- .page-header --> <article id="post-67194" class="post-67194 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-ethiopia tag-diplomacy tag-eritrea tag-general-abdel-fattah-al-burhan tag-sudan tag-sudan-civil-war"> <div class="np-article-thumb"> <a href="https://tesfanews.com/sudan-general-al-burhan-visits-eritrea/"> <img fetchpriority="high" width="1200" height="630" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20630'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Al-Burhan-Asmara-Nov-26.jpg?fit=1200%2C630&ssl=1" class="attachment-full size-full wp-post-image lazy" alt="The Chairman of Sudan's Sovereign Council, General Abdel Fattah al-Burhan, arrived in Asmara." decoding="async" data-srcset="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Al-Burhan-Asmara-Nov-26.jpg?w=1200&ssl=1 1200w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Al-Burhan-Asmara-Nov-26.jpg?resize=300%2C158&ssl=1 300w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Al-Burhan-Asmara-Nov-26.jpg?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Al-Burhan-Asmara-Nov-26.jpg?resize=768%2C403&ssl=1 768w" data-sizes="(max-width: 1200px) 100vw, 1200px" /> </a> </div><!-- .np-article-thumb --> <div class="np-archive-post-content-wrapper"> <header class="entry-header"> <h2 class="entry-title"><a href="https://tesfanews.com/sudan-general-al-burhan-visits-eritrea/" rel="bookmark">General al-Burhan of Sudan Visits Eritrea</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/sudan-general-al-burhan-visits-eritrea/" rel="bookmark"><time class="entry-date published" datetime="2024-11-26T10:14:01-06:00">November 26, 2024</time><time class="updated" datetime="2024-11-26T11:38:01-06:00">November 26, 2024</time></a></span><span class="byline"><span class="author vcard"><a class="url fn n" href="https://tesfanews.com/author/admin/">TesfaNews</a></span></span><span class="comments-link"><a href="https://tesfanews.com/sudan-general-al-burhan-visits-eritrea/#respond"><span class="dsq-postid" data-dsqidentifier="67194 https://tesfanews.com/?p=67194">Leave a Comment<span class="screen-reader-text"> on General al-Burhan of Sudan Visits Eritrea</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>General Abdel Fattah al-Burhan, Chairman of Sudan’s Sovereign Council, has arrived in Asmara, Eritrea, for a working visit. His delegation, which includes Mr. Khalid Ali Eleaisir, Minister of Culture and Information; and, Lieutenant General Ahmed Ibrahim Mofadal, Director General of the General Intelligence Service among other senior Officials, were accorded warm welcome by President Isaias […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/sudan-general-al-burhan-visits-eritrea/" class="np-button"><i class="fa fa-arrow-circle-right"></i>Continue Reading</a></span> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!-- .np-archive-post-content-wrapper --> </article><!-- #post-67194 --> <article id="post-67186" class="post-67186 post type-post status-publish format-standard has-post-thumbnail hentry category-news"> <div class="np-article-thumb"> <a href="https://tesfanews.com/uk-asylum-fraud-ethiopians-pose-as-asylum-seekers-from-eritrea/"> <img width="1200" height="478" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20478'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Fake-Eritrea-asylum-UK.jpg?fit=1200%2C478&ssl=1" class="attachment-full size-full wp-post-image lazy" alt="Fake Ethiopian asylum seekers are conning their way into Britain by telling the Home Office they are from Eritrea" decoding="async" data-srcset="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Fake-Eritrea-asylum-UK.jpg?w=1200&ssl=1 1200w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Fake-Eritrea-asylum-UK.jpg?resize=300%2C120&ssl=1 300w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Fake-Eritrea-asylum-UK.jpg?resize=1024%2C408&ssl=1 1024w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Fake-Eritrea-asylum-UK.jpg?resize=768%2C306&ssl=1 768w" data-sizes="(max-width: 1200px) 100vw, 1200px" /> </a> </div><!-- .np-article-thumb --> <div class="np-archive-post-content-wrapper"> <header class="entry-header"> <h2 class="entry-title"><a href="https://tesfanews.com/uk-asylum-fraud-ethiopians-pose-as-asylum-seekers-from-eritrea/" rel="bookmark">UK Asylum Fraud: Ethiopians Pose as Eritreans</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/uk-asylum-fraud-ethiopians-pose-as-asylum-seekers-from-eritrea/" rel="bookmark"><time class="entry-date published" datetime="2024-11-18T14:45:53-06:00">November 18, 2024</time><time class="updated" datetime="2024-11-18T14:46:42-06:00">November 18, 2024</time></a></span><span class="byline"><span class="author vcard"><a class="url fn n" href="https://tesfanews.com/author/admin/">TesfaNews</a></span></span><span class="comments-link"><a href="https://tesfanews.com/uk-asylum-fraud-ethiopians-pose-as-asylum-seekers-from-eritrea/#respond"><span class="dsq-postid" data-dsqidentifier="67186 https://tesfanews.com/?p=67186">Leave a Comment<span class="screen-reader-text"> on UK Asylum Fraud: Ethiopians Pose as Eritreans</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Europe’s “automatic asylum” Policy on Eritrea backfires: flood of fraudulent asylum claims from Ethiopia and beyond A recent investigative report by the Daily Mail has shed light on an alarming trend affecting Europe’s immigration system. What was originally intended as a humanitarian policy of offering automatic, bona fide asylum rights to Eritreans has backfired. Instead […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/uk-asylum-fraud-ethiopians-pose-as-asylum-seekers-from-eritrea/" class="np-button"><i class="fa fa-arrow-circle-right"></i>Continue Reading</a></span> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!-- .np-archive-post-content-wrapper --> </article><!-- #post-67186 --> <article id="post-67177" class="post-67177 post type-post status-publish format-standard has-post-thumbnail hentry category-interview category-news tag-development tag-eritrea tag-sandra-macharia tag-un-eritrea-stories tag-unis"> <div class="np-article-thumb"> <a href="https://tesfanews.com/eritrea-interview-sandra-macharia-director-unis/"> <img width="1200" height="630" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20630'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Sandra-Macharia-UNIS-Eritrea.jpg?fit=1200%2C630&ssl=1" class="attachment-full size-full wp-post-image lazy" alt="Sandra Macharia, Director of UN Information Services in Nairobi was in Eritrea" decoding="async" data-srcset="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Sandra-Macharia-UNIS-Eritrea.jpg?w=1200&ssl=1 1200w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Sandra-Macharia-UNIS-Eritrea.jpg?resize=300%2C158&ssl=1 300w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Sandra-Macharia-UNIS-Eritrea.jpg?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Sandra-Macharia-UNIS-Eritrea.jpg?resize=768%2C403&ssl=1 768w" data-sizes="(max-width: 1200px) 100vw, 1200px" /> </a> </div><!-- .np-article-thumb --> <div class="np-archive-post-content-wrapper"> <header class="entry-header"> <h2 class="entry-title"><a href="https://tesfanews.com/eritrea-interview-sandra-macharia-director-unis/" rel="bookmark">Eritrea: Interview With Sandra Macharia, Director of UNIS, Nairobi</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/eritrea-interview-sandra-macharia-director-unis/" rel="bookmark"><time class="entry-date published" datetime="2024-11-16T10:18:06-06:00">November 16, 2024</time><time class="updated" datetime="2024-11-16T10:29:42-06:00">November 16, 2024</time></a></span><span class="byline"><span class="author vcard"><a class="url fn n" href="https://tesfanews.com/author/admin/">TesfaNews</a></span></span><span class="comments-link"><a href="https://tesfanews.com/eritrea-interview-sandra-macharia-director-unis/#respond"><span class="dsq-postid" data-dsqidentifier="67177 https://tesfanews.com/?p=67177">Leave a Comment<span class="screen-reader-text"> on Eritrea: Interview With Sandra Macharia, Director of UNIS, Nairobi</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Eritrea boasts numerous success stories in education, health, food security, and other related fields that are truly newsworthy. However, these achievements often go unnoticed due to limited communication strategies, hindering their dissemination to a broader audience. Leveraging the global network within the UN could play a crucial role in sharing these inspiring narratives with the […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/eritrea-interview-sandra-macharia-director-unis/" class="np-button"><i class="fa fa-arrow-circle-right"></i>Continue Reading</a></span> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!-- .np-archive-post-content-wrapper --> </article><!-- #post-67177 --> <article id="post-67165" class="post-67165 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-must-read tag-eritrean-authors tag-eritrean-revolution-story tag-mesfin-hagos tag-mesfin-hagos-book-review"> <div class="np-article-thumb"> <a href="https://tesfanews.com/book-critique-an-african-revolution-reclaimed-factual-errors-omissions-misrepresentations/"> <img width="1200" height="630" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20630'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Mesfin-Hagos-book-review.jpg?fit=1200%2C630&ssl=1" class="attachment-full size-full wp-post-image lazy" alt="Book Review: "An African Revolution Reclaimed" by Mesin Hagos - Factual Errors, Omissions and Misrepresentations" decoding="async" data-srcset="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Mesfin-Hagos-book-review.jpg?w=1200&ssl=1 1200w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Mesfin-Hagos-book-review.jpg?resize=300%2C158&ssl=1 300w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Mesfin-Hagos-book-review.jpg?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Mesfin-Hagos-book-review.jpg?resize=768%2C403&ssl=1 768w" data-sizes="(max-width: 1200px) 100vw, 1200px" /> </a> </div><!-- .np-article-thumb --> <div class="np-archive-post-content-wrapper"> <header class="entry-header"> <h2 class="entry-title"><a href="https://tesfanews.com/book-critique-an-african-revolution-reclaimed-factual-errors-omissions-misrepresentations/" rel="bookmark">Book Critique: “An African Revolution Reclaimed” – Factual Errors, Omissions and Misrepresentations</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/book-critique-an-african-revolution-reclaimed-factual-errors-omissions-misrepresentations/" rel="bookmark"><time class="entry-date published updated" datetime="2024-11-13T14:21:44-06:00">November 13, 2024</time></a></span><span class="byline"><span class="author vcard"><a class="url fn n" href="https://tesfanews.com/author/admin/">TesfaNews</a></span></span><span class="comments-link"><a href="https://tesfanews.com/book-critique-an-african-revolution-reclaimed-factual-errors-omissions-misrepresentations/#respond"><span class="dsq-postid" data-dsqidentifier="67165 https://tesfanews.com/?p=67165">Leave a Comment<span class="screen-reader-text"> on Book Critique: “An African Revolution Reclaimed” – Factual Errors, Omissions and Misrepresentations</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>By Drar Bekit In 2023, a book coauthored by veteran freedom fighter Mesfin Hagos and Awet Tewelde was released. I read the book, discussed with some who have read the book and asked a few former veteran fighters on some iffy contents of the book. I leave readers to judge the book for themselves. However, […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/book-critique-an-african-revolution-reclaimed-factual-errors-omissions-misrepresentations/" class="np-button"><i class="fa fa-arrow-circle-right"></i>Continue Reading</a></span> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!-- .np-archive-post-content-wrapper --> </article><!-- #post-67165 --> <article id="post-67142" class="post-67142 post type-post status-publish format-standard has-post-thumbnail hentry category-news tag-china-eritrea-relation tag-diplomacy tag-diplomatic-training tag-eritrean-diplomats"> <div class="np-article-thumb"> <a href="https://tesfanews.com/eritrea-diplomatic-officers-complete-international-relations-training-program/"> <img width="1200" height="630" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20630'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/eritrea-diplomat-training.jpg?fit=1200%2C630&ssl=1" class="attachment-full size-full wp-post-image lazy" alt="Eritrean Diplomatic Officers Complete International Relations Training Program in Partnership with China" decoding="async" data-srcset="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/eritrea-diplomat-training.jpg?w=1200&ssl=1 1200w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/eritrea-diplomat-training.jpg?resize=300%2C158&ssl=1 300w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/eritrea-diplomat-training.jpg?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/eritrea-diplomat-training.jpg?resize=768%2C403&ssl=1 768w" data-sizes="(max-width: 1200px) 100vw, 1200px" /> </a> </div><!-- .np-article-thumb --> <div class="np-archive-post-content-wrapper"> <header class="entry-header"> <h2 class="entry-title"><a href="https://tesfanews.com/eritrea-diplomatic-officers-complete-international-relations-training-program/" rel="bookmark">Eritrea: Diplomatic Officers Complete International Relations Training Program</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/eritrea-diplomatic-officers-complete-international-relations-training-program/" rel="bookmark"><time class="entry-date published updated" datetime="2024-11-06T13:28:51-06:00">November 6, 2024</time></a></span><span class="byline"><span class="author vcard"><a class="url fn n" href="https://tesfanews.com/author/admin/">TesfaNews</a></span></span><span class="comments-link"><a href="https://tesfanews.com/eritrea-diplomatic-officers-complete-international-relations-training-program/#respond"><span class="dsq-postid" data-dsqidentifier="67142 https://tesfanews.com/?p=67142">Leave a Comment<span class="screen-reader-text"> on Eritrea: Diplomatic Officers Complete International Relations Training Program</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>The collaborative initiative with China aims at supporting the professional growth of Eritrean diplomats. Forty-five diplomatic officers from Eritrea’s Ministry of Foreign Affairs and Ministry of Information recently completed a training program sponsored by China’s Ministry of Commerce and hosted by Hunan International Vocational College. The program covered international relations, China-Africa relations, and China’s foreign […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/eritrea-diplomatic-officers-complete-international-relations-training-program/" class="np-button"><i class="fa fa-arrow-circle-right"></i>Continue Reading</a></span> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!-- .np-archive-post-content-wrapper --> </article><!-- #post-67142 --> <article id="post-67133" class="post-67133 post type-post status-publish format-standard has-post-thumbnail hentry category-news"> <div class="np-article-thumb"> <a href="https://tesfanews.com/donald-trump-wins-2024-presidential-election-against-kamala-harris/"> <img width="1200" height="630" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20630'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Donald_Trump-47.jpg?fit=1200%2C630&ssl=1" class="attachment-full size-full wp-post-image lazy" alt="Donald Trump Wins 2024 Presidential Election Against Kamala Harris" decoding="async" data-srcset="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Donald_Trump-47.jpg?w=1200&ssl=1 1200w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Donald_Trump-47.jpg?resize=300%2C158&ssl=1 300w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Donald_Trump-47.jpg?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/Donald_Trump-47.jpg?resize=768%2C403&ssl=1 768w" data-sizes="(max-width: 1200px) 100vw, 1200px" /> </a> </div><!-- .np-article-thumb --> <div class="np-archive-post-content-wrapper"> <header class="entry-header"> <h2 class="entry-title"><a href="https://tesfanews.com/donald-trump-wins-2024-presidential-election-against-kamala-harris/" rel="bookmark">Donald Trump Wins 2024 Presidential Election Against Kamala Harris</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/donald-trump-wins-2024-presidential-election-against-kamala-harris/" rel="bookmark"><time class="entry-date published" datetime="2024-11-06T12:48:51-06:00">November 6, 2024</time><time class="updated" datetime="2024-11-06T12:49:19-06:00">November 6, 2024</time></a></span><span class="byline"><span class="author vcard"><a class="url fn n" href="https://tesfanews.com/author/admin/">TesfaNews</a></span></span><span class="comments-link"><a href="https://tesfanews.com/donald-trump-wins-2024-presidential-election-against-kamala-harris/#respond"><span class="dsq-postid" data-dsqidentifier="67133 https://tesfanews.com/?p=67133">Leave a Comment<span class="screen-reader-text"> on Donald Trump Wins 2024 Presidential Election Against Kamala Harris</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>President Isaias Afwerki of Eritrea was among the first African leaders who sent warm messages of congratulations. Republican Donald Trump has made a remarkable return to the White House defeating Democratic candidate Kamala Harris in the U.S. presidential election to become the 47th president of the United States. This victory completes a dramatic political comeback […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/donald-trump-wins-2024-presidential-election-against-kamala-harris/" class="np-button"><i class="fa fa-arrow-circle-right"></i>Continue Reading</a></span> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!-- .np-archive-post-content-wrapper --> </article><!-- #post-67133 --> <article id="post-67125" class="post-67125 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-video tag-asylum-fraud tag-eritrean-asylum-seekers tag-eritrean-identity tag-unhcr-guidelines-on-eritrea"> <div class="np-article-thumb"> <a href="https://tesfanews.com/exposing-the-abuse-of-eritrean-asylum-policies/"> <img width="1200" height="631" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20631'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/migrants-Libya.jpg?fit=1200%2C631&ssl=1" class="attachment-full size-full wp-post-image lazy" alt="The Eritrean identity has emerged as the most commonly misrepresented nationality for asylum seekers, primarily due to UNHCR guidelines" decoding="async" data-srcset="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/migrants-Libya.jpg?w=1200&ssl=1 1200w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/migrants-Libya.jpg?resize=300%2C158&ssl=1 300w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/migrants-Libya.jpg?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/11/migrants-Libya.jpg?resize=768%2C404&ssl=1 768w" data-sizes="(max-width: 1200px) 100vw, 1200px" /> </a> </div><!-- .np-article-thumb --> <div class="np-archive-post-content-wrapper"> <header class="entry-header"> <h2 class="entry-title"><a href="https://tesfanews.com/exposing-the-abuse-of-eritrean-asylum-policies/" rel="bookmark">Exposing the Abuse of Eritrean Asylum Policies</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/exposing-the-abuse-of-eritrean-asylum-policies/" rel="bookmark"><time class="entry-date published" datetime="2024-11-05T09:11:28-06:00">November 5, 2024</time><time class="updated" datetime="2024-11-05T09:46:32-06:00">November 5, 2024</time></a></span><span class="byline"><span class="author vcard"><a class="url fn n" href="https://tesfanews.com/author/admin/">TesfaNews</a></span></span><span class="comments-link"><a href="https://tesfanews.com/exposing-the-abuse-of-eritrean-asylum-policies/#respond"><span class="dsq-postid" data-dsqidentifier="67125 https://tesfanews.com/?p=67125">Leave a Comment<span class="screen-reader-text"> on Exposing the Abuse of Eritrean Asylum Policies</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Asylum fraud has become a critical issue across Europe and North America, with significant consequences for immigration systems and communities. The Eritrean identity has emerged as the most commonly misrepresented nationality for asylum seekers, primarily due to UNHCR guidelines that facilitate automatic international protection for those claiming to be from Eritrea. This has led to […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/exposing-the-abuse-of-eritrean-asylum-policies/" class="np-button"><i class="fa fa-arrow-circle-right"></i>Continue Reading</a></span> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!-- .np-archive-post-content-wrapper --> </article><!-- #post-67125 --> <article id="post-67100" class="post-67100 post type-post status-publish format-standard has-post-thumbnail hentry category-business category-news category-video tag-cardiac-surgery-eritrea tag-cardiac-surgery-orotta-referral-hospital tag-med-action-bambini-eritrea tag-med-action-children-eritrea"> <div class="np-article-thumb"> <a href="https://tesfanews.com/eritrea-italian-doctors-perform-cardiac-surgeries-for-children-orotta-referral-hospital/"> <img width="1200" height="630" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20630'%3E%3C/svg%3E" data-src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg?fit=1200%2C630&ssl=1" class="attachment-full size-full wp-post-image lazy" alt="Italian medical professional perform Cardiac surgeries for children at the Orotta National Referral Hospital" decoding="async" data-srcset="https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg?w=1200&ssl=1 1200w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg?resize=300%2C158&ssl=1 300w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg?resize=768%2C403&ssl=1 768w" data-sizes="(max-width: 1200px) 100vw, 1200px" /> </a> </div><!-- .np-article-thumb --> <div class="np-archive-post-content-wrapper"> <header class="entry-header"> <h2 class="entry-title"><a href="https://tesfanews.com/eritrea-italian-doctors-perform-cardiac-surgeries-for-children-orotta-referral-hospital/" rel="bookmark">Eritrea: Italian Doctors Perform Cardiac Surgeries for Children</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/eritrea-italian-doctors-perform-cardiac-surgeries-for-children-orotta-referral-hospital/" rel="bookmark"><time class="entry-date published updated" datetime="2024-10-28T09:58:30-05:00">October 28, 2024</time></a></span><span class="byline"><span class="author vcard"><a class="url fn n" href="https://tesfanews.com/author/admin/">TesfaNews</a></span></span><span class="comments-link"><a href="https://tesfanews.com/eritrea-italian-doctors-perform-cardiac-surgeries-for-children-orotta-referral-hospital/#respond"><span class="dsq-postid" data-dsqidentifier="67100 https://tesfanews.com/?p=67100">Leave a Comment<span class="screen-reader-text"> on Eritrea: Italian Doctors Perform Cardiac Surgeries for Children</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Cardiac surgeries for children are currently being performed at Orotta National Referral Hospital through a collaborative effort between Eritrean doctors and Italian medical experts from ‘Med-Action Bambini.’ The program, which began on 23 October, will continue until 31 October, addressing patients from across the country who have been on the waiting list for surgery.</p> <span class="np-archive-more"><a href="https://tesfanews.com/eritrea-italian-doctors-perform-cardiac-surgeries-for-children-orotta-referral-hospital/" class="np-button"><i class="fa fa-arrow-circle-right"></i>Continue Reading</a></span> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </div><!-- .np-archive-post-content-wrapper --> </article><!-- #post-67100 --> <nav class="navigation posts-navigation" aria-label="Posts"> <h2 class="screen-reader-text">Posts navigation</h2> <div class="nav-links"><div class="nav-previous"><a href="https://tesfanews.com/category/news/page/2/" >Older posts</a></div></div> </nav> </main><!-- #main --> </div><!-- #primary --> <aside id="secondary" class="widget-area" role="complementary"> <section id="custom_html-12" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><script async src="https://cse.google.com/cse.js?cx=c5b6448f65b124ddf"> </script> <div class="gcse-search"></div></div></section> <section id="recent-posts-3" class="widget widget_recent_entries"> <h4 class="widget-title">Recent Posts</h4> <ul> <li> <a href="https://tesfanews.com/sudan-general-al-burhan-visits-eritrea/">General al-Burhan of Sudan Visits Eritrea</a> </li> <li> <a href="https://tesfanews.com/uk-asylum-fraud-ethiopians-pose-as-asylum-seekers-from-eritrea/">UK Asylum Fraud: Ethiopians Pose as Eritreans</a> </li> <li> <a href="https://tesfanews.com/eritrea-interview-sandra-macharia-director-unis/">Eritrea: Interview With Sandra Macharia, Director of UNIS, Nairobi</a> </li> <li> <a href="https://tesfanews.com/book-critique-an-african-revolution-reclaimed-factual-errors-omissions-misrepresentations/">Book Critique: “An African Revolution Reclaimed” – Factual Errors, Omissions and Misrepresentations</a> </li> <li> <a href="https://tesfanews.com/eritrea-diplomatic-officers-complete-international-relations-training-program/">Eritrea: Diplomatic Officers Complete International Relations Training Program</a> </li> </ul> </section><section id="custom_html-2" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div class="feedgrabbr_widget" id="fgid_cb4c473a33c619890d3741ce7"></div> <script> if (typeof(fg_widgets)==="undefined") fg_widgets = new Array();fg_widgets.push("fgid_cb4c473a33c619890d3741ce7");</script> <script src="https://www.feedgrabbr.com/widget/fgwidget.js"></script></div></section></aside><!-- #secondary --> </div><!-- .mt-archive-content-wrapper --> </div><!-- .mt-container --> </div><!-- #content --> <footer id="colophon" class="site-footer" role="contentinfo"> <div id="top-footer" class="footer-widgets-wrapper footer_column_three np-clearfix"> <div class="mt-container"> <div class="footer-widgets-area np-clearfix"> <div class="np-footer-widget-wrapper np-column-wrapper np-clearfix"> <div class="np-footer-widget wow fadeInLeft" data-wow-duration="0.5s"> <section id="custom_html-6" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div id="metaslider-id-64412" style="max-width: 1200px;" class="ml-slider-3-93-0 ml-slider-pro-2-42-0 metaslider metaslider-nivo metaslider-64412 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Isaias-Putin_meet"> <div id="metaslider_container_64412"> <div class='slider-wrapper theme-default no-lazy'><div class='ribbon no-lazy'></div><div id='metaslider_64412' class='nivoSlider no-lazy'><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_6.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_6" alt="" class="slider-64412 slide-64423 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_2.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_2" alt="" class="slider-64412 slide-64426 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_11.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_11" alt="" class="slider-64412 slide-64438 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_5.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_5" alt="" class="slider-64412 slide-64424 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_9.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_9" alt="" class="slider-64412 slide-64436 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_4.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_4" alt="" class="slider-64412 slide-64425 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_7.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_7" alt="" class="slider-64412 slide-64422 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_8.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_8" alt="" class="slider-64412 slide-64421 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_1.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_1" alt="" class="slider-64412 slide-64427 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_10.jpg?resize=640%2C395&ssl=1" height="395" width="640" title="Isaias_Putin_10" alt="" class="slider-64412 slide-64435 no-lazy" /></div></div> </div> </div> </div></section> </div> <div class="np-footer-widget wow fadeInLeft" data-woww-duration="1s"> <section id="custom_html-7" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div id="metaslider-id-64178" style="max-width: 850px;" class="ml-slider-3-93-0 ml-slider-pro-2-42-0 metaslider metaslider-nivo metaslider-64178 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Isaias Afwerki China Visit - Xi"> <div id="metaslider_container_64178"> <div class='slider-wrapper theme-default no-lazy'><div class='ribbon no-lazy'></div><div id='metaslider_64178' class='nivoSlider no-lazy'><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-9.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-9" alt="" class="slider-64178 slide-64199 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-10.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-10" alt="" class="slider-64178 slide-64201 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi_12.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias_Xi_12" alt="" class="slider-64178 slide-64220 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-8.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-8" alt="" class="slider-64178 slide-64197 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-3.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-3" alt="" class="slider-64178 slide-64188 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-4.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-4" alt="" class="slider-64178 slide-64187 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-2.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-2" alt="" class="slider-64178 slide-64189 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-6.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-6" alt="" class="slider-64178 slide-64185 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-5.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-5" alt="" class="slider-64178 slide-64186 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-1.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-1" alt="" class="slider-64178 slide-64190 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi-14.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias_Xi-14" alt="" class="slider-64178 slide-64226 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi-15.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias_Xi-15" alt="" class="slider-64178 slide-64228 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi_13.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias_Xi_13" alt="" class="slider-64178 slide-64222 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/PIA_Qiang-7.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="PIA_Qiang-7" alt="" class="slider-64178 slide-64191 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/PIA_Qiang-8.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="PIA_Qiang-8" alt="China's Premier Li Qiang and Eritrean President Isaias Afwerki discuss on how to enrich the Strategic Partnership between the two countries." class="slider-64178 slide-64192 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Xi_Isaias_16.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Xi_Isaias_16" alt="" class="slider-64178 slide-64249 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-7.jpg?resize=640%2C367&ssl=1" height="367" width="640" title="Isaias Xi Jinping-7" alt="" class="slider-64178 slide-64195 no-lazy" /></div></div> </div> </div></div></section> </div> <div class="np-footer-widget wow fadeInLeft" data-wow-duration="1.5s"> <section id="custom_html-8" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div id="metaslider-id-65621" style="max-width: 1000px;" class="ml-slider-3-93-0 ml-slider-pro-2-42-0 metaslider metaslider-nivo metaslider-65621 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Saudi-Africa Summit"> <div id="metaslider_container_65621"> <div class='slider-wrapper theme-default no-lazy'><div class='ribbon no-lazy'></div><div id='metaslider_65621' class='nivoSlider no-lazy'><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_6.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_6" alt="" class="slider-65621 slide-65637 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_3.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_3" alt="" class="slider-65621 slide-65625 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit-1.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit-1" alt="" class="slider-65621 slide-65627 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_5.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_5" alt="" class="slider-65621 slide-65638 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_7.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_7" alt="" class="slider-65621 slide-65636 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_2.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_2" alt="" class="slider-65621 slide-65626 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_8.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_8" alt="" class="slider-65621 slide-65635 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_9.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_9" alt="" class="slider-65621 slide-65644 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_10.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_10" alt="" class="slider-65621 slide-65646 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_11.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Saudi-Africa_Summit_11" alt="" class="slider-65621 slide-65648 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Somalia_Eritrea_leaders_Riyadh.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Somalia_Eritrea_leaders_Riyadh" alt="" class="slider-65621 slide-65659 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Eritrea_Burduni_leaders_Riyadh.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Eritrea_Burduni_leaders_Riyadh" alt="" class="slider-65621 slide-65661 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Eritrea_Mali_Riyadh.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Eritrea_Mali_Riyadh" alt="" class="slider-65621 slide-65663 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Eritrea_Burkina_Faso_leaders_Riyadh.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Eritrea_Burkina_Faso_leaders_Riyadh" alt="" class="slider-65621 slide-65665 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Eritrea_Gabon_leaders_Riyadh.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Eritrea_Gabon_leaders_Riyadh" alt="" class="slider-65621 slide-65667 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Eritrea_South_Sudan_Riyadh.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Eritrea_South_Sudan_Riyadh" alt="" class="slider-65621 slide-65669 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Eritrea_Sudan_Riyadh.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Eritrea_Sudan_Riyadh" alt="" class="slider-65621 slide-65671 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Eritrea_Egypt_Riyadh_meeting.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Eritrea_Egypt_Riyadh_meeting" alt="" class="slider-65621 slide-65699 no-lazy" /><img data-recalc-dims="1" src="https://i0.wp.com/tesfanews.com/wp-content/uploads/2023/11/Eritrea_Saudi_leaders_meeting-1.jpg?resize=640%2C384&ssl=1" height="384" width="640" title="Eritrea_Saudi_leaders_meeting-1" alt="Saudi Eritrea Leaders meeting in Riyadh" class="slider-65621 slide-65700 no-lazy" /></div></div> </div> </div></div></section> </div> </div><!-- .np-footer-widget-wrapper --> </div><!-- .footer-widgets-area --> </div><!-- .mt-container --> </div><!-- .footer-widgets-wrapper --><div class="bottom-footer np-clearfix"><div class="mt-container"> <div class="site-info"> <span class="np-copyright-text"> </span> <span class="sep"> | </span> Theme: News Portal by <a href="https://mysterythemes.com/" rel="nofollow" target="_blank">Mystery Themes</a>. </div><!-- .site-info --> <nav id="footer-navigation" class="footer-navigation" role="navigation"> <div class="menu-top-menu-container"><ul id="footer-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-63211"><a href="https://tesfanews.com/disclaimer/">Disclaimer</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-63212"><a href="https://tesfanews.com/donate/">Donate</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-63741"><a href="https://tesfanews.com/about-us/">About TN</a></li> </ul></div> </nav><!-- #site-navigation --> </div><!-- .mt-container --></div> <!-- bottom-footer --></footer><!-- #colophon --><div id="np-scrollup" class="animated arrow-hide"><i class="fa fa-chevron-up"></i></div></div><!-- #page --> <script id="wccp_pro_alert_message"> window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign window.addEventListener('load', function (){ // Create the first div element with the "oncontextmenu" attribute const wccp_pro_mask = document.createElement('div'); wccp_pro_mask.setAttribute('oncontextmenu', 'return false;'); wccp_pro_mask.setAttribute('id', 'wccp_pro_mask'); // Create the second div element with the "msgmsg-box-wpcp hideme" classes const wpcp_error_message = document.createElement('div'); wpcp_error_message.setAttribute('id', 'wpcp-error-message'); wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme'); // Add a span element with the "error: " text inside the second div const error_span = document.createElement('span'); error_span.innerText = 'error: '; wpcp_error_message.appendChild(error_span); // Add the error message text inside the second div const error_text = document.createTextNode(''); wpcp_error_message.appendChild(error_text); // Add the div elements to the document body document.body.appendChild(wccp_pro_mask); document.body.appendChild(wpcp_error_message); }); var timeout_result; function show_wccp_pro_message(smessage="", style="") { wccp_pro_log_to_console_if_allowed("function", "show_wccp_pro_message" + smessage); timeout = 2000; if(style == "") style = "warning-wpcp"; if (smessage !== "" && timeout!=0) { var smessage_text = smessage; jquery_fadeTo(); document.getElementById("wpcp-error-message").innerHTML = smessage_text; document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style; clearTimeout(timeout_result); timeout_result = setTimeout(hide_message, timeout); } else { clearTimeout(timeout_result); timeout_result = setTimeout(hide_message, timeout); } } function hide_message() { jquery_fadeOut(); document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme"; } function jquery_fadeTo() { try { jQuery("#wccp_pro_mask").fadeTo("slow", 0.3); } catch(err) { //alert(err.message); } } function jquery_fadeOut() { try { jQuery("#wccp_pro_mask").fadeOut( "slow" ); } catch(err) {} } </script> <style> #wccp_pro_mask { position: absolute; bottom: 0; left: 0; position: fixed; right: 0; top: 0; background-color: #000; pointer-events: none; display: none; z-index: 10000; animation: 0.5s ease 0s normal none 1 running ngdialog-fadein; background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0; } #wpcp-error-message { direction: ltr; text-align: center; transition: opacity 900ms ease 0s; pointer-events: none; z-index: 99999999; } .hideme { opacity:0; visibility: hidden; } .showme { opacity:1; visibility: visible; } .msgmsg-box-wpcp { border-radius: 10px; color: #555555; font-family: Tahoma; font-size: 12px; margin: 10px; padding: 10px 36px; position: fixed; width: 255px; top: 50%; left: 50%; margin-top: -10px; margin-left: -130px; } .msgmsg-box-wpcp b { font-weight:bold; text-transform:uppercase; } .warning-wpcp { background:#ffecec url('https://tesfanews.com/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%; border:1px solid #f2bfbf; -webkit-box-shadow: 0px 0px 34px 2px #f2bfbf; -moz-box-shadow: 0px 0px 34px 2px #f2bfbf; box-shadow: 0px 0px 34px 2px #f2bfbf; } .success-wpcp { background: #fafafa url('https://tesfanews.com/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%; border: 1px solid #00b38f; box-shadow: 0px 0px 34px 2px #adc; } </style> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='metaslider-nivo-slider-css' href='https://tesfanews.com/wp-content/plugins/ml-slider/assets/sliders/nivoslider/nivo-slider.css?ver=3.93.0' type='text/css' media='all' property='stylesheet' /> <link rel='stylesheet' id='metaslider-public-css' href='https://tesfanews.com/wp-content/plugins/ml-slider/assets/metaslider/public.css?ver=3.93.0' type='text/css' media='all' property='stylesheet' /> <style id='metaslider-public-inline-css' type='text/css'> @media only screen and (max-width: 767px) {body:after { display: none; content: "smartphone"; } .hide-arrows-smartphone .flex-direction-nav, .hide-navigation-smartphone .flex-control-paging, .hide-navigation-smartphone .flex-control-nav, .hide-navigation-smartphone .filmstrip{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body:after { display: none; content: "tablet"; } .hide-arrows-tablet .flex-direction-nav, .hide-navigation-tablet .flex-control-paging, .hide-navigation-tablet .flex-control-nav, .hide-navigation-tablet .filmstrip{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body:after { display: none; content: "laptop"; } .hide-arrows-laptop .flex-direction-nav, .hide-navigation-laptop .flex-control-paging, .hide-navigation-laptop .flex-control-nav, .hide-navigation-laptop .filmstrip{ display: none!important; }}@media only screen and (min-width : 1440px) {body:after { display: none; content: "desktop"; } .hide-arrows-desktop .flex-direction-nav, .hide-navigation-desktop .flex-control-paging, .hide-navigation-desktop .flex-control-nav, .hide-navigation-desktop .filmstrip{ display: none!important; }} @media only screen and (max-width: 767px) {body:after { display: none; content: "smartphone"; } .hide-arrows-smartphone .flex-direction-nav, .hide-navigation-smartphone .flex-control-paging, .hide-navigation-smartphone .flex-control-nav, .hide-navigation-smartphone .filmstrip{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body:after { display: none; content: "tablet"; } .hide-arrows-tablet .flex-direction-nav, .hide-navigation-tablet .flex-control-paging, .hide-navigation-tablet .flex-control-nav, .hide-navigation-tablet .filmstrip{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body:after { display: none; content: "laptop"; } .hide-arrows-laptop .flex-direction-nav, .hide-navigation-laptop .flex-control-paging, .hide-navigation-laptop .flex-control-nav, .hide-navigation-laptop .filmstrip{ display: none!important; }}@media only screen and (min-width : 1440px) {body:after { display: none; content: "desktop"; } .hide-arrows-desktop .flex-direction-nav, .hide-navigation-desktop .flex-control-paging, .hide-navigation-desktop .flex-control-nav, .hide-navigation-desktop .filmstrip{ display: none!important; }} @media only screen and (max-width: 767px) {body:after { display: none; content: "smartphone"; } .hide-arrows-smartphone .flex-direction-nav, .hide-navigation-smartphone .flex-control-paging, .hide-navigation-smartphone .flex-control-nav, .hide-navigation-smartphone .filmstrip{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body:after { display: none; content: "tablet"; } .hide-arrows-tablet .flex-direction-nav, .hide-navigation-tablet .flex-control-paging, .hide-navigation-tablet .flex-control-nav, .hide-navigation-tablet .filmstrip{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body:after { display: none; content: "laptop"; } .hide-arrows-laptop .flex-direction-nav, .hide-navigation-laptop .flex-control-paging, .hide-navigation-laptop .flex-control-nav, .hide-navigation-laptop .filmstrip{ display: none!important; }}@media only screen and (min-width : 1440px) {body:after { display: none; content: "desktop"; } .hide-arrows-desktop .flex-direction-nav, .hide-navigation-desktop .flex-control-paging, .hide-navigation-desktop .flex-control-nav, .hide-navigation-desktop .filmstrip{ display: none!important; }} </style> <link rel='stylesheet' id='metaslider-pro-public-css' href='https://tesfanews.com/wp-content/plugins/ml-slider-pro/assets/public.css?ver=2.42.0' type='text/css' media='all' property='stylesheet' /> <link rel='stylesheet' id='metaslider-nivo-slider-default-css' href='https://tesfanews.com/wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/default.css?ver=3.93.0' type='text/css' media='all' property='stylesheet' /> <script type="text/javascript" id="google_cse_v2-js-extra"> /* <![CDATA[ */ var scriptParams = {"google_search_engine_id":"45226d546f9a44713"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/wp-google-search/assets/js/google_cse_v2.js?ver=1" id="google_cse_v2-js"></script> <script type="text/javascript" id="disqus_count-js-extra"> /* <![CDATA[ */ var countVars = {"disqusShortname":"tesfanews"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/disqus-comment-system/public/js/comment_count.js?ver=3.1.2" id="disqus_count-js"></script> <script type="text/javascript" id="embedpress-front-js-extra"> /* <![CDATA[ */ var eplocalize = {"ajaxurl":"https:\/\/tesfanews.com\/wp-admin\/admin-ajax.php","is_pro_plugin_active":"","nonce":"3c717a6b57"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/embedpress/assets/js/front.js?ver=4.1.4" id="embedpress-front-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-includes/js/jquery/ui/accordion.min.js?ver=1.13.3" id="jquery-ui-accordion-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-includes/js/jquery/ui/tabs.min.js?ver=1.13.3" id="jquery-ui-tabs-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/theme-junkie-shortcodes/assets/js/junkie-shortcodes.js" id="junkie-shortcodes-js-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-includes/js/masonry.min.js?ver=4.2.2" id="masonry-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/wp-blog-post-layouts/includes/assets/js/frontend.js?ver=1.1.4" id="wpblog-post-layouts-public-script-js"></script> <script type="text/javascript" id="wpmagazine-modules-lite-public-script-js-extra"> /* <![CDATA[ */ var wpmagazineModulesObject = {"ajax_url":"https:\/\/tesfanews.com\/wp-admin\/admin-ajax.php","_wpnonce":"4ca05dd633"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/wp-magazine-modules-lite/includes/assets/js/frontend.js?ver=1.1.3" id="wpmagazine-modules-lite-public-script-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/wp-magazine-modules-lite/includes/assets/library/slick-slider/js/slick.min.js?ver=1.8.0" id="slick-slider-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/wp-magazine-modules-lite/includes/assets/library/jQuery.Marquee/jquery.marquee.min.js?ver=1.0.0" id="jquery-marquee-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/themes/news-portal/assets/js/navigation.js?ver=1.5.4" id="news-portal-navigation-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/themes/news-portal/assets/library/sticky/jquery.sticky.js?ver=20150416" id="jquery-sticky-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/themes/news-portal/assets/js/skip-link-focus-fix.js?ver=1.5.4" id="news-portal-skip-link-focus-fix-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/themes/news-portal/assets/library/lightslider/js/lightslider.min.js?ver=1.1.6" id="lightslider-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/themes/news-portal/assets/library/sticky/theia-sticky-sidebar.min.js?ver=1.7.0" id="theia-sticky-sidebar-js"></script> <script type="text/javascript" id="news-portal-custom-script-js-extra"> /* <![CDATA[ */ var mtObject = {"menu_sticky":"true","inner_sticky":"true","front_sticky":"true"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/themes/news-portal/assets/js/np-custom-scripts.js?ver=1.5.4" id="news-portal-custom-script-js"></script> <script type="text/javascript" id="wccp_pro_admin_bar_ajax-js-extra"> /* <![CDATA[ */ var ajax_object = {"ajaxurl":"https:\/\/tesfanews.com\/wp-admin\/admin-ajax.php","link":"https:\/\/tesfanews.com\/category\/news\/"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=6.7.1" id="wccp_pro_admin_bar_ajax-js"></script> <script type="text/javascript" src="https://stats.wp.com/e-202449.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script type="text/javascript" id="jetpack-stats-js-after"> /* <![CDATA[ */ _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"217015860\",\"post\":\"0\",\"tz\":\"-6\",\"srv\":\"tesfanews.com\",\"j\":\"1:14.0\"}") ]); _stq.push([ "clickTrackerInit", "217015860", "0" ]); /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/ml-slider/assets/sliders/nivoslider/jquery.nivo.slider.pack.js?ver=3.93.0" id="metaslider-nivo-slider-js"></script> <script type="text/javascript" id="metaslider-nivo-slider-js-after"> /* <![CDATA[ */ var metaslider_64412 = function($) { $('#metaslider_64412').nivoSlider({ boxCols:7, boxRows:5, pauseTime:3000, effect:"random", controlNav:true, directionNav:true, pauseOnHover:true, animSpeed:600, prevText:"<", nextText:">", slices:15, manualAdvance:false }); $(document).trigger('metaslider/initialized', '#metaslider_64412'); }; jQuery(document).ready(function($) { $('.metaslider').attr('tabindex', '0'); $(document).on('keyup.slider', function(e) { if (e.keyCode == 37) { $('a.nivo-prevNav').click(); } else if (e.keyCode == 39) { $('a.nivo-nextNav').click(); } }); }); var timer_metaslider_64412 = function() { var slider = !window.jQuery ? window.setTimeout(timer_metaslider_64412, 100) : !jQuery.isReady ? window.setTimeout(timer_metaslider_64412, 1) : metaslider_64412(window.jQuery); }; timer_metaslider_64412(); var metaslider_64178 = function($) { $('#metaslider_64178').nivoSlider({ boxCols:7, boxRows:5, pauseTime:3000, effect:"random", controlNav:true, directionNav:true, pauseOnHover:true, animSpeed:600, prevText:"<", nextText:">", slices:15, manualAdvance:false }); $(document).trigger('metaslider/initialized', '#metaslider_64178'); }; jQuery(document).ready(function($) { $('.metaslider').attr('tabindex', '0'); $(document).on('keyup.slider', function(e) { if (e.keyCode == 37) { $('a.nivo-prevNav').click(); } else if (e.keyCode == 39) { $('a.nivo-nextNav').click(); } }); }); var timer_metaslider_64178 = function() { var slider = !window.jQuery ? window.setTimeout(timer_metaslider_64178, 100) : !jQuery.isReady ? window.setTimeout(timer_metaslider_64178, 1) : metaslider_64178(window.jQuery); }; timer_metaslider_64178(); var metaslider_65621 = function($) { $('#metaslider_65621').nivoSlider({ boxCols:7, boxRows:5, pauseTime:3000, effect:"random", controlNav:true, directionNav:true, pauseOnHover:true, animSpeed:600, prevText:"<", nextText:">", slices:15, manualAdvance:false }); $(document).trigger('metaslider/initialized', '#metaslider_65621'); }; jQuery(document).ready(function($) { $('.metaslider').attr('tabindex', '0'); $(document).on('keyup.slider', function(e) { if (e.keyCode == 37) { $('a.nivo-prevNav').click(); } else if (e.keyCode == 39) { $('a.nivo-nextNav').click(); } }); }); var timer_metaslider_65621 = function() { var slider = !window.jQuery ? window.setTimeout(timer_metaslider_65621, 100) : !jQuery.isReady ? window.setTimeout(timer_metaslider_65621, 1) : metaslider_65621(window.jQuery); }; timer_metaslider_65621(); /* ]]> */ </script> <script type="text/javascript" id="metaslider-script-js-extra"> /* <![CDATA[ */ var wpData = {"baseUrl":"https:\/\/tesfanews.com"}; var wpData = {"baseUrl":"https:\/\/tesfanews.com"}; var wpData = {"baseUrl":"https:\/\/tesfanews.com"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/ml-slider/assets/metaslider/script.min.js?ver=3.93.0" id="metaslider-script-js"></script> <script>window.w3tc_lazyload=1,window.lazyLoadOptions={elements_selector:".lazy",callback_loaded:function(t){var e;try{e=new CustomEvent("w3tc_lazyload_loaded",{detail:{e:t}})}catch(a){(e=document.createEvent("CustomEvent")).initCustomEvent("w3tc_lazyload_loaded",!1,!1,{e:t})}window.dispatchEvent(e)}}</script><script async src="https://tesfanews.com/wp-content/plugins/w3-total-cache/pub/js/lazyload.min.js"></script></body> </html> <!-- Page supported by LiteSpeed Cache 6.5.2 on 2024-12-02 22:32:33 --> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Object Caching 0/1102 objects using Memcached Lazy Loading Database Caching using Memcached (Request-wide modification query) Served from: tesfanews.com @ 2024-12-02 22:32:33 by W3 Total Cache -->