CINXE.COM
Development Archives
<!doctype html> <html lang="en-US" prefix="og: https://ogp.me/ns#"> <head> <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>Development 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/business/" /> <link rel="next" href="https://tesfanews.com/business/page/2/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Development Archives" /> <meta property="og:url" content="https://tesfanews.com/business/" /> <meta property="og:site_name" content="TesfaNews" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Development Archives" /> <meta name="twitter:site" content="@tesfanews" /> <meta name="twitter:label1" content="Posts" /> <meta name="twitter:data1" content="812" /> <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://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/business/#webpage","url":"https://tesfanews.com/business/","name":"Development 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='//pagead2.googlesyndication.com' /> <link rel='preconnect' href='//i0.wp.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 » Development Category Feed" href="https://tesfanews.com/business/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.2"}}; /*! 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> <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.2' 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.2' 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> <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.2' 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.2' 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.6' 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.6' 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.6' 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.6' type='text/css' media='all' /> <style id='akismet-widget-style-inline-css' type='text/css'> .a-stats { --akismet-color-mid-green: #357b49; --akismet-color-white: #fff; --akismet-color-light-grey: #f6f7f7; max-width: 350px; width: auto; } .a-stats * { all: unset; box-sizing: border-box; } .a-stats strong { font-weight: 600; } .a-stats a.a-stats__link, .a-stats a.a-stats__link:visited, .a-stats a.a-stats__link:active { background: var(--akismet-color-mid-green); border: none; box-shadow: none; border-radius: 8px; color: var(--akismet-color-white); cursor: pointer; display: block; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif; font-weight: 500; padding: 12px; text-align: center; text-decoration: none; transition: all 0.2s ease; } /* Extra specificity to deal with TwentyTwentyOne focus style */ .widget .a-stats a.a-stats__link:focus { background: var(--akismet-color-mid-green); color: var(--akismet-color-white); text-decoration: none; } .a-stats a.a-stats__link:hover { filter: brightness(110%); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.16); } .a-stats .count { color: var(--akismet-color-white); display: block; font-size: 1.5em; line-height: 1.4; padding: 0 13px; white-space: nowrap; } </style> <link rel='stylesheet' id='tablepress-default-css' href='https://tesfanews.com/wp-content/plugins/tablepress/css/build/default.css?ver=3.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=2&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=2&ver=6.7.2' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://tesfanews.com/wp-includes/css/dashicons.min.css?ver=6.7.2' 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/4" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://tesfanews.com/xmlrpc.php?rsd" /> <meta name="generator" content="Site Kit by Google 1.149.1" /><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 --> <noscript><style>.lazyload[data-src]{display:none !important;}</style></noscript><style>.lazyload{background-image:none !important;}.lazyload:before{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://tesfanews.com/wp-content/uploads/2017/08/TN-fav.png" sizes="32x32" /> <link rel="icon" href="https://tesfanews.com/wp-content/uploads/2017/08/TN-fav.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://tesfanews.com/wp-content/uploads/2017/08/TN-fav.png" /> <meta name="msapplication-TileImage" content="https://tesfanews.com/wp-content/uploads/2017/08/TN-fav.png" /> <style type="text/css" id="wp-custom-css"> ins.adsbygoogle { background: transparent !important; } </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-business category-4 custom-background wp-custom-logo metaslider-plugin group-blog hfeed right-sidebar boxed_layout archive-classic site-mode--light unselectable"> <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">Sunday, April 06, 2025</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/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAAyAQMAAADcGHRpAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABdJREFUOMtjYBgFo2AUjIJRMApGweACAAeeAAGSb/lAAAAAAElFTkSuQmCC" class="custom-logo lazyload" alt="TesfaNews" decoding="async" data-src="https://tesfanews.com/wp-content/uploads/2023/03/NP_tn_logo.png" data-eio-rwidth="300" data-eio-rheight="50" /><noscript><img width="300" height="50" src="https://tesfanews.com/wp-content/uploads/2023/03/NP_tn_logo.png" class="custom-logo" alt="TesfaNews" decoding="async" data-eio="l" /></noscript></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 current-menu-item menu-item-63219"><a href="https://tesfanews.com/business/" aria-current="page">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/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/interview/">Interviews</a></li> <li id="menu-item-63222" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63222"><a href="https://tesfanews.com/news/">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/must-read/">Opinion</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/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/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/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/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/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/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/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>Development</span></h1> </header><!-- .page-header --> <article id="post-67615" class="post-67615 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-business tag-chinese-investment-in-eritrea tag-eritrea-mining-sector tag-eritrean-government-mining-policies tag-eritrean-investment-policies tag-eritrean-mining-opportunities tag-impact-of-sanctions-on-eritrean-mining-sector tag-mining-companies-in-eritrea tag-western-sanctions-on-eritrea-mining"> <div class="np-article-thumb"> <a href="https://tesfanews.com/eritreas-resilient-mining-sector-navigating-adversity/"> <img width="1200" height="630" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAJ2AQMAAAB1jukfAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAHNJREFUeNrtwQENAAAAwqD3T20ON6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4Nc6kAAekajDwAAAAASUVORK5CYII=" class="attachment-full size-full wp-post-image lazyload" alt="Eritrea’s Resilient Mining Sector Navigating Adversity and Achieving Progress" decoding="async" fetchpriority="high" data-src="https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann.jpg" data-srcset="https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann-768x403.jpg 768w" data-sizes="auto" data-eio-rwidth="1200" data-eio-rheight="630" /><noscript><img width="1200" height="630" src="https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann.jpg" class="attachment-full size-full wp-post-image" alt="Eritrea’s Resilient Mining Sector Navigating Adversity and Achieving Progress" decoding="async" fetchpriority="high" srcset="https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/03/Bisha-Mine-Martin-Zimmermann-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" data-eio="l" /></noscript> </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/eritreas-resilient-mining-sector-navigating-adversity/" rel="bookmark">Eritrea’s Resilient Mining Sector: Navigating Adversity and Achieving Progress</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/eritreas-resilient-mining-sector-navigating-adversity/" rel="bookmark"><time class="entry-date published updated" datetime="2025-03-26T15:29:38-05:00">March 26, 2025</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/eritreas-resilient-mining-sector-navigating-adversity/#respond"><span class="dsq-postid" data-dsqidentifier="67615 https://tesfanews.com/?p=67615">Leave a Comment<span class="screen-reader-text"> on Eritrea’s Resilient Mining Sector: Navigating Adversity and Achieving Progress</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>This analysis uncovers previously undisclosed information on how the U.S. and German governments have conspired to implement increasingly hostile policies and carefully crafted pretexts with the ultimate aim of paralyzing the Eritrean economy by strategically targeting its mining industries. It also delve into how these actions have inadvertently backfired, harming their own geo-economic and geopolitical […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/eritreas-resilient-mining-sector-navigating-adversity/" 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-67615 --> <article id="post-67550" class="post-67550 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-business tag-afdb-eritrea-partnership tag-african-led-energy-solutions tag-dekemhare-solar-project tag-eritrea-energy-sector tag-eritrea-solar-project tag-hybrid-solar-eritrea"> <div class="np-article-thumb"> <a href="https://tesfanews.com/eritrea-afdb-signs-deal-hybrid-solar-backup-mini-grid-project/"> <img width="1200" height="630" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAJ2AQMAAAB1jukfAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAHNJREFUeNrtwQENAAAAwqD3T20ON6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4Nc6kAAekajDwAAAAASUVORK5CYII=" class="attachment-full size-full wp-post-image lazyload" alt="Eritrea and the African Development Bank (AfDB) have signed a $20 million agreement to finance the construction of a hybrid solar and backup mini-grid project" decoding="async" data-src="https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project.jpg" data-srcset="https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project-768x403.jpg 768w" data-sizes="auto" data-eio-rwidth="1200" data-eio-rheight="630" /><noscript><img width="1200" height="630" src="https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project.jpg" class="attachment-full size-full wp-post-image" alt="Eritrea and the African Development Bank (AfDB) have signed a $20 million agreement to finance the construction of a hybrid solar and backup mini-grid project" decoding="async" srcset="https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/03/AfDB-Eritrea-Mini-Grid-Project-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" data-eio="l" /></noscript> </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-afdb-signs-deal-hybrid-solar-backup-mini-grid-project/" rel="bookmark">Eritrea: AfDB Signs $20M Deal for Hybrid Solar and Backup Mini-Grid Project</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/eritrea-afdb-signs-deal-hybrid-solar-backup-mini-grid-project/" rel="bookmark"><time class="entry-date published" datetime="2025-03-10T13:34:45-05:00">March 10, 2025</time><time class="updated" datetime="2025-03-10T13:48:26-05:00">March 10, 2025</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-afdb-signs-deal-hybrid-solar-backup-mini-grid-project/#respond"><span class="dsq-postid" data-dsqidentifier="67550 https://tesfanews.com/?p=67550">Leave a Comment<span class="screen-reader-text"> on Eritrea: AfDB Signs $20M Deal for Hybrid Solar and Backup Mini-Grid Project</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>In a significant step toward enhancing Eritrea’s energy sector, the Government of the State of Eritrea (GOE) and the African Development Bank (AfDB) have signed a $20 million agreement to support the country’s renewable energy development. The funds will finance the construction of a hybrid solar and backup mini-grid project, aimed at improving Eritrea’s energy […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/eritrea-afdb-signs-deal-hybrid-solar-backup-mini-grid-project/" 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-67550 --> <article id="post-67462" class="post-67462 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-business tag-adal-poultry-farm tag-agri-business-eritrea tag-agricultural-enterprises-in-eritrea tag-dairy-farming-investment-eritrea tag-eritrea-poultry-business tag-eritrea-poultry-enterprise tag-eritrean-agri-business-investment tag-how-to-start-poultry-farming-in-eritrea tag-lohman-chicks tag-poultry-farming-business-eritrea"> <div class="np-article-thumb"> <a href="https://tesfanews.com/eritrea-adal-flourishing-poultry-dairy-farm/"> <img width="1200" height="630" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAJ2AQMAAAB1jukfAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAHNJREFUeNrtwQENAAAAwqD3T20ON6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4Nc6kAAekajDwAAAAASUVORK5CYII=" class="attachment-full size-full wp-post-image lazyload" alt="Discover how Adal Poultry and Animal Husbandry Enterprise is revolutionizing dairy farm practices in Eritrea. From high-quality milk production to sustainable poultry farming" decoding="async" data-src="https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea.jpg" data-srcset="https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea-768x403.jpg 768w" data-sizes="auto" data-eio-rwidth="1200" data-eio-rheight="630" /><noscript><img width="1200" height="630" src="https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea.jpg" class="attachment-full size-full wp-post-image" alt="Discover how Adal Poultry and Animal Husbandry Enterprise is revolutionizing dairy farm practices in Eritrea. From high-quality milk production to sustainable poultry farming" decoding="async" srcset="https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/02/Adal-Poultry-Farm-Eritrea-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" data-eio="l" /></noscript> </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-adal-flourishing-poultry-dairy-farm/" rel="bookmark">Eritrea: Adal ― A Flourishing Poultry and Dairy Farm</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/eritrea-adal-flourishing-poultry-dairy-farm/" rel="bookmark"><time class="entry-date published updated" datetime="2025-02-19T12:18:58-06:00">February 19, 2025</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-adal-flourishing-poultry-dairy-farm/#respond"><span class="dsq-postid" data-dsqidentifier="67462 https://tesfanews.com/?p=67462">Leave a Comment<span class="screen-reader-text"> on Eritrea: Adal ― A Flourishing Poultry and Dairy Farm</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Based in the Anseba region of Eritrea, Adal Poultry and Animal Husbandry Enterprise stands as one of the flagships in scalable agri-business, significantly contributing to the supply of eggs and milk to Asmara, Keren, and surrounding areas. Named after the iconic “Adal” mountains— which is the site where the first shot of the revolutionary struggle […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/eritrea-adal-flourishing-poultry-dairy-farm/" 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-67462 --> <article id="post-67420" class="post-67420 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-business tag-eritrea-agriculture tag-eritrea-agriculture-research tag-eritrea-crop-production tag-micro-dams-eritrea"> <div class="np-article-thumb"> <a href="https://tesfanews.com/eritrea-agriculture-ministry-major-2024-achievements/"> <img width="1200" height="631" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAJ3AQMAAAC+0jq6AAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAHNJREFUeNrtwTEBAAAAwqD1T20JT6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgadEAAAecOpQ0AAAAASUVORK5CYII=" class="attachment-full size-full wp-post-image lazyload" alt="In 2024, ample preparation and favorable rainfall resulted in a 138% increase in Eritrea's crop production." decoding="async" data-src="https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production.jpg" data-srcset="https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production-768x404.jpg 768w" data-sizes="auto" data-eio-rwidth="1200" data-eio-rheight="631" /><noscript><img width="1200" height="631" src="https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production.jpg" class="attachment-full size-full wp-post-image" alt="In 2024, ample preparation and favorable rainfall resulted in a 138% increase in Eritrea's crop production." decoding="async" srcset="https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/02/Eritrea-crop-production-768x404.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" data-eio="l" /></noscript> </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-agriculture-ministry-major-2024-achievements/" rel="bookmark">Eritrea’s Ministry of Agriculture: Key Achievements in 2024</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/eritrea-agriculture-ministry-major-2024-achievements/" rel="bookmark"><time class="entry-date published" datetime="2025-02-07T15:57:13-06:00">February 7, 2025</time><time class="updated" datetime="2025-02-07T16:01:23-06:00">February 7, 2025</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-agriculture-ministry-major-2024-achievements/#respond"><span class="dsq-postid" data-dsqidentifier="67420 https://tesfanews.com/?p=67420">Leave a Comment<span class="screen-reader-text"> on Eritrea’s Ministry of Agriculture: Key Achievements in 2024</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Ample preparation and favorable rainfall resulted in a 138% increase in Eritrea’s crop production. The Ministry of Agriculture (MoA) conducted its national annual assessment and validation meeting for the 2025 work plan from January 29–31, 2025, at Expo Hall in Asmara. The meeting was attended by H.E. Arefaine Berhe, Minister of Agriculture; Ms. Tekia Tesfamichael, President […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/eritrea-agriculture-ministry-major-2024-achievements/" 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-67420 --> <article id="post-67395" class="post-67395 post type-post status-publish format-standard has-post-thumbnail hentry category-business category-news tag-adulis-archaeological-site tag-aisc-eritrea tag-italian-development-cooperation tag-italy-eritrea-relations tag-massawa-training-centre"> <div class="np-article-thumb"> <a href="https://tesfanews.com/italian-delegation-reviews-aics-funded-projects-eritrea/"> <img width="1200" height="629" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAJ1AQMAAADzGpuxAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAHNJREFUeNrtwYEAAAAAw6D5Ux/hAlUBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwDcxIAAURJV+AAAAAASUVORK5CYII=" class="attachment-full size-full wp-post-image lazyload" alt="Italian Development Cooperation Agency (AICS) mission to Eritrea" decoding="async" data-src="https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea.jpg" data-srcset="https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea-300x157.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea-1024x537.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea-768x403.jpg 768w" data-sizes="auto" data-eio-rwidth="1200" data-eio-rheight="629" /><noscript><img width="1200" height="629" src="https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea.jpg" class="attachment-full size-full wp-post-image" alt="Italian Development Cooperation Agency (AICS) mission to Eritrea" decoding="async" srcset="https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea.jpg 1200w, https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea-300x157.jpg 300w, https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea-1024x537.jpg 1024w, https://tesfanews.com/wp-content/uploads/2025/02/AICS-mission-Eritrea-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" data-eio="l" /></noscript> </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/italian-delegation-reviews-aics-funded-projects-eritrea/" rel="bookmark">Italian Delegation Reviews AICS-Funded Projects in Eritrea</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/italian-delegation-reviews-aics-funded-projects-eritrea/" rel="bookmark"><time class="entry-date published" datetime="2025-02-05T14:15:40-06:00">February 5, 2025</time><time class="updated" datetime="2025-02-05T14:20:39-06:00">February 5, 2025</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/italian-delegation-reviews-aics-funded-projects-eritrea/#respond"><span class="dsq-postid" data-dsqidentifier="67395 https://tesfanews.com/?p=67395">Leave a Comment<span class="screen-reader-text"> on Italian Delegation Reviews AICS-Funded Projects in Eritrea</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>The mission aimed to assess the impact of Italian Cooperation’s activities in Eritrea and to evaluate the level of satisfaction among all stakeholders involved in the projects supported by AICS. In a recent development highlighting Italy’s commitment to international cooperation, a delegation led by Councilor Stefano Glinianski, head of the Independent Evaluation Body (OIV), conducted […]</p> <span class="np-archive-more"><a href="https://tesfanews.com/italian-delegation-reviews-aics-funded-projects-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-67395 --> <article id="post-67228" class="post-67228 post type-post status-publish format-standard has-post-thumbnail hentry category-business category-news tag-albeser-ophthalmologists-group tag-eye-doctors-eritrea tag-eye-surgery tag-sudanese-ophthalmologists-group"> <div class="np-article-thumb"> <a href="https://tesfanews.com/albeser-ophthalmologists-group-conducts-eye-surgery-massawa-eritrea/"> <img width="1016" height="533" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/gAAAIVAQMAAABfuMY8AAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAFlJREFUeNrtwTEBAAAAwqD1T20LL6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+BgqPAAGXdGqUAAAAAElFTkSuQmCC" class="attachment-full size-full wp-post-image lazyload" alt="Sudanese Ophthalmologists Group Albeser Conducts Eye Surgery in Massawa" decoding="async" data-src="https://tesfanews.com/wp-content/uploads/2024/12/Albeser-Ophthalmologists-group-Massawa.jpg" data-srcset="https://tesfanews.com/wp-content/uploads/2024/12/Albeser-Ophthalmologists-group-Massawa.jpg 1016w, https://tesfanews.com/wp-content/uploads/2024/12/Albeser-Ophthalmologists-group-Massawa-300x157.jpg 300w, https://tesfanews.com/wp-content/uploads/2024/12/Albeser-Ophthalmologists-group-Massawa-768x403.jpg 768w" data-sizes="auto" data-eio-rwidth="1016" data-eio-rheight="533" /><noscript><img width="1016" height="533" src="https://tesfanews.com/wp-content/uploads/2024/12/Albeser-Ophthalmologists-group-Massawa.jpg" class="attachment-full size-full wp-post-image" alt="Sudanese Ophthalmologists Group Albeser Conducts Eye Surgery in Massawa" decoding="async" srcset="https://tesfanews.com/wp-content/uploads/2024/12/Albeser-Ophthalmologists-group-Massawa.jpg 1016w, https://tesfanews.com/wp-content/uploads/2024/12/Albeser-Ophthalmologists-group-Massawa-300x157.jpg 300w, https://tesfanews.com/wp-content/uploads/2024/12/Albeser-Ophthalmologists-group-Massawa-768x403.jpg 768w" sizes="(max-width: 1016px) 100vw, 1016px" data-eio="l" /></noscript> </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/albeser-ophthalmologists-group-conducts-eye-surgery-massawa-eritrea/" rel="bookmark">Eritrea: Sudanese Ophthalmologists Group ‘Albeser’ Conducts Eye Surgery in Massawa</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/albeser-ophthalmologists-group-conducts-eye-surgery-massawa-eritrea/" rel="bookmark"><time class="entry-date published updated" datetime="2024-12-07T11:23:15-06:00">December 7, 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/albeser-ophthalmologists-group-conducts-eye-surgery-massawa-eritrea/#respond"><span class="dsq-postid" data-dsqidentifier="67228 https://tesfanews.com/?p=67228">Leave a Comment<span class="screen-reader-text"> on Eritrea: Sudanese Ophthalmologists Group ‘Albeser’ Conducts Eye Surgery in Massawa</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Seventeen members of the Albeser Ophthalmologists Group, performed eye surgery on over 470 patients in Massawa during a week-long campaign from 28 November to 5 December. In addition to the surgeries conducted, the team carried out ophthalmologic diagnoses for approximately 4,000 individuals.</p> <span class="np-archive-more"><a href="https://tesfanews.com/albeser-ophthalmologists-group-conducts-eye-surgery-massawa-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-67228 --> <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/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAJ2AQMAAAB1jukfAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAHNJREFUeNrtwQENAAAAwqD3T20ON6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4Nc6kAAekajDwAAAAASUVORK5CYII=" class="attachment-full size-full wp-post-image lazyload" alt="Italian medical professional perform Cardiac surgeries for children at the Orotta National Referral Hospital" decoding="async" data-src="https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg" data-srcset="https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg 1200w, https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea-768x403.jpg 768w" data-sizes="auto" data-eio-rwidth="1200" data-eio-rheight="630" /><noscript><img width="1200" height="630" src="https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg" class="attachment-full size-full wp-post-image" alt="Italian medical professional perform Cardiac surgeries for children at the Orotta National Referral Hospital" decoding="async" srcset="https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea.jpg 1200w, https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2024/10/Cardiac-Surgery-Eritrea-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" data-eio="l" /></noscript> </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 --> <article id="post-66969" class="post-66969 post type-post status-publish format-standard has-post-thumbnail hentry category-business category-news tag-beleza-power-plant tag-cfeco-beleza-project tag-electricity-supply-eritrea tag-eritrea-power-supply tag-hirgigo-power-plant"> <div class="np-article-thumb"> <a href="https://tesfanews.com/eritrea-phase-i-electricity-supply-expansion-project-completed/"> <img width="1200" height="630" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAJ2AQMAAAB1jukfAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAHNJREFUeNrtwQENAAAAwqD3T20ON6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4Nc6kAAekajDwAAAAASUVORK5CYII=" class="attachment-full size-full wp-post-image lazyload" alt="first phase of boosting the electricity production capacity of Eritrea's Beleza power plant, eritrea" decoding="async" data-src="https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1.jpg" data-srcset="https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1.jpg 1200w, https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1-768x403.jpg 768w" data-sizes="auto" data-eio-rwidth="1200" data-eio-rheight="630" /><noscript><img width="1200" height="630" src="https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1.jpg" class="attachment-full size-full wp-post-image" alt="first phase of boosting the electricity production capacity of Eritrea's Beleza power plant, eritrea" decoding="async" srcset="https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1.jpg 1200w, https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1-300x158.jpg 300w, https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1-1024x538.jpg 1024w, https://tesfanews.com/wp-content/uploads/2024/10/Beleza-Power-Plant-1-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" data-eio="l" /></noscript> </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-phase-i-electricity-supply-expansion-project-completed/" rel="bookmark">Eritrea: Phase-I Electricity Supply Expansion Project Completed</a></h2> <div class="entry-meta"> <span class="posted-on"><a href="https://tesfanews.com/eritrea-phase-i-electricity-supply-expansion-project-completed/" rel="bookmark"><time class="entry-date published updated" datetime="2024-10-01T11:27:47-05:00">October 1, 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-phase-i-electricity-supply-expansion-project-completed/#respond"><span class="dsq-postid" data-dsqidentifier="66969 https://tesfanews.com/?p=66969">Leave a Comment<span class="screen-reader-text"> on Eritrea: Phase-I Electricity Supply Expansion Project Completed</span></span></a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>The first phase of boosting the electricity production capacity of the Beleza power plant by installing three new generators, with a combined capacity of 22 megawatts of electricity, has been successfully integrated into the national grid and began providing service starting from September 29.</p> <span class="np-archive-more"><a href="https://tesfanews.com/eritrea-phase-i-electricity-supply-expansion-project-completed/" 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-66969 --> <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/business/page/2/" >Older posts</a></div></div> </nav> </main><!-- #main --> </div><!-- #primary --> <aside id="secondary" class="widget-area" role="complementary"> <section id="recent-posts-3" class="widget widget_recent_entries"> <h4 class="widget-title">Recent Posts</h4> <ul> <li> <a href="https://tesfanews.com/ethiopia-which-way-to-the-sea-please/">Ethiopia: Which Way to the Sea, Please?</a> </li> <li> <a href="https://tesfanews.com/germany-labels-brigade-nhamedu-a-terrorist-organization/">Germany Labels Brigade N’Hamedu a Terrorist Organization</a> </li> <li> <a href="https://tesfanews.com/eritreas-resilient-mining-sector-navigating-adversity/">Eritrea’s Resilient Mining Sector: Navigating Adversity and Achieving Progress</a> </li> <li> <a href="https://tesfanews.com/oman-eritrea-to-strengthen-bilateral-ties/">Oman, Eritrea To Strengthen Bilateral Ties</a> </li> <li> <a href="https://tesfanews.com/tn-weekend-news-digest-7/">The TN Weekend News Digest #7</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-97-0 ml-slider-pro-2-45-0 metaslider metaslider-nivo metaslider-64412 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Isaias-Putin_meet" data-width="1200"> <div id="metaslider_container_64412"> <div class='slider-wrapper theme-default'><div class='ribbon'></div><div id='metaslider_64412' class='nivoSlider'><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_6" alt="" class="slider-64412 slide-64423 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_6-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_6-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_6" alt="" class="slider-64412 slide-64423" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_2" alt="" class="slider-64412 slide-64426 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_2-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_2-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_2" alt="" class="slider-64412 slide-64426" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_11" alt="" class="slider-64412 slide-64438 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_11-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_11-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_11" alt="" class="slider-64412 slide-64438" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_5" alt="" class="slider-64412 slide-64424 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_5-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_5-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_5" alt="" class="slider-64412 slide-64424" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_9" alt="" class="slider-64412 slide-64436 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_9-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_9-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_9" alt="" class="slider-64412 slide-64436" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_4" alt="" class="slider-64412 slide-64425 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_4-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_4-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_4" alt="" class="slider-64412 slide-64425" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_7" alt="" class="slider-64412 slide-64422 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_7-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_7-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_7" alt="" class="slider-64412 slide-64422" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_8" alt="" class="slider-64412 slide-64421 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_8-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_8-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_8" alt="" class="slider-64412 slide-64421" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_1" alt="" class="slider-64412 slide-64427 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_1-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_1-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_1" alt="" class="slider-64412 slide-64427" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA/0AAAJ2AQMAAAA38XCMAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGVJREFUeNrtwQEBAAAAgiD/r25IQAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC7AT2FAAEfFYoYAAAAAElFTkSuQmCC" height="740" width="1200" title="Isaias_Putin_10" alt="" class="slider-64412 slide-64435 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_10-1021x630.jpg" decoding="async" data-eio-rwidth="1021" data-eio-rheight="630" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Putin_10-1021x630.jpg" height="740" width="1200" title="Isaias_Putin_10" alt="" class="slider-64412 slide-64435" data-eio="l" /></noscript></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-97-0 ml-slider-pro-2-45-0 metaslider metaslider-nivo metaslider-64178 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Isaias Afwerki China Visit - Xi" data-width="850"> <div id="metaslider_container_64178"> <div class='slider-wrapper theme-default'><div class='ribbon'></div><div id='metaslider_64178' class='nivoSlider'><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-9" alt="" class="slider-64178 slide-64199 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-9.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-9.jpg" height="487" width="850" title="Isaias Xi Jinping-9" alt="" class="slider-64178 slide-64199" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-10" alt="" class="slider-64178 slide-64201 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-10.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-10.jpg" height="487" width="850" title="Isaias Xi Jinping-10" alt="" class="slider-64178 slide-64201" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias_Xi_12" alt="" class="slider-64178 slide-64220 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi_12.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi_12.jpg" height="487" width="850" title="Isaias_Xi_12" alt="" class="slider-64178 slide-64220" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-8" alt="" class="slider-64178 slide-64197 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-8.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-8.jpg" height="487" width="850" title="Isaias Xi Jinping-8" alt="" class="slider-64178 slide-64197" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-3" alt="" class="slider-64178 slide-64188 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-3.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-3.jpg" height="487" width="850" title="Isaias Xi Jinping-3" alt="" class="slider-64178 slide-64188" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-4" alt="" class="slider-64178 slide-64187 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-4.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-4.jpg" height="487" width="850" title="Isaias Xi Jinping-4" alt="" class="slider-64178 slide-64187" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-2" alt="" class="slider-64178 slide-64189 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-2.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-2.jpg" height="487" width="850" title="Isaias Xi Jinping-2" alt="" class="slider-64178 slide-64189" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-6" alt="" class="slider-64178 slide-64185 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-6.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-6.jpg" height="487" width="850" title="Isaias Xi Jinping-6" alt="" class="slider-64178 slide-64185" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-5" alt="" class="slider-64178 slide-64186 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-5.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-5.jpg" height="487" width="850" title="Isaias Xi Jinping-5" alt="" class="slider-64178 slide-64186" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-1" alt="" class="slider-64178 slide-64190 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-1.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-1.jpg" height="487" width="850" title="Isaias Xi Jinping-1" alt="" class="slider-64178 slide-64190" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias_Xi-14" alt="" class="slider-64178 slide-64226 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi-14.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi-14.jpg" height="487" width="850" title="Isaias_Xi-14" alt="" class="slider-64178 slide-64226" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias_Xi-15" alt="" class="slider-64178 slide-64228 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi-15.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi-15.jpg" height="487" width="850" title="Isaias_Xi-15" alt="" class="slider-64178 slide-64228" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias_Xi_13" alt="" class="slider-64178 slide-64222 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi_13.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias_Xi_13.jpg" height="487" width="850" title="Isaias_Xi_13" alt="" class="slider-64178 slide-64222" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="PIA_Qiang-7" alt="" class="slider-64178 slide-64191 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/PIA_Qiang-7.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/PIA_Qiang-7.jpg" height="487" width="850" title="PIA_Qiang-7" alt="" class="slider-64178 slide-64191" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" 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 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/PIA_Qiang-8.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/PIA_Qiang-8.jpg" height="487" width="850" 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" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Xi_Isaias_16" alt="" class="slider-64178 slide-64249 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Xi_Isaias_16.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Xi_Isaias_16.jpg" height="487" width="850" title="Xi_Isaias_16" alt="" class="slider-64178 slide-64249" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA1IAAAHnAQMAAACIcP6rAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAElJREFUeNrtwQENAAAAwqD3T20PBxQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBszXQAAf2YyEQAAAAASUVORK5CYII=" height="487" width="850" title="Isaias Xi Jinping-7" alt="" class="slider-64178 slide-64195 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-7.jpg" decoding="async" data-eio-rwidth="850" data-eio-rheight="487" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/05/Isaias-Xi-Jinping-7.jpg" height="487" width="850" title="Isaias Xi Jinping-7" alt="" class="slider-64178 slide-64195" data-eio="l" /></noscript></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-97-0 ml-slider-pro-2-45-0 metaslider metaslider-nivo metaslider-65621 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Saudi-Africa Summit" data-width="1000"> <div id="metaslider_container_65621"> <div class='slider-wrapper theme-default'><div class='ribbon'></div><div id='metaslider_65621' class='nivoSlider'><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_6" alt="" class="slider-65621 slide-65637 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_6.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_6.jpg" height="600" width="1000" title="Saudi-Africa_Summit_6" alt="" class="slider-65621 slide-65637" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_3" alt="" class="slider-65621 slide-65625 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_3.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_3.jpg" height="600" width="1000" title="Saudi-Africa_Summit_3" alt="" class="slider-65621 slide-65625" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit-1" alt="" class="slider-65621 slide-65627 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit-1.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit-1.jpg" height="600" width="1000" title="Saudi-Africa_Summit-1" alt="" class="slider-65621 slide-65627" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_5" alt="" class="slider-65621 slide-65638 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_5.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_5.jpg" height="600" width="1000" title="Saudi-Africa_Summit_5" alt="" class="slider-65621 slide-65638" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_7" alt="" class="slider-65621 slide-65636 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_7.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_7.jpg" height="600" width="1000" title="Saudi-Africa_Summit_7" alt="" class="slider-65621 slide-65636" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_2" alt="" class="slider-65621 slide-65626 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_2.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_2.jpg" height="600" width="1000" title="Saudi-Africa_Summit_2" alt="" class="slider-65621 slide-65626" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_8" alt="" class="slider-65621 slide-65635 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_8.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_8.jpg" height="600" width="1000" title="Saudi-Africa_Summit_8" alt="" class="slider-65621 slide-65635" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_9" alt="" class="slider-65621 slide-65644 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_9.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_9.jpg" height="600" width="1000" title="Saudi-Africa_Summit_9" alt="" class="slider-65621 slide-65644" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_10" alt="" class="slider-65621 slide-65646 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_10.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_10.jpg" height="600" width="1000" title="Saudi-Africa_Summit_10" alt="" class="slider-65621 slide-65646" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Saudi-Africa_Summit_11" alt="" class="slider-65621 slide-65648 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_11.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Saudi-Africa_Summit_11.jpg" height="600" width="1000" title="Saudi-Africa_Summit_11" alt="" class="slider-65621 slide-65648" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Somalia_Eritrea_leaders_Riyadh" alt="" class="slider-65621 slide-65659 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Somalia_Eritrea_leaders_Riyadh.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Somalia_Eritrea_leaders_Riyadh.jpg" height="600" width="1000" title="Somalia_Eritrea_leaders_Riyadh" alt="" class="slider-65621 slide-65659" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Eritrea_Burduni_leaders_Riyadh" alt="" class="slider-65621 slide-65661 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Burduni_leaders_Riyadh.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Burduni_leaders_Riyadh.jpg" height="600" width="1000" title="Eritrea_Burduni_leaders_Riyadh" alt="" class="slider-65621 slide-65661" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Eritrea_Mali_Riyadh" alt="" class="slider-65621 slide-65663 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Mali_Riyadh.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Mali_Riyadh.jpg" height="600" width="1000" title="Eritrea_Mali_Riyadh" alt="" class="slider-65621 slide-65663" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Eritrea_Burkina_Faso_leaders_Riyadh" alt="" class="slider-65621 slide-65665 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Burkina_Faso_leaders_Riyadh.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Burkina_Faso_leaders_Riyadh.jpg" height="600" width="1000" title="Eritrea_Burkina_Faso_leaders_Riyadh" alt="" class="slider-65621 slide-65665" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Eritrea_Gabon_leaders_Riyadh" alt="" class="slider-65621 slide-65667 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Gabon_leaders_Riyadh.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Gabon_leaders_Riyadh.jpg" height="600" width="1000" title="Eritrea_Gabon_leaders_Riyadh" alt="" class="slider-65621 slide-65667" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Eritrea_South_Sudan_Riyadh" alt="" class="slider-65621 slide-65669 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_South_Sudan_Riyadh.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_South_Sudan_Riyadh.jpg" height="600" width="1000" title="Eritrea_South_Sudan_Riyadh" alt="" class="slider-65621 slide-65669" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Eritrea_Sudan_Riyadh" alt="" class="slider-65621 slide-65671 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Sudan_Riyadh.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Sudan_Riyadh.jpg" height="600" width="1000" title="Eritrea_Sudan_Riyadh" alt="" class="slider-65621 slide-65671" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Eritrea_Egypt_Riyadh_meeting" alt="" class="slider-65621 slide-65699 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Egypt_Riyadh_meeting.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Egypt_Riyadh_meeting.jpg" height="600" width="1000" title="Eritrea_Egypt_Riyadh_meeting" alt="" class="slider-65621 slide-65699" data-eio="l" /></noscript><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAJYAQMAAADL0F5mAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF9JREFUeNrtwQENAAAAwqD3T+3sARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANydfAAFYF3K5AAAAAElFTkSuQmCC" height="600" width="1000" title="Eritrea_Saudi_leaders_meeting-1" alt="Saudi Eritrea Leaders meeting in Riyadh" class="slider-65621 slide-65700 lazyload" data-src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Saudi_leaders_meeting-1-1000x600.jpg" decoding="async" data-eio-rwidth="1000" data-eio-rheight="600" /><noscript><img src="https://tesfanews.com/wp-content/uploads/2023/11/Eritrea_Saudi_leaders_meeting-1-1000x600.jpg" height="600" width="1000" title="Eritrea_Saudi_leaders_meeting-1" alt="Saudi Eritrea Leaders meeting in Riyadh" class="slider-65621 slide-65700" data-eio="l" /></noscript></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"> © 2010-2025 </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> <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.97.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.97.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.metaslider-plugin: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, .hide-slideshow-smartphone, .metaslider-hidden-content.hide-smartphone{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body.metaslider-plugin: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, .hide-slideshow-tablet, .metaslider-hidden-content.hide-tablet{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body.metaslider-plugin: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, .hide-slideshow-laptop, .metaslider-hidden-content.hide-laptop{ display: none!important; }}@media only screen and (min-width : 1440px) {body.metaslider-plugin: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, .hide-slideshow-desktop, .metaslider-hidden-content.hide-desktop{ display: none!important; }} @media only screen and (max-width: 767px) {body.metaslider-plugin: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, .hide-slideshow-smartphone, .metaslider-hidden-content.hide-smartphone{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body.metaslider-plugin: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, .hide-slideshow-tablet, .metaslider-hidden-content.hide-tablet{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body.metaslider-plugin: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, .hide-slideshow-laptop, .metaslider-hidden-content.hide-laptop{ display: none!important; }}@media only screen and (min-width : 1440px) {body.metaslider-plugin: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, .hide-slideshow-desktop, .metaslider-hidden-content.hide-desktop{ display: none!important; }} @media only screen and (max-width: 767px) {body.metaslider-plugin: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, .hide-slideshow-smartphone, .metaslider-hidden-content.hide-smartphone{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body.metaslider-plugin: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, .hide-slideshow-tablet, .metaslider-hidden-content.hide-tablet{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body.metaslider-plugin: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, .hide-slideshow-laptop, .metaslider-hidden-content.hide-laptop{ display: none!important; }}@media only screen and (min-width : 1440px) {body.metaslider-plugin: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, .hide-slideshow-desktop, .metaslider-hidden-content.hide-desktop{ 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.45.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.97.0' type='text/css' media='all' property='stylesheet' /> <script type="text/javascript" id="eio-lazy-load-js-before"> /* <![CDATA[ */ var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"threshold":0,"use_dpr":1}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/ewww-image-optimizer/includes/lazysizes.min.js?ver=813" id="eio-lazy-load-js" async="async" data-wp-strategy="async"></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":"d812962dde"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/embedpress/assets/js/front.js?ver=4.2.2" 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":"b0af48d0f1"}; /* ]]> */ </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.6" 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.6" 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.6" 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\/business\/"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=6.7.2" id="wccp_pro_admin_bar_ajax-js"></script> <script type="text/javascript" id="jetpack-stats-js-before"> /* <![CDATA[ */ _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"217015860\",\"post\":\"0\",\"tz\":\"-5\",\"srv\":\"tesfanews.com\",\"j\":\"1:14.4.1\"}") ]); _stq.push([ "clickTrackerInit", "217015860", "0" ]); /* ]]> */ </script> <script type="text/javascript" src="https://stats.wp.com/e-202514.js" id="jetpack-stats-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/ml-slider/assets/sliders/nivoslider/jquery.nivo.slider.pack.js?ver=3.97.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.97.0" id="metaslider-script-js"></script> </body> </html><!-- This website is optimized by Airlift. Learn more: https://airlift.net. Template:. Learn more: https://airlift.net., Cached Timestamp: 2025-04-06 09:41:52 UTC -->