CINXE.COM
Donate
<!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_selection"> var image_save_msg = 'You are not allowed to save images!'; var no_menu_msg = 'Context menu disabled!'; var smessage = ""; "use strict"; /* This because search property "includes" does not supported by IE*/ if (!String.prototype.includes) { String.prototype.includes = function(search, start) { if (typeof start !== 'number') { start = 0; } if (start + search.length > this.length) { return false; } else { return this.indexOf(search, start) !== -1; } }; } /*////////////////////////////////////*/ let canCall = true; function call_disable_copy_WithDelay(e) { if (canCall) { canCall = false; disable_copy(e); setTimeout(() => { canCall = true; }, 1000); } } function disable_copy(e) { window.wccp_pro_iscontenteditable_flag = false; wccp_pro_log_to_console_if_allowed("function", "disable_copy"); 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 elemtype = e.target.nodeName; elemtype = elemtype.toUpperCase(); if (apply_class_exclusion(e) == "Yes") return true; if(wccp_pro_iscontenteditable(e) == true) {return true;} if(is_content_editable_element(current_clicked_element) == true) { return true; } else { if (smessage !== "" && e.detail == 2) show_wccp_pro_message(smessage); if (isSafari) { return true; } else { //wccp_pro_clear_any_selection(); return false; } } /*disable context menu when shift + right click is pressed*/ var shiftPressed = 0; var evt = e?e:window.event; if (parseInt(navigator.appVersion)>3) { if (document.layers && navigator.appName=="Netscape") shiftPressed = (e.modifiers-0>3); else shiftPressed = e.shiftKey; if (shiftPressed) { if (smessage !== "") show_wccp_pro_message(smessage); var isFirefox = typeof InstallTrigger !== 'undefined'; /* Firefox 1.0+ */ if (isFirefox) { evt.cancelBubble = true; if (evt.stopPropagation) evt.stopPropagation(); if (evt.preventDefault()) evt.preventDefault(); show_wccp_pro_message (smessage); wccp_pro_clear_any_selection(); return false; } wccp_pro_clear_any_selection(); return false; } } if(e.which === 2 ){ var clickedTag_a = (e==null) ? event.srcElement.tagName : e.target.tagName; show_wccp_pro_message(smessage); wccp_pro_clear_any_selection(); return false; } var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor); var checker_IMG = 'checked'; if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail == 2) {show_wccp_pro_message(alertMsg_IMG);wccp_pro_clear_any_selection();return false;} //elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys if (is_content_editable_element(elemtype) == false) { if (smessage !== "" && e.detail == 2) show_wccp_pro_message(smessage); if (isSafari) { return true; } else { wccp_pro_clear_any_selection(); return false; } } else { return true; } } //////////////////////////// function disable_copy_ie() { wccp_pro_log_to_console_if_allowed("function", "disable_copy_ie_function_started"); 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 elemtype = window.event.srcElement.nodeName; elemtype = elemtype.toUpperCase(); if(wccp_pro_iscontenteditable(e) == true) return true; if (apply_class_exclusion(e) == "Yes") return true; if (elemtype == "IMG") {show_wccp_pro_message(alertMsg_IMG);return false;} //elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys if (is_content_editable_element(elemtype) == false) { return false; } } function disable_drag_text(e) { wccp_pro_log_to_console_if_allowed("function", "disable_drag_text"); /*var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);*/ /*if (isSafari) {show_wccp_pro_message(alertMsg_IMG);return false;}*/ 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; elemtype = elemtype.toUpperCase(); var disable_drag_text_drop = 'checked'; if (disable_drag_text_drop != "checked") return true; if (window.location.href.indexOf("/user/") > -1) { return true; /*To allow users to drag & drop images when editing thier profiles*/ } return false; } /*/////////////////special for safari Start////////////////*/ var onlongtouch; var timer; var touchduration = 1000; /*length of time we want the user to touch before we do something*/ var elemtype = ""; function touchstart(e) { wccp_pro_log_to_console_if_allowed("function", "touchstart"); 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; elemtype = window.event.srcElement.nodeName; elemtype = elemtype.toUpperCase(); if(!wccp_pro_is_passive()) e.preventDefault(); if (!timer) { timer = setTimeout(onlongtouch, touchduration); } } function touchend() { wccp_pro_log_to_console_if_allowed("function", "touchend"); /*stops short touches from firing the event*/ if (timer) { clearTimeout(timer); timer = null; } onlongtouch(); } onlongtouch = function(e)/*this will clear the current selection if any_not_editable_thing selected*/ { wccp_pro_log_to_console_if_allowed("function", "onlongtouch"); if (is_content_editable_element(elemtype) == false) { 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?*/ var textRange = document.body.createTextRange(); textRange.moveToElementText(element); textRange.select(); document.selection.empty(); } return false; } }; document.addEventListener("DOMContentLoaded", function(event) { window.addEventListener("touchstart", touchstart, false); window.addEventListener("touchend", touchend, false); }); function wccp_pro_is_passive() { wccp_pro_log_to_console_if_allowed("function", "wccp_pro_is_passive"); var cold = false, hike = function() {}; try { var aid = Object.defineProperty({}, 'passive', { get() {cold = true} }); window.addEventListener('test', hike, aid); window.removeEventListener('test', hike, aid); } catch (e) {} return cold; } /*/////////////////////////////////////////////////////////////////*/ function reEnable() { return true; } if(navigator.userAgent.indexOf('MSIE')==-1) //If not IE { document.ondragstart = disable_drag_text; document.onselectstart = call_disable_copy_WithDelay; document.onselectionchange = call_disable_copy_WithDelay; //document.onmousedown = disable_copy; //document.addEventListener('click', disable_copy, false); //document.addEventListener('click', set_current_clicked_element, false); document.addEventListener('mousedown', set_current_clicked_element, false); //document.onclick = reEnable; }else { document.onselectstart = disable_copy_ie; } var current_clicked_element = ""; var current_clicked_object = null; function set_current_clicked_element(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 elemtype = e.target.nodeName; elemtype = elemtype.toUpperCase(); current_clicked_element = elemtype; console.log("current_clicked_element = " + current_clicked_element); } </script> <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>Donate</title> <meta name="description" content="Dear visitors,"/> <meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://tesfanews.com/donate/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Donate" /> <meta property="og:description" content="Dear visitors," /> <meta property="og:url" content="https://tesfanews.com/donate/" /> <meta property="og:site_name" content="TesfaNews" /> <meta property="og:updated_time" content="2023-12-18T11:17:39-06:00" /> <meta property="article:published_time" content="2011-05-12T14:38:58-05:00" /> <meta property="article:modified_time" content="2023-12-18T11:17:39-06:00" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Donate" /> <meta name="twitter:description" content="Dear visitors," /> <meta name="twitter:site" content="@tesfanews" /> <meta name="twitter:creator" content="@tesfanews" /> <meta name="twitter:label1" content="Time to read" /> <meta name="twitter:data1" content="Less than a minute" /> <script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":["Person","Organization"],"@id":"https://tesfanews.com/#person","name":"TesfaNews","sameAs":["https://twitter.com/tesfanews"],"logo":{"@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"},"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":"ImageObject","@id":"https://www.paypal.com/en_US/i/scr/pixel.gif","url":"https://www.paypal.com/en_US/i/scr/pixel.gif","width":"200","height":"200","inLanguage":"en-US"},{"@type":"WebPage","@id":"https://tesfanews.com/donate/#webpage","url":"https://tesfanews.com/donate/","name":"Donate","datePublished":"2011-05-12T14:38:58-05:00","dateModified":"2023-12-18T11:17:39-06:00","isPartOf":{"@id":"https://tesfanews.com/#website"},"primaryImageOfPage":{"@id":"https://www.paypal.com/en_US/i/scr/pixel.gif"},"inLanguage":"en-US"},{"@type":"Person","@id":"https://tesfanews.com/donate/#author","name":"TesfaNews","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/6591197c0df254ecde52fd0655ece21a?s=96&d=wavatar&r=g","url":"https://secure.gravatar.com/avatar/6591197c0df254ecde52fd0655ece21a?s=96&d=wavatar&r=g","caption":"TesfaNews","inLanguage":"en-US"},"sameAs":["https://tesfanews.com"]},{"@type":"Article","headline":"Donate","keywords":"Support TesfaNews","datePublished":"2011-05-12T14:38:58-05:00","dateModified":"2023-12-18T11:17:39-06:00","author":{"@id":"https://tesfanews.com/donate/#author","name":"TesfaNews"},"publisher":{"@id":"https://tesfanews.com/#person"},"description":"Dear visitors,","name":"Donate","@id":"https://tesfanews.com/donate/#richSnippet","isPartOf":{"@id":"https://tesfanews.com/donate/#webpage"},"image":{"@id":"https://www.paypal.com/en_US/i/scr/pixel.gif"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://tesfanews.com/donate/#webpage"}}]}</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 » Donate Comments Feed" href="https://tesfanews.com/donate/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.5' 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.5' 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.5' 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.5' 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.0.4' 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", {"googlesitekit_post_type":"page"}); /* ]]> */ </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/pages/2087" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://tesfanews.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel='shortlink' href='https://wp.me/PeGzJO-xF' /> <meta name="generator" content="Site Kit by Google 1.147.0" /><style type="text/css"> .wpsdc-drop-cap { float : left; padding : 0.25em 0.05em 0.25em 0; font-size : 5em; line-height : 0.4em;color : #dd9933;} </style> <style>img#wpstats{display:none}</style> <!-- Google AdSense meta tags added by Site Kit --> <meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"> <meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"> <!-- End Google AdSense meta tags added by Site Kit --> <meta name="generator" content="Elementor 3.27.6; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <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="page-template-default page page-id-2087 custom-background wp-custom-logo group-blog right-sidebar boxed_layout site-mode--light unselectable elementor-default elementor-kit-63171"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <div class="np-top-header-wrap"><div class="mt-container"> <div class="np-top-left-section-wrapper"> <div class="date-section">Saturday, March 01, 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 current-menu-item page_item page-item-2087 current_page_item menu-item-63212"><a href="https://tesfanews.com/donate/" aria-current="page">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 menu-item-63219"><a href="https://tesfanews.com/business/">Development</a></li> <li id="menu-item-63220" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-63220"><a href="https://tesfanews.com/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-single-content-wrapper"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <article id="post-2087" class="post-2087 page type-page status-publish hentry"> <header class="entry-header"> <h1 class="entry-title">Donate</h1> </header><!-- .entry-header --> <div class="entry-content"> <p>Dear visitors,</p> <p>I trust that the news items shared on this blog have proven to be both informative and valuable to you. As an independent news blog, my ability to deliver quality information relies on the support of readers like you, enabling me to report on issues that hold significance for Eritreans and alike.</p> <p>If you find value in the work I do and would like to contribute, please consider donating to support the continuation of my service.</p> <p>Any amount you can contribute will be sincerely appreciated and will significantly contribute to sustaining my efforts in bringing you the news and information necessary to stay well-informed.</p> <p>Thank you for your generous support!</p> <form action="https://www.paypal.com/donate" method="post" target="_top"><input name="hosted_button_id" type="hidden" value="SEFNKMWKHQ2MG" /><br /> <input title="PayPal - The safer, easier way to pay online!" alt="Donate with PayPal button" name="submit" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" type="image" /><br /> <img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="" width="1" height="1" border="0" data-src="https://www.paypal.com/en_US/i/scr/pixel.gif" class="lazyload" data-eio-rwidth="1" data-eio-rheight="1" /><noscript><img decoding="async" src="https://www.paypal.com/en_US/i/scr/pixel.gif" alt="" width="1" height="1" border="0" data-eio="l" /></noscript></form> </div><!-- .entry-content --> </article><!-- #post-2087 --> <div id="disqus_thread"></div> </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/egypts-fm-delivers-sisis-message-to-eritrean-president/">Egypt’s FM Delivers Sisi’s Message to Eritrean President</a> </li> <li> <a href="https://tesfanews.com/ethiopia-disavows-mulatu-teshome-remarks-on-eritrea/">Ethiopia Disavows Ex-President’s Statements on Eritrea</a> </li> <li> <a href="https://tesfanews.com/ethiopia-abuy-ahmed-greeted-with-mortar-fire-somalia/">Ethiopia’s Leader Greeted With Mortar Fire in Somalia Visit</a> </li> <li> <a href="https://tesfanews.com/usaid-freeze-leaves-aid-addicted-ethiopia-in-crisis/">USAID Freeze Leaves Aid Addicted Ethiopia in Crisis</a> </li> <li> <a href="https://tesfanews.com/eritrea-adal-flourishing-poultry-dairy-farm/">Eritrea: Adal ― A Flourishing Poultry and Dairy Farm</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-single-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-96-0 ml-slider-pro-2-44-0 metaslider metaslider-nivo metaslider-64412 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Isaias-Putin_meet"> <div id="metaslider_container_64412"> <div class='slider-wrapper theme-default'><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-96-0 ml-slider-pro-2-44-0 metaslider metaslider-nivo metaslider-64178 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Isaias Afwerki China Visit - Xi"> <div id="metaslider_container_64178"> <div class='slider-wrapper theme-default'><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-96-0 ml-slider-pro-2-44-0 metaslider metaslider-nivo metaslider-65621 ml-slider ms-theme-default" role="region" aria-roledescription="Slideshow" aria-label="Saudi-Africa Summit"> <div id="metaslider_container_65621"> <div class='slider-wrapper theme-default'><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"> </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 current-menu-item page_item page-item-2087 current_page_item menu-item-63212"><a href="https://tesfanews.com/donate/" aria-current="page">Donate</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-63741"><a href="https://tesfanews.com/about-us/">About TN</a></li> </ul></div> </nav><!-- #site-navigation --> </div><!-- .mt-container --></div> <!-- bottom-footer --></footer><!-- #colophon --><div id="np-scrollup" class="animated arrow-hide"><i class="fa fa-chevron-up"></i></div></div><!-- #page --> <script id="wccp_pro_alert_message"> window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign window.addEventListener('load', function (){ // Create the first div element with the "oncontextmenu" attribute const wccp_pro_mask = document.createElement('div'); wccp_pro_mask.setAttribute('oncontextmenu', 'return false;'); wccp_pro_mask.setAttribute('id', 'wccp_pro_mask'); // Create the second div element with the "msgmsg-box-wpcp hideme" classes const wpcp_error_message = document.createElement('div'); wpcp_error_message.setAttribute('id', 'wpcp-error-message'); wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme'); // Add a span element with the "error: " text inside the second div const error_span = document.createElement('span'); error_span.innerText = 'error: '; wpcp_error_message.appendChild(error_span); // Add the error message text inside the second div const error_text = document.createTextNode(''); wpcp_error_message.appendChild(error_text); // Add the div elements to the document body document.body.appendChild(wccp_pro_mask); document.body.appendChild(wpcp_error_message); }); var timeout_result; function show_wccp_pro_message(smessage="", style="") { wccp_pro_log_to_console_if_allowed("function", "show_wccp_pro_message" + smessage); timeout = 2000; if(style == "") style = "warning-wpcp"; if (smessage !== "" && timeout!=0) { var smessage_text = smessage; jquery_fadeTo(); document.getElementById("wpcp-error-message").innerHTML = smessage_text; document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style; clearTimeout(timeout_result); timeout_result = setTimeout(hide_message, timeout); } else { clearTimeout(timeout_result); timeout_result = setTimeout(hide_message, timeout); } } function hide_message() { jquery_fadeOut(); document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme"; } function jquery_fadeTo() { try { jQuery("#wccp_pro_mask").fadeTo("slow", 0.3); } catch(err) { //alert(err.message); } } function jquery_fadeOut() { try { jQuery("#wccp_pro_mask").fadeOut( "slow" ); } catch(err) {} } </script> <style> #wccp_pro_mask { position: absolute; bottom: 0; left: 0; position: fixed; right: 0; top: 0; background-color: #000; pointer-events: none; display: none; z-index: 10000; animation: 0.5s ease 0s normal none 1 running ngdialog-fadein; background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0; } #wpcp-error-message { direction: ltr; text-align: center; transition: opacity 900ms ease 0s; pointer-events: none; z-index: 99999999; } .hideme { opacity:0; visibility: hidden; } .showme { opacity:1; visibility: visible; } .msgmsg-box-wpcp { border-radius: 10px; color: #555555; font-family: Tahoma; font-size: 12px; margin: 10px; padding: 10px 36px; position: fixed; width: 255px; top: 50%; left: 50%; margin-top: -10px; margin-left: -130px; } .msgmsg-box-wpcp b { font-weight:bold; text-transform:uppercase; } .warning-wpcp { background:#ffecec url('https://tesfanews.com/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%; border:1px solid #f2bfbf; -webkit-box-shadow: 0px 0px 34px 2px #f2bfbf; -moz-box-shadow: 0px 0px 34px 2px #f2bfbf; box-shadow: 0px 0px 34px 2px #f2bfbf; } .success-wpcp { background: #fafafa url('https://tesfanews.com/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%; border: 1px solid #00b38f; box-shadow: 0px 0px 34px 2px #adc; } </style> <script> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='metaslider-nivo-slider-css' href='https://tesfanews.com/wp-content/plugins/ml-slider/assets/sliders/nivoslider/nivo-slider.css?ver=3.96.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.96.0' type='text/css' media='all' property='stylesheet' /> <style id='metaslider-public-inline-css' type='text/css'> @media only screen and (max-width: 767px) {body:after { display: none; content: "smartphone"; } .hide-arrows-smartphone .flex-direction-nav, .hide-navigation-smartphone .flex-control-paging, .hide-navigation-smartphone .flex-control-nav, .hide-navigation-smartphone .filmstrip{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body:after { display: none; content: "tablet"; } .hide-arrows-tablet .flex-direction-nav, .hide-navigation-tablet .flex-control-paging, .hide-navigation-tablet .flex-control-nav, .hide-navigation-tablet .filmstrip{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body:after { display: none; content: "laptop"; } .hide-arrows-laptop .flex-direction-nav, .hide-navigation-laptop .flex-control-paging, .hide-navigation-laptop .flex-control-nav, .hide-navigation-laptop .filmstrip{ display: none!important; }}@media only screen and (min-width : 1440px) {body:after { display: none; content: "desktop"; } .hide-arrows-desktop .flex-direction-nav, .hide-navigation-desktop .flex-control-paging, .hide-navigation-desktop .flex-control-nav, .hide-navigation-desktop .filmstrip{ display: none!important; }} @media only screen and (max-width: 767px) {body:after { display: none; content: "smartphone"; } .hide-arrows-smartphone .flex-direction-nav, .hide-navigation-smartphone .flex-control-paging, .hide-navigation-smartphone .flex-control-nav, .hide-navigation-smartphone .filmstrip{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body:after { display: none; content: "tablet"; } .hide-arrows-tablet .flex-direction-nav, .hide-navigation-tablet .flex-control-paging, .hide-navigation-tablet .flex-control-nav, .hide-navigation-tablet .filmstrip{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body:after { display: none; content: "laptop"; } .hide-arrows-laptop .flex-direction-nav, .hide-navigation-laptop .flex-control-paging, .hide-navigation-laptop .flex-control-nav, .hide-navigation-laptop .filmstrip{ display: none!important; }}@media only screen and (min-width : 1440px) {body:after { display: none; content: "desktop"; } .hide-arrows-desktop .flex-direction-nav, .hide-navigation-desktop .flex-control-paging, .hide-navigation-desktop .flex-control-nav, .hide-navigation-desktop .filmstrip{ display: none!important; }} @media only screen and (max-width: 767px) {body:after { display: none; content: "smartphone"; } .hide-arrows-smartphone .flex-direction-nav, .hide-navigation-smartphone .flex-control-paging, .hide-navigation-smartphone .flex-control-nav, .hide-navigation-smartphone .filmstrip{ display: none!important; }}@media only screen and (min-width : 768px) and (max-width: 1023px) {body:after { display: none; content: "tablet"; } .hide-arrows-tablet .flex-direction-nav, .hide-navigation-tablet .flex-control-paging, .hide-navigation-tablet .flex-control-nav, .hide-navigation-tablet .filmstrip{ display: none!important; }}@media only screen and (min-width : 1024px) and (max-width: 1439px) {body:after { display: none; content: "laptop"; } .hide-arrows-laptop .flex-direction-nav, .hide-navigation-laptop .flex-control-paging, .hide-navigation-laptop .flex-control-nav, .hide-navigation-laptop .filmstrip{ display: none!important; }}@media only screen and (min-width : 1440px) {body:after { display: none; content: "desktop"; } .hide-arrows-desktop .flex-direction-nav, .hide-navigation-desktop .flex-control-paging, .hide-navigation-desktop .flex-control-nav, .hide-navigation-desktop .filmstrip{ display: none!important; }} </style> <link rel='stylesheet' id='metaslider-pro-public-css' href='https://tesfanews.com/wp-content/plugins/ml-slider-pro/assets/public.css?ver=2.44.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.96.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=811" 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="disqus_embed-js-extra"> /* <![CDATA[ */ var embedVars = {"disqusConfig":{"integration":"wordpress 3.1.2"},"disqusIdentifier":"2087 https:\/\/tesfanews.com\/?page_id=2087","disqusShortname":"tesfanews","disqusTitle":"Donate","disqusUrl":"https:\/\/tesfanews.com\/donate\/","postId":"2087"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/disqus-comment-system/public/js/comment_embed.js?ver=3.1.2" id="disqus_embed-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":"abe0d542b0"}; /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/embedpress/assets/js/front.js?ver=4.1.10" 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":"737192ddf4"}; /* ]]> */ </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.5" 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.5" 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.5" id="news-portal-custom-script-js"></script> <script type="text/javascript" src="https://tesfanews.com/wp-includes/js/comment-reply.min.js?ver=6.7.2" id="comment-reply-js" async="async" data-wp-strategy="async"></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\/donate\/"}; /* ]]> */ </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" src="https://stats.wp.com/e-202509.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script type="text/javascript" id="jetpack-stats-js-after"> /* <![CDATA[ */ _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"217015860\",\"post\":\"2087\",\"tz\":\"-6\",\"srv\":\"tesfanews.com\",\"j\":\"1:14.3\"}") ]); _stq.push([ "clickTrackerInit", "217015860", "2087" ]); /* ]]> */ </script> <script type="text/javascript" src="https://tesfanews.com/wp-content/plugins/ml-slider/assets/sliders/nivoslider/jquery.nivo.slider.pack.js?ver=3.96.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.96.0" id="metaslider-script-js"></script> <script async src="https://www.instagram.com/embed.js"></script> </body> </html><!-- This website is optimized by Airlift. Learn more: https://airlift.net. Template:. Learn more: https://airlift.net., Cached Timestamp: 2025-03-01 23:49:24 UTC -->