Live:
Headlines
An error occurred while processing the template.
The following has evaluated to null or missing:
==> dynamicElement.element("dynamic-content")  [in template "20097#20123#2475490" at line 100, column 78]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign imageJSONString = dynamicElem...  [in template "20097#20123#2475490" at line 100, column 51]
----
1<#if entries?has_content> 
2	<#assign DLFileEntry=serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService")/> 
3	<#assign assetCategoryLocalService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetCategoryLocalService")/> 
4	<#assign renderItems = true> 
5	<#if portletPreferences["ena_alert_filter"]?has_content &&  
6	  			 portletPreferences["ena_alert_filter"]?size = 1 && 
7		  		 portletPreferences["ena_alert_filter"]?first="true"> 
8		<#assign anyLiveOrBreaking = false> 
9		<#list entries as curEntry> 
10		  <#assign assetRenderer=curEntry.getAssetRenderer() 
11	  	         article=assetRenderer.getArticle()/> 
12			<#assign url=themeDisplay.getURLCurrent()?split("?")?first/> 
13	    <#assign urlTitle=url?split("/")?last/> 
14		  <#assign categories = assetCategoryLocalService.getCategories("com.liferay.journal.model.JournalArticle", article.resourcePrimKey)/> 
15		  <#if categories?has_content> 
16	      <#list categories as curCategory> 
17			    <#assign curDescription = curCategory.getDescription("en_US")?replace("<p>","")?replace("</p>","")?trim/> 
18          <#if curDescription == "live"> 
19				    <#assign isLive = true/> 
20						<#assign isBreaking = false/> 
21				  <#elseif curDescription == "breaking"> 
22				    <#assign isBreaking = true/> 
23						<#assign isLive = false/> 
24				  <#else> 
25				 	  <#assign isBreaking = false/> 
26				 	  <#assign isLive = false/> 
27				  </#if> 
28				  <#if article.reviewDate?has_content> 
29					  <#if (article.reviewDate?long - .now?long) lt 0> 
30        			<#assign isBreaking = false/> 
31        	    <#assign isLive = false/> 
32        	  </#if> 
33          </#if> 
34					<#if article.urlTitle == urlTitle> 
35				   <#assign isBreaking = false/> 
36				   <#assign isLive = false/> 
37				  </#if> 
38          <#if isBreaking || isLive> 
39        	  <#assign anyLiveOrBreaking = true> 
40          </#if> 
41			  </#list> 
42			</#if> 
43	  </#list> 
44		<#if !anyLiveOrBreaking> 
45			<#assign renderItems = false> 
46		</#if> 
47	</#if>	 
48	<#if renderItems> 
49	<div class="ena_display_items"> 
50	  <#list entries as curEntry> 
51  		<#assign assetRenderer=curEntry.getAssetRenderer() 
52	  	         item=assetRenderer.getArticle()/> 
53		  <#assign lang=layout.getGroup().friendlyURL?replace("/","")/> 
54			<#assign groupId=themeDisplay.getLayout().getGroupId()/> 
55			<#assign url=themeDisplay.getURLCurrent()?split("?")?first/> 
56	    <#assign urlTitle=url?split("/")?last/> 
57			<#assign isLive = false/>	 
58			<#assign isBreaking = false/>	 
59			<#assign article = item/>						 
60			<#assign categories = assetCategoryLocalService.getCategories("com.liferay.journal.model.JournalArticle", article.resourcePrimKey)/> 
61		  <#if categories?has_content> 
62	     <#list categories as curCategory> 
63			  <#assign curDescription = curCategory.getDescription("en_US")?replace("<p>","")?replace("</p>","")?trim/> 
64        <#if curDescription == "live"> 
65				 <#assign isLive = true/> 
66				<#elseif curDescription == "breaking"> 
67				 <#assign isBreaking = true/> 
68				</#if> 
69				<#if article.reviewDate?has_content> 
70				 <#if (article.reviewDate?long - .now?long) lt 0> 
71				  <#assign isBreaking = false/> 
72					<#assign isLive = false/> 
73				 </#if> 
74				</#if> 
75				<#if article.urlTitle == urlTitle> 
76				 <#assign isBreaking = false/> 
77				 <#assign isLive = false/> 
78				</#if> 
79			 </#list> 
80			</#if> 
81			<#if portletPreferences["ena_prune_html"]?has_content &&  
82	  			 portletPreferences["ena_prune_html"]?size = 1 && 
83		  		 portletPreferences["ena_prune_html"]?first="false"> 
84		    <#assign prune=0/> 
85		  <#else> 
86			  <#assign prune=1/> 
87		  </#if> 
88			<#if portletPreferences["ena_alert_filter"]?has_content &&  
89	  			 portletPreferences["ena_alert_filter"]?size = 1 && 
90		  		 portletPreferences["ena_alert_filter"]?first="true" && 
91					 !(isBreaking || isLive)> 
92		  <#else>			   
93  		<div class="ena_display_item"> 
94	  		<div class="ena_display_item_image_container"> 
95		  		<a href="/web/${lang}/w/${item.urlTitle}"> 
96			  	  <div class="ena_display_item_image_box"> 
97				  	  <div class="ena_display_item_image_wrap"> 
98					  	  <#list item.document.rootElement.elements() as dynamicElement> 
99				          <#if dynamicElement.attributeValue("field-reference") == "image"> 
100					          <#assign imageJSONString = dynamicElement.element("dynamic-content").getText()/> 
101				            <#assign imageTitle = jsonFactoryUtil.createJSONObject(imageJSONString).getString("title")/> 
102				            <#assign imageEntry = jsonFactoryUtil.createJSONObject(imageJSONString).getString("fileEntryId")/> 
103		  							<#if portletPreferences["ena_image_size"]?has_content && 
104			  								 portletPreferences["ena_image_size"]?size = 1 && 
105			    						   portletPreferences["ena_image_size"]?first="large"> 
106				              <#if imageTitle?has_content> 
107					              <img class="ena_display_item_image ena_display_item_image_large"  
108							               src="/o/adaptive-media/image/${imageEntry}/Preview-1000x0/${imageTitle}" /> 
109	  		  	          <#else> 
110		  		  	          <img class="ena_display_item_image ena_display_item_image_large"  
111						  			    		 src="/documents/d/global/ena_image_placeholder_large" />										 
112  			 		          </#if>		 
113	  							  <#else> 
114		  		  			  	<#if imageTitle?has_content> 
115			  		            <img class="ena_display_item_image ena_display_item_image_small"  
116				  		  	           src="/o/adaptive-media/image/${imageEntry}/Thumbnail-300x300/${imageTitle}" /> 
117	  			            <#else> 
118		  			            <img class="ena_display_item_image ena_display_item_image_small"  
119							  	  	  		 src="/documents/d/global/ena_image_placeholder_small" /> 
120			 		            </#if>	 
121								    </#if> 
122  		  					</#if> 
123	  			        <#if dynamicElement.attributeValue("field-reference") == "video"> 
124		  			        <!--img class="ena_display_item_video_icon" src="/documents/d/global/ena_icon_play_light"/--> 
125										<div class="ena_display_item_video_icon_container"> 
126										<div class="ena_display_item_video_icon_box"> 
127										<div class="ena_display_item_video_icon_wrap"> 
128										<div class="ena_display_item_video_icon"> 
129										 <svg preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 440 440"> 
130	                    <circle cx="50%" cy="50%" r="250" fill="white" /> 
131											<path fill="currentColor" d="M209.457 1.10686Q212.047 0.990314 214.639 0.935254Q217.23 0.880195 219.823 0.886654Q222.415 0.893113 225.007 0.961086Q227.598 1.02906 230.187 1.15851Q232.776 1.28796 235.362 1.47881Q237.947 1.66966 240.527 1.92181Q243.107 2.17396 245.681 2.48726Q248.254 2.80056 250.819 3.17484Q253.384 3.54912 255.94 3.98417Q258.496 4.41921 261.04 4.91478Q263.585 5.41035 266.117 5.96616Q268.649 6.52197 271.167 7.13771Q273.685 7.75345 276.188 8.42877Q278.691 9.10409 281.177 9.83862Q283.663 10.5731 286.132 11.3665Q288.599 12.1598 291.048 13.0114Q293.497 13.8631 295.924 14.7726Q298.352 15.6821 300.757 16.649Q303.162 17.6158 305.544 18.6395Q307.926 19.6632 310.283 20.7431Q312.639 21.823 314.97 22.9585Q317.3 24.094 319.603 25.2845Q321.906 26.475 324.18 27.7199Q326.454 28.9647 328.698 30.2631Q330.941 31.5615 333.154 32.9128Q335.366 34.2641 337.546 35.6675Q339.725 37.071 341.871 38.5257Q344.017 39.9805 346.127 41.4857Q348.238 42.991 350.312 44.5459Q352.387 46.1008 354.423 47.7045Q356.46 49.3082 358.458 50.9598Q360.457 52.6114 362.415 54.3099Q364.434 56.0556 366.41 57.8508Q368.385 59.6459 370.316 61.4895Q372.247 63.333 374.131 65.2238Q376.015 67.1145 377.852 69.0514Q379.689 70.9883 381.477 72.97Q383.265 74.9518 385.004 76.9772Q386.743 79.0026 388.431 81.0704Q390.119 83.1383 391.755 85.2473Q393.392 87.3564 394.975 89.5053Q396.559 91.6542 398.089 93.8416Q399.618 96.0291 401.094 98.2537Q402.569 100.478 403.989 102.739Q405.408 104.999 406.772 107.294Q408.135 109.589 409.441 111.917Q410.747 114.245 411.995 116.605Q413.243 118.965 414.432 121.355Q415.621 123.744 416.751 126.163Q417.88 128.582 418.95 131.027Q420.019 133.473 421.028 135.945Q422.036 138.416 422.983 140.912Q423.93 143.408 424.815 145.926Q425.7 148.445 426.522 150.984Q427.344 153.524 428.104 156.083Q428.863 158.642 429.558 161.219Q430.254 163.796 430.885 166.39Q431.517 168.983 432.084 171.592Q432.651 174.2 433.153 176.822Q433.655 179.444 434.093 182.077Q434.53 184.71 434.902 187.354Q435.274 189.997 435.58 192.649Q435.886 195.3 436.127 197.959Q436.367 200.617 436.542 203.281Q436.718 205.92 436.83 208.563Q436.942 211.206 436.988 213.851Q437.035 216.496 437.016 219.141Q436.998 221.786 436.914 224.43Q436.831 227.074 436.682 229.715Q436.534 232.356 436.321 234.993Q436.107 237.63 435.829 240.26Q435.551 242.891 435.209 245.514Q434.866 248.137 434.459 250.75Q434.052 253.364 433.581 255.967Q433.11 258.57 432.576 261.161Q432.041 263.751 431.442 266.328Q430.844 268.905 430.182 271.466Q429.521 274.027 428.797 276.571Q428.073 279.115 427.286 281.641Q426.499 284.167 425.651 286.672Q424.803 289.178 423.893 291.662Q422.983 294.146 422.013 296.606Q421.042 299.067 420.012 301.503Q418.981 303.94 417.891 306.35Q416.801 308.76 415.652 311.142Q414.502 313.525 413.295 315.879Q412.088 318.232 410.823 320.556Q409.558 322.879 408.237 325.171Q406.915 327.462 405.538 329.72Q404.16 331.979 402.728 334.202Q401.295 336.426 399.809 338.614Q398.322 340.802 396.782 342.953Q395.242 345.104 393.649 347.216Q392.057 349.328 390.413 351.4Q388.769 353.473 387.075 355.504Q385.381 357.536 383.637 359.525Q382.004 361.394 380.329 363.225Q378.654 365.056 376.937 366.849Q375.221 368.641 373.464 370.394Q371.708 372.148 369.912 373.861Q368.116 375.573 366.282 377.245Q364.447 378.917 362.576 380.546Q360.704 382.176 358.795 383.762Q356.887 385.349 354.943 386.892Q352.999 388.435 351.021 389.933Q349.042 391.431 347.03 392.884Q345.018 394.337 342.974 395.744Q340.929 397.151 338.853 398.511Q336.778 399.871 334.671 401.184Q332.565 402.497 330.43 403.761Q328.294 405.026 326.13 406.241Q323.967 407.457 321.776 408.623Q319.585 409.789 317.369 410.905Q315.152 412.022 312.911 413.087Q310.669 414.153 308.404 415.167Q306.139 416.181 303.852 417.144Q301.564 418.106 299.256 419.017Q296.947 419.927 294.618 420.785Q292.289 421.643 289.941 422.447Q287.594 423.252 285.228 424.003Q282.863 424.754 280.481 425.452Q278.099 426.149 275.702 426.792Q273.305 427.435 270.894 428.023Q268.483 428.611 266.059 429.145Q263.636 429.678 261.2 430.156Q258.765 430.635 256.32 431.057Q253.874 431.48 251.42 431.848Q248.965 432.215 246.503 432.526C240.828 433.276 235.026 433.491 229.313 433.869Q226.715 433.987 224.115 434.044Q221.515 434.1 218.914 434.095Q216.313 434.089 213.713 434.021Q211.113 433.953 208.516 433.824Q205.918 433.694 203.325 433.502Q200.731 433.31 198.143 433.057Q195.554 432.803 192.973 432.487Q190.391 432.172 187.818 431.795Q185.245 431.418 182.681 430.98Q180.118 430.542 177.565 430.042Q175.013 429.543 172.473 428.983Q169.933 428.423 167.408 427.802Q164.882 427.181 162.372 426.501Q159.862 425.82 157.369 425.079Q154.876 424.339 152.401 423.539Q149.926 422.739 147.471 421.881Q145.017 421.022 142.583 420.105Q140.149 419.188 137.738 418.213Q135.327 417.238 132.94 416.206Q130.553 415.174 128.191 414.085Q125.829 412.996 123.494 411.851Q121.158 410.706 118.851 409.506Q116.544 408.306 114.266 407.051Q111.988 405.796 109.741 404.486Q107.494 403.177 105.279 401.815Q103.063 400.452 100.881 399.038Q98.6988 397.623 96.5511 396.156Q94.4033 394.689 92.2911 393.172Q90.179 391.655 88.1036 390.087Q86.0283 388.52 83.991 386.903Q81.9537 385.286 79.9556 383.622Q77.9574 381.957 75.9996 380.245Q73.9875 378.493 72.0193 376.691Q70.0511 374.889 68.1282 373.039Q66.2052 371.189 64.3286 369.293Q62.4519 367.396 60.6228 365.453Q58.7937 363.51 57.0132 361.523Q55.2327 359.536 53.502 357.505Q51.7712 355.474 50.0912 353.401Q48.4112 351.328 46.783 349.214Q45.1548 347.1 43.5794 344.946Q42.004 342.793 40.4824 340.601Q38.9608 338.409 37.4939 336.18Q36.0269 333.951 34.6156 331.687Q33.2043 329.422 31.8494 327.123Q30.4945 324.825 29.1969 322.493Q27.8994 320.162 26.6599 317.799Q25.4204 315.436 24.2397 313.043Q23.0591 310.65 21.938 308.229Q20.8169 305.807 19.7561 303.359Q18.6952 300.911 17.6953 298.437Q16.6954 295.963 15.7569 293.465Q14.8185 290.967 13.9422 288.447Q13.0659 285.927 12.2522 283.385Q11.4384 280.844 10.6879 278.284Q9.93728 275.723 9.25029 273.145Q8.56329 270.566 7.94029 267.972Q7.3173 265.377 6.75868 262.768Q6.20007 260.159 5.70619 257.537Q5.21231 254.915 4.78345 252.281Q4.3546 249.647 3.99103 247.004Q3.62747 244.361 3.32942 241.709Q3.03137 239.057 2.79902 236.399Q2.56667 233.741 2.40016 231.078Q2.231 228.393 2.12879 225.704Q2.02658 223.015 1.99139 220.324Q1.9562 217.634 1.98805 214.943Q2.0199 212.252 2.11878 209.563Q2.21765 206.874 2.38349 204.189Q2.54932 201.503 2.78201 198.822Q3.0147 196.141 3.3141 193.467Q3.61351 190.793 3.97944 188.127Q4.34537 185.462 4.7776 182.806Q5.20983 180.15 5.70809 177.506Q6.20635 174.861 6.77033 172.23Q7.33432 169.599 7.96367 166.983Q8.59303 164.367 9.28736 161.767Q9.9817 159.168 10.7406 156.586Q11.4995 154.004 12.3224 151.442Q13.1454 148.881 14.0319 146.34Q14.9185 143.799 15.868 141.282Q16.8176 138.764 17.8296 136.271Q18.8415 133.778 19.9153 131.31Q20.9891 128.843 22.124 126.403Q23.2589 123.963 24.4543 121.553Q25.6496 119.142 26.9047 116.762Q28.1597 114.382 29.4736 112.033Q30.7876 109.685 32.1596 107.37Q33.5316 105.056 34.9609 102.776Q36.3902 100.496 37.8758 98.2525Q39.3615 96.009 40.9025 93.8032Q42.4436 91.5974 44.0391 89.4306Q45.6346 87.2639 47.2837 85.1376Q48.9327 83.0113 50.6342 80.9267Q52.3356 78.8421 54.0885 76.8006Q55.8414 74.759 57.6446 72.7618C96.5763 28.9052 151.319 4.54737 209.457 1.10686ZM223.637 404.464Q228.225 404.362 232.802 404.035Q237.38 403.708 241.936 403.157Q246.492 402.606 251.015 401.832Q255.539 401.058 260.018 400.063Q264.498 399.068 268.924 397.855Q273.35 396.642 277.711 395.213Q282.072 393.784 286.358 392.142Q290.643 390.501 294.843 388.652Q299.043 386.802 303.147 384.749Q307.251 382.696 311.25 380.444Q315.248 378.191 319.132 375.746Q323.015 373.3 326.773 370.667Q330.532 368.034 334.157 365.22Q337.782 362.406 341.264 359.417Q344.747 356.428 348.078 353.272Q351.41 350.117 354.583 346.801Q357.756 343.485 360.762 340.018Q363.769 336.551 366.602 332.941Q369.434 329.33 372.087 325.585Q374.739 321.84 377.204 317.969Q379.669 314.099 381.942 310.112Q384.214 306.125 386.289 302.031Q388.363 297.937 390.234 293.747Q392.104 289.556 393.768 285.279Q395.431 281.002 396.882 276.649Q398.333 272.295 399.569 267.875Q400.805 263.456 401.823 258.981Q402.841 254.506 403.638 249.987Q404.435 245.467 405.009 240.914Q405.583 236.361 405.934 231.786Q406.284 227.21 406.409 222.622Q406.535 218.035 406.435 213.447Q406.335 208.859 406.011 204.281Q405.686 199.704 405.137 195.148Q404.588 190.591 403.817 186.068Q403.045 181.544 402.052 177.063Q401.06 172.583 399.848 168.156Q398.637 163.73 397.21 159.368Q395.783 155.007 394.144 150.72Q392.505 146.434 390.658 142.233Q388.81 138.032 386.759 133.927Q384.708 129.822 382.458 125.822Q380.208 121.823 377.764 117.938Q375.32 114.054 372.689 110.294Q370.058 106.534 367.245 102.908Q364.433 99.2815 361.446 95.7975Q358.459 92.3136 355.305 88.9803Q352.15 85.647 348.836 82.4725Q345.523 79.298 342.057 76.2899Q338.591 73.2817 334.982 70.4472Q331.373 67.6127 327.629 64.9586Q323.885 62.3046 320.016 59.8373Q316.146 57.3701 312.161 55.0956Q308.175 52.8212 304.082 50.745Q299.99 48.6688 295.8 46.7958Q291.61 44.9229 287.334 43.2577Q283.058 41.5925 278.705 40.139Q274.352 38.6856 269.933 37.4475Q265.514 36.2093 261.04 35.1894Q256.565 34.1695 252.046 33.3703Q247.527 32.5711 242.975 31.9945Q238.422 31.4179 233.846 31.0654Q229.271 30.7128 224.683 30.5851Q220.096 30.4574 215.508 30.5549Q210.917 30.6525 206.336 30.9752Q201.756 31.298 197.196 31.8452Q192.637 32.3924 188.11 33.1628Q183.583 33.9331 179.1 34.9247Q174.616 35.9163 170.186 37.1268Q165.757 38.3373 161.392 39.7637Q157.027 41.1902 152.738 42.8291Q148.448 44.4681 144.244 46.3156Q140.04 48.1631 135.932 50.2148Q131.824 52.2664 127.821 54.5172Q123.819 56.7681 119.931 59.2126Q116.044 61.6572 112.282 64.2896Q108.519 66.922 104.89 69.7359Q101.261 72.5498 97.7751 75.5384Q94.2888 78.5271 90.9534 81.6832Q87.6179 84.8394 84.4414 88.1554Q81.2649 91.4715 78.255 94.9395Q75.2451 98.4075 72.409 102.019Q69.5729 105.631 66.9175 109.377Q64.2621 113.123 61.7938 116.996Q59.3255 120.868 57.0503 124.856Q54.775 128.845 52.6982 132.941Q50.6215 137.036 48.7483 141.229Q46.875 145.421 45.2099 149.701Q43.5447 153.98 42.0915 158.336Q40.6384 162.692 39.4008 167.114Q38.1633 171.536 37.1442 176.014Q36.1252 180.491 35.3272 185.014Q34.5291 189.536 33.954 194.091Q33.3789 198.647 33.0281 203.226Q32.6773 207.805 32.5516 212.395Q32.426 216.985 32.5258 221.576Q32.6256 226.167 32.9506 230.747Q33.2757 235.328 33.8251 239.887Q34.3746 244.446 35.1472 248.972Q35.9198 253.499 36.9136 257.982Q37.9074 262.465 39.1201 266.894Q40.3327 271.323 41.7613 275.687Q43.1899 280.052 44.831 284.34Q46.4721 288.629 48.3217 292.832Q50.1713 297.035 52.2249 301.142Q54.2786 305.249 56.5314 309.251Q58.7842 313.252 61.2306 317.138Q63.6771 321.024 66.3114 324.786Q68.9456 328.547 71.7613 332.174Q74.577 335.802 77.5674 339.287Q80.5577 342.771 83.7155 346.105Q86.8733 349.439 90.1909 352.614Q93.5086 355.789 96.978 358.797Q100.447 361.805 104.06 364.64Q107.673 367.474 111.421 370.128Q115.169 372.781 119.042 375.247Q122.916 377.714 126.905 379.987Q130.895 382.26 134.992 384.335Q139.088 386.41 143.282 388.281Q147.475 390.152 151.756 391.815Q156.036 393.478 160.393 394.929Q164.749 396.38 169.172 397.616Q173.595 398.851 178.073 399.868Q182.551 400.885 187.073 401.681Q191.596 402.476 196.152 403.049Q200.708 403.622 205.287 403.971Q209.865 404.319 214.456 404.443Q219.046 404.566 223.637 404.464Z"/> 
132	                    <path fill="currentColor" d="M176.661 135.058C177.437 135.258 177.964 135.693 178.605 136.149C203.569 153.926 228.205 172.211 252.981 190.251L277.339 207.989C281.568 211.069 286.282 214.052 290.153 217.56C284.595 222.076 278.592 226.164 272.801 230.38L242.441 252.46C230.129 261.665 217.574 270.583 205.145 279.633C195.77 286.46 186.499 293.545 176.92 300.076L176.671 299.888C175.991 297.081 176.471 289.087 176.47 285.773L176.467 250.019L176.464 173.865L176.449 149.643C176.448 144.819 176.254 139.865 176.661 135.058Z"/> 
133                     </svg> 
134										</div> 
135										</div> 
136										</div> 
137										</div> 
138										<#if isLive> 
139											<div class="ena_display_item_video_live_container"> 
140										  <div class="ena_display_item_video_live_box"> 
141										  <div class="ena_display_item_video_live_wrap"> 
142											 <div class="ena_display_item_video_live"></div> 
143											</div> 
144										  </div> 
145										  </div> 
146										</#if> 
147			  	        </#if> 
148									<#if dynamicElement.attributeValue("field-reference") == "documentpreview"> 
149										<#assign uploadJSONString = dynamicElement.element("dynamic-content").getText()/> 
150			              <#assign uploadTitle = jsonFactoryUtil.createJSONObject(uploadJSONString).getString("title")/> 
151		                <#assign uploadEntry = jsonFactoryUtil.createJSONObject(uploadJSONString).getString("fileEntryId")/> 
152			              <#assign fileEntry = DLFileEntry.fetchDLFileEntry(uploadEntry?number)/> 
153			              <#assign gid = fileEntry.groupId /> 
154			              <#assign fid = fileEntry.folderId /> 
155			              <#assign slash = "/" /> 
156                    <#assign path = "/documents/${gid}/${fid}/" /> 
157                    <#assign url = themeDisplay.getPortalURL() /> 
158			              <#assign file = "${url}${path}${fileEntry.getTitle()?url('UTF-8')}${slash}${fileEntry.getUuid()}"/> 
159										<picture> 
160			                <img class="ena_display_item_video ena_display_item_image ena_display_item_video_thumbnail ena_display_selector" 
161				                src="${file}?documentThumbnail=1"/> 
162										</picture> 
163								  </#if> 
164  			        </#list> 
165	  			  	</div> 
166  		  		</div> 
167	  			</a> 
168  			</div> 
169	  		<div class="ena_display_item_text_container"> 
170					<#if isBreaking> 
171						<div class="ena_display_item_breaking_container"> 
172					  <div class="ena_display_item_breaking_box"> 
173					  <div class="ena_display_item_breaking_wrap"> 
174						 <div class="ena_display_item_breaking"></div> 
175						</div> 
176					  </div> 
177					  </div> 
178					</#if> 
179		  		<a href="/web/${lang}/w/${item.urlTitle}"> 
180			      <div class="ena_display_item_title"> 
181				      ${curEntry.getTitle(locale)}			  	 
182			      </div> 
183  			  </a> 
184	  			<div class="ena_display_item_date"> 
185		  		  ${curEntry.publishDate?date} <span class="ena_display_item_viewcount">${curEntry.viewCount}</span> 
186			    </div> 
187  				<#if prune==1><a class="ena_display_item_content_link" href="/web/${lang}/w/${item.urlTitle}"></#if> 
188	  		    <div class="ena_display_item_content"> 
189		  		    <#list item.document.rootElement.elements() as dynamicElement> 
190			  	      <#if dynamicElement.attributeValue("field-reference") == "content"> 
191				  				<#if prune==0> 
192					  			  ${dynamicElement.element("dynamic-content").getText()} 
193						  		<#else> 
194							  		${htmlUtil.stripHtml(dynamicElement.element("dynamic-content").getText())?replace("&nbsp;", " ")} 
195								  </#if> 
196  							</#if> 
197	  		      </#list> 
198		  	    </div> 
199		  	  <#if prune==1></a></#if> 
200		  	</div>			 
201		  </div> 
202		  </#if> 
203	  </#list> 
204  </div> 
205	</#if> 
206</#if> 
Featured
An error occurred while processing the template.
The following has evaluated to null or missing:
==> dynamicElement.element("dynamic-content")  [in template "20097#20123#2475490" at line 100, column 78]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign imageJSONString = dynamicElem...  [in template "20097#20123#2475490" at line 100, column 51]
----
1<#if entries?has_content> 
2	<#assign DLFileEntry=serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService")/> 
3	<#assign assetCategoryLocalService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetCategoryLocalService")/> 
4	<#assign renderItems = true> 
5	<#if portletPreferences["ena_alert_filter"]?has_content &&  
6	  			 portletPreferences["ena_alert_filter"]?size = 1 && 
7		  		 portletPreferences["ena_alert_filter"]?first="true"> 
8		<#assign anyLiveOrBreaking = false> 
9		<#list entries as curEntry> 
10		  <#assign assetRenderer=curEntry.getAssetRenderer() 
11	  	         article=assetRenderer.getArticle()/> 
12			<#assign url=themeDisplay.getURLCurrent()?split("?")?first/> 
13	    <#assign urlTitle=url?split("/")?last/> 
14		  <#assign categories = assetCategoryLocalService.getCategories("com.liferay.journal.model.JournalArticle", article.resourcePrimKey)/> 
15		  <#if categories?has_content> 
16	      <#list categories as curCategory> 
17			    <#assign curDescription = curCategory.getDescription("en_US")?replace("<p>","")?replace("</p>","")?trim/> 
18          <#if curDescription == "live"> 
19				    <#assign isLive = true/> 
20						<#assign isBreaking = false/> 
21				  <#elseif curDescription == "breaking"> 
22				    <#assign isBreaking = true/> 
23						<#assign isLive = false/> 
24				  <#else> 
25				 	  <#assign isBreaking = false/> 
26				 	  <#assign isLive = false/> 
27				  </#if> 
28				  <#if article.reviewDate?has_content> 
29					  <#if (article.reviewDate?long - .now?long) lt 0> 
30        			<#assign isBreaking = false/> 
31        	    <#assign isLive = false/> 
32        	  </#if> 
33          </#if> 
34					<#if article.urlTitle == urlTitle> 
35				   <#assign isBreaking = false/> 
36				   <#assign isLive = false/> 
37				  </#if> 
38          <#if isBreaking || isLive> 
39        	  <#assign anyLiveOrBreaking = true> 
40          </#if> 
41			  </#list> 
42			</#if> 
43	  </#list> 
44		<#if !anyLiveOrBreaking> 
45			<#assign renderItems = false> 
46		</#if> 
47	</#if>	 
48	<#if renderItems> 
49	<div class="ena_display_items"> 
50	  <#list entries as curEntry> 
51  		<#assign assetRenderer=curEntry.getAssetRenderer() 
52	  	         item=assetRenderer.getArticle()/> 
53		  <#assign lang=layout.getGroup().friendlyURL?replace("/","")/> 
54			<#assign groupId=themeDisplay.getLayout().getGroupId()/> 
55			<#assign url=themeDisplay.getURLCurrent()?split("?")?first/> 
56	    <#assign urlTitle=url?split("/")?last/> 
57			<#assign isLive = false/>	 
58			<#assign isBreaking = false/>	 
59			<#assign article = item/>						 
60			<#assign categories = assetCategoryLocalService.getCategories("com.liferay.journal.model.JournalArticle", article.resourcePrimKey)/> 
61		  <#if categories?has_content> 
62	     <#list categories as curCategory> 
63			  <#assign curDescription = curCategory.getDescription("en_US")?replace("<p>","")?replace("</p>","")?trim/> 
64        <#if curDescription == "live"> 
65				 <#assign isLive = true/> 
66				<#elseif curDescription == "breaking"> 
67				 <#assign isBreaking = true/> 
68				</#if> 
69				<#if article.reviewDate?has_content> 
70				 <#if (article.reviewDate?long - .now?long) lt 0> 
71				  <#assign isBreaking = false/> 
72					<#assign isLive = false/> 
73				 </#if> 
74				</#if> 
75				<#if article.urlTitle == urlTitle> 
76				 <#assign isBreaking = false/> 
77				 <#assign isLive = false/> 
78				</#if> 
79			 </#list> 
80			</#if> 
81			<#if portletPreferences["ena_prune_html"]?has_content &&  
82	  			 portletPreferences["ena_prune_html"]?size = 1 && 
83		  		 portletPreferences["ena_prune_html"]?first="false"> 
84		    <#assign prune=0/> 
85		  <#else> 
86			  <#assign prune=1/> 
87		  </#if> 
88			<#if portletPreferences["ena_alert_filter"]?has_content &&  
89	  			 portletPreferences["ena_alert_filter"]?size = 1 && 
90		  		 portletPreferences["ena_alert_filter"]?first="true" && 
91					 !(isBreaking || isLive)> 
92		  <#else>			   
93  		<div class="ena_display_item"> 
94	  		<div class="ena_display_item_image_container"> 
95		  		<a href="/web/${lang}/w/${item.urlTitle}"> 
96			  	  <div class="ena_display_item_image_box"> 
97				  	  <div class="ena_display_item_image_wrap"> 
98					  	  <#list item.document.rootElement.elements() as dynamicElement> 
99				          <#if dynamicElement.attributeValue("field-reference") == "image"> 
100					          <#assign imageJSONString = dynamicElement.element("dynamic-content").getText()/> 
101				            <#assign imageTitle = jsonFactoryUtil.createJSONObject(imageJSONString).getString("title")/> 
102				            <#assign imageEntry = jsonFactoryUtil.createJSONObject(imageJSONString).getString("fileEntryId")/> 
103		  							<#if portletPreferences["ena_image_size"]?has_content && 
104			  								 portletPreferences["ena_image_size"]?size = 1 && 
105			    						   portletPreferences["ena_image_size"]?first="large"> 
106				              <#if imageTitle?has_content> 
107					              <img class="ena_display_item_image ena_display_item_image_large"  
108							               src="/o/adaptive-media/image/${imageEntry}/Preview-1000x0/${imageTitle}" /> 
109	  		  	          <#else> 
110		  		  	          <img class="ena_display_item_image ena_display_item_image_large"  
111						  			    		 src="/documents/d/global/ena_image_placeholder_large" />										 
112  			 		          </#if>		 
113	  							  <#else> 
114		  		  			  	<#if imageTitle?has_content> 
115			  		            <img class="ena_display_item_image ena_display_item_image_small"  
116				  		  	           src="/o/adaptive-media/image/${imageEntry}/Thumbnail-300x300/${imageTitle}" /> 
117	  			            <#else> 
118		  			            <img class="ena_display_item_image ena_display_item_image_small"  
119							  	  	  		 src="/documents/d/global/ena_image_placeholder_small" /> 
120			 		            </#if>	 
121								    </#if> 
122  		  					</#if> 
123	  			        <#if dynamicElement.attributeValue("field-reference") == "video"> 
124		  			        <!--img class="ena_display_item_video_icon" src="/documents/d/global/ena_icon_play_light"/--> 
125										<div class="ena_display_item_video_icon_container"> 
126										<div class="ena_display_item_video_icon_box"> 
127										<div class="ena_display_item_video_icon_wrap"> 
128										<div class="ena_display_item_video_icon"> 
129										 <svg preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 440 440"> 
130	                    <circle cx="50%" cy="50%" r="250" fill="white" /> 
131											<path fill="currentColor" d="M209.457 1.10686Q212.047 0.990314 214.639 0.935254Q217.23 0.880195 219.823 0.886654Q222.415 0.893113 225.007 0.961086Q227.598 1.02906 230.187 1.15851Q232.776 1.28796 235.362 1.47881Q237.947 1.66966 240.527 1.92181Q243.107 2.17396 245.681 2.48726Q248.254 2.80056 250.819 3.17484Q253.384 3.54912 255.94 3.98417Q258.496 4.41921 261.04 4.91478Q263.585 5.41035 266.117 5.96616Q268.649 6.52197 271.167 7.13771Q273.685 7.75345 276.188 8.42877Q278.691 9.10409 281.177 9.83862Q283.663 10.5731 286.132 11.3665Q288.599 12.1598 291.048 13.0114Q293.497 13.8631 295.924 14.7726Q298.352 15.6821 300.757 16.649Q303.162 17.6158 305.544 18.6395Q307.926 19.6632 310.283 20.7431Q312.639 21.823 314.97 22.9585Q317.3 24.094 319.603 25.2845Q321.906 26.475 324.18 27.7199Q326.454 28.9647 328.698 30.2631Q330.941 31.5615 333.154 32.9128Q335.366 34.2641 337.546 35.6675Q339.725 37.071 341.871 38.5257Q344.017 39.9805 346.127 41.4857Q348.238 42.991 350.312 44.5459Q352.387 46.1008 354.423 47.7045Q356.46 49.3082 358.458 50.9598Q360.457 52.6114 362.415 54.3099Q364.434 56.0556 366.41 57.8508Q368.385 59.6459 370.316 61.4895Q372.247 63.333 374.131 65.2238Q376.015 67.1145 377.852 69.0514Q379.689 70.9883 381.477 72.97Q383.265 74.9518 385.004 76.9772Q386.743 79.0026 388.431 81.0704Q390.119 83.1383 391.755 85.2473Q393.392 87.3564 394.975 89.5053Q396.559 91.6542 398.089 93.8416Q399.618 96.0291 401.094 98.2537Q402.569 100.478 403.989 102.739Q405.408 104.999 406.772 107.294Q408.135 109.589 409.441 111.917Q410.747 114.245 411.995 116.605Q413.243 118.965 414.432 121.355Q415.621 123.744 416.751 126.163Q417.88 128.582 418.95 131.027Q420.019 133.473 421.028 135.945Q422.036 138.416 422.983 140.912Q423.93 143.408 424.815 145.926Q425.7 148.445 426.522 150.984Q427.344 153.524 428.104 156.083Q428.863 158.642 429.558 161.219Q430.254 163.796 430.885 166.39Q431.517 168.983 432.084 171.592Q432.651 174.2 433.153 176.822Q433.655 179.444 434.093 182.077Q434.53 184.71 434.902 187.354Q435.274 189.997 435.58 192.649Q435.886 195.3 436.127 197.959Q436.367 200.617 436.542 203.281Q436.718 205.92 436.83 208.563Q436.942 211.206 436.988 213.851Q437.035 216.496 437.016 219.141Q436.998 221.786 436.914 224.43Q436.831 227.074 436.682 229.715Q436.534 232.356 436.321 234.993Q436.107 237.63 435.829 240.26Q435.551 242.891 435.209 245.514Q434.866 248.137 434.459 250.75Q434.052 253.364 433.581 255.967Q433.11 258.57 432.576 261.161Q432.041 263.751 431.442 266.328Q430.844 268.905 430.182 271.466Q429.521 274.027 428.797 276.571Q428.073 279.115 427.286 281.641Q426.499 284.167 425.651 286.672Q424.803 289.178 423.893 291.662Q422.983 294.146 422.013 296.606Q421.042 299.067 420.012 301.503Q418.981 303.94 417.891 306.35Q416.801 308.76 415.652 311.142Q414.502 313.525 413.295 315.879Q412.088 318.232 410.823 320.556Q409.558 322.879 408.237 325.171Q406.915 327.462 405.538 329.72Q404.16 331.979 402.728 334.202Q401.295 336.426 399.809 338.614Q398.322 340.802 396.782 342.953Q395.242 345.104 393.649 347.216Q392.057 349.328 390.413 351.4Q388.769 353.473 387.075 355.504Q385.381 357.536 383.637 359.525Q382.004 361.394 380.329 363.225Q378.654 365.056 376.937 366.849Q375.221 368.641 373.464 370.394Q371.708 372.148 369.912 373.861Q368.116 375.573 366.282 377.245Q364.447 378.917 362.576 380.546Q360.704 382.176 358.795 383.762Q356.887 385.349 354.943 386.892Q352.999 388.435 351.021 389.933Q349.042 391.431 347.03 392.884Q345.018 394.337 342.974 395.744Q340.929 397.151 338.853 398.511Q336.778 399.871 334.671 401.184Q332.565 402.497 330.43 403.761Q328.294 405.026 326.13 406.241Q323.967 407.457 321.776 408.623Q319.585 409.789 317.369 410.905Q315.152 412.022 312.911 413.087Q310.669 414.153 308.404 415.167Q306.139 416.181 303.852 417.144Q301.564 418.106 299.256 419.017Q296.947 419.927 294.618 420.785Q292.289 421.643 289.941 422.447Q287.594 423.252 285.228 424.003Q282.863 424.754 280.481 425.452Q278.099 426.149 275.702 426.792Q273.305 427.435 270.894 428.023Q268.483 428.611 266.059 429.145Q263.636 429.678 261.2 430.156Q258.765 430.635 256.32 431.057Q253.874 431.48 251.42 431.848Q248.965 432.215 246.503 432.526C240.828 433.276 235.026 433.491 229.313 433.869Q226.715 433.987 224.115 434.044Q221.515 434.1 218.914 434.095Q216.313 434.089 213.713 434.021Q211.113 433.953 208.516 433.824Q205.918 433.694 203.325 433.502Q200.731 433.31 198.143 433.057Q195.554 432.803 192.973 432.487Q190.391 432.172 187.818 431.795Q185.245 431.418 182.681 430.98Q180.118 430.542 177.565 430.042Q175.013 429.543 172.473 428.983Q169.933 428.423 167.408 427.802Q164.882 427.181 162.372 426.501Q159.862 425.82 157.369 425.079Q154.876 424.339 152.401 423.539Q149.926 422.739 147.471 421.881Q145.017 421.022 142.583 420.105Q140.149 419.188 137.738 418.213Q135.327 417.238 132.94 416.206Q130.553 415.174 128.191 414.085Q125.829 412.996 123.494 411.851Q121.158 410.706 118.851 409.506Q116.544 408.306 114.266 407.051Q111.988 405.796 109.741 404.486Q107.494 403.177 105.279 401.815Q103.063 400.452 100.881 399.038Q98.6988 397.623 96.5511 396.156Q94.4033 394.689 92.2911 393.172Q90.179 391.655 88.1036 390.087Q86.0283 388.52 83.991 386.903Q81.9537 385.286 79.9556 383.622Q77.9574 381.957 75.9996 380.245Q73.9875 378.493 72.0193 376.691Q70.0511 374.889 68.1282 373.039Q66.2052 371.189 64.3286 369.293Q62.4519 367.396 60.6228 365.453Q58.7937 363.51 57.0132 361.523Q55.2327 359.536 53.502 357.505Q51.7712 355.474 50.0912 353.401Q48.4112 351.328 46.783 349.214Q45.1548 347.1 43.5794 344.946Q42.004 342.793 40.4824 340.601Q38.9608 338.409 37.4939 336.18Q36.0269 333.951 34.6156 331.687Q33.2043 329.422 31.8494 327.123Q30.4945 324.825 29.1969 322.493Q27.8994 320.162 26.6599 317.799Q25.4204 315.436 24.2397 313.043Q23.0591 310.65 21.938 308.229Q20.8169 305.807 19.7561 303.359Q18.6952 300.911 17.6953 298.437Q16.6954 295.963 15.7569 293.465Q14.8185 290.967 13.9422 288.447Q13.0659 285.927 12.2522 283.385Q11.4384 280.844 10.6879 278.284Q9.93728 275.723 9.25029 273.145Q8.56329 270.566 7.94029 267.972Q7.3173 265.377 6.75868 262.768Q6.20007 260.159 5.70619 257.537Q5.21231 254.915 4.78345 252.281Q4.3546 249.647 3.99103 247.004Q3.62747 244.361 3.32942 241.709Q3.03137 239.057 2.79902 236.399Q2.56667 233.741 2.40016 231.078Q2.231 228.393 2.12879 225.704Q2.02658 223.015 1.99139 220.324Q1.9562 217.634 1.98805 214.943Q2.0199 212.252 2.11878 209.563Q2.21765 206.874 2.38349 204.189Q2.54932 201.503 2.78201 198.822Q3.0147 196.141 3.3141 193.467Q3.61351 190.793 3.97944 188.127Q4.34537 185.462 4.7776 182.806Q5.20983 180.15 5.70809 177.506Q6.20635 174.861 6.77033 172.23Q7.33432 169.599 7.96367 166.983Q8.59303 164.367 9.28736 161.767Q9.9817 159.168 10.7406 156.586Q11.4995 154.004 12.3224 151.442Q13.1454 148.881 14.0319 146.34Q14.9185 143.799 15.868 141.282Q16.8176 138.764 17.8296 136.271Q18.8415 133.778 19.9153 131.31Q20.9891 128.843 22.124 126.403Q23.2589 123.963 24.4543 121.553Q25.6496 119.142 26.9047 116.762Q28.1597 114.382 29.4736 112.033Q30.7876 109.685 32.1596 107.37Q33.5316 105.056 34.9609 102.776Q36.3902 100.496 37.8758 98.2525Q39.3615 96.009 40.9025 93.8032Q42.4436 91.5974 44.0391 89.4306Q45.6346 87.2639 47.2837 85.1376Q48.9327 83.0113 50.6342 80.9267Q52.3356 78.8421 54.0885 76.8006Q55.8414 74.759 57.6446 72.7618C96.5763 28.9052 151.319 4.54737 209.457 1.10686ZM223.637 404.464Q228.225 404.362 232.802 404.035Q237.38 403.708 241.936 403.157Q246.492 402.606 251.015 401.832Q255.539 401.058 260.018 400.063Q264.498 399.068 268.924 397.855Q273.35 396.642 277.711 395.213Q282.072 393.784 286.358 392.142Q290.643 390.501 294.843 388.652Q299.043 386.802 303.147 384.749Q307.251 382.696 311.25 380.444Q315.248 378.191 319.132 375.746Q323.015 373.3 326.773 370.667Q330.532 368.034 334.157 365.22Q337.782 362.406 341.264 359.417Q344.747 356.428 348.078 353.272Q351.41 350.117 354.583 346.801Q357.756 343.485 360.762 340.018Q363.769 336.551 366.602 332.941Q369.434 329.33 372.087 325.585Q374.739 321.84 377.204 317.969Q379.669 314.099 381.942 310.112Q384.214 306.125 386.289 302.031Q388.363 297.937 390.234 293.747Q392.104 289.556 393.768 285.279Q395.431 281.002 396.882 276.649Q398.333 272.295 399.569 267.875Q400.805 263.456 401.823 258.981Q402.841 254.506 403.638 249.987Q404.435 245.467 405.009 240.914Q405.583 236.361 405.934 231.786Q406.284 227.21 406.409 222.622Q406.535 218.035 406.435 213.447Q406.335 208.859 406.011 204.281Q405.686 199.704 405.137 195.148Q404.588 190.591 403.817 186.068Q403.045 181.544 402.052 177.063Q401.06 172.583 399.848 168.156Q398.637 163.73 397.21 159.368Q395.783 155.007 394.144 150.72Q392.505 146.434 390.658 142.233Q388.81 138.032 386.759 133.927Q384.708 129.822 382.458 125.822Q380.208 121.823 377.764 117.938Q375.32 114.054 372.689 110.294Q370.058 106.534 367.245 102.908Q364.433 99.2815 361.446 95.7975Q358.459 92.3136 355.305 88.9803Q352.15 85.647 348.836 82.4725Q345.523 79.298 342.057 76.2899Q338.591 73.2817 334.982 70.4472Q331.373 67.6127 327.629 64.9586Q323.885 62.3046 320.016 59.8373Q316.146 57.3701 312.161 55.0956Q308.175 52.8212 304.082 50.745Q299.99 48.6688 295.8 46.7958Q291.61 44.9229 287.334 43.2577Q283.058 41.5925 278.705 40.139Q274.352 38.6856 269.933 37.4475Q265.514 36.2093 261.04 35.1894Q256.565 34.1695 252.046 33.3703Q247.527 32.5711 242.975 31.9945Q238.422 31.4179 233.846 31.0654Q229.271 30.7128 224.683 30.5851Q220.096 30.4574 215.508 30.5549Q210.917 30.6525 206.336 30.9752Q201.756 31.298 197.196 31.8452Q192.637 32.3924 188.11 33.1628Q183.583 33.9331 179.1 34.9247Q174.616 35.9163 170.186 37.1268Q165.757 38.3373 161.392 39.7637Q157.027 41.1902 152.738 42.8291Q148.448 44.4681 144.244 46.3156Q140.04 48.1631 135.932 50.2148Q131.824 52.2664 127.821 54.5172Q123.819 56.7681 119.931 59.2126Q116.044 61.6572 112.282 64.2896Q108.519 66.922 104.89 69.7359Q101.261 72.5498 97.7751 75.5384Q94.2888 78.5271 90.9534 81.6832Q87.6179 84.8394 84.4414 88.1554Q81.2649 91.4715 78.255 94.9395Q75.2451 98.4075 72.409 102.019Q69.5729 105.631 66.9175 109.377Q64.2621 113.123 61.7938 116.996Q59.3255 120.868 57.0503 124.856Q54.775 128.845 52.6982 132.941Q50.6215 137.036 48.7483 141.229Q46.875 145.421 45.2099 149.701Q43.5447 153.98 42.0915 158.336Q40.6384 162.692 39.4008 167.114Q38.1633 171.536 37.1442 176.014Q36.1252 180.491 35.3272 185.014Q34.5291 189.536 33.954 194.091Q33.3789 198.647 33.0281 203.226Q32.6773 207.805 32.5516 212.395Q32.426 216.985 32.5258 221.576Q32.6256 226.167 32.9506 230.747Q33.2757 235.328 33.8251 239.887Q34.3746 244.446 35.1472 248.972Q35.9198 253.499 36.9136 257.982Q37.9074 262.465 39.1201 266.894Q40.3327 271.323 41.7613 275.687Q43.1899 280.052 44.831 284.34Q46.4721 288.629 48.3217 292.832Q50.1713 297.035 52.2249 301.142Q54.2786 305.249 56.5314 309.251Q58.7842 313.252 61.2306 317.138Q63.6771 321.024 66.3114 324.786Q68.9456 328.547 71.7613 332.174Q74.577 335.802 77.5674 339.287Q80.5577 342.771 83.7155 346.105Q86.8733 349.439 90.1909 352.614Q93.5086 355.789 96.978 358.797Q100.447 361.805 104.06 364.64Q107.673 367.474 111.421 370.128Q115.169 372.781 119.042 375.247Q122.916 377.714 126.905 379.987Q130.895 382.26 134.992 384.335Q139.088 386.41 143.282 388.281Q147.475 390.152 151.756 391.815Q156.036 393.478 160.393 394.929Q164.749 396.38 169.172 397.616Q173.595 398.851 178.073 399.868Q182.551 400.885 187.073 401.681Q191.596 402.476 196.152 403.049Q200.708 403.622 205.287 403.971Q209.865 404.319 214.456 404.443Q219.046 404.566 223.637 404.464Z"/> 
132	                    <path fill="currentColor" d="M176.661 135.058C177.437 135.258 177.964 135.693 178.605 136.149C203.569 153.926 228.205 172.211 252.981 190.251L277.339 207.989C281.568 211.069 286.282 214.052 290.153 217.56C284.595 222.076 278.592 226.164 272.801 230.38L242.441 252.46C230.129 261.665 217.574 270.583 205.145 279.633C195.77 286.46 186.499 293.545 176.92 300.076L176.671 299.888C175.991 297.081 176.471 289.087 176.47 285.773L176.467 250.019L176.464 173.865L176.449 149.643C176.448 144.819 176.254 139.865 176.661 135.058Z"/> 
133                     </svg> 
134										</div> 
135										</div> 
136										</div> 
137										</div> 
138										<#if isLive> 
139											<div class="ena_display_item_video_live_container"> 
140										  <div class="ena_display_item_video_live_box"> 
141										  <div class="ena_display_item_video_live_wrap"> 
142											 <div class="ena_display_item_video_live"></div> 
143											</div> 
144										  </div> 
145										  </div> 
146										</#if> 
147			  	        </#if> 
148									<#if dynamicElement.attributeValue("field-reference") == "documentpreview"> 
149										<#assign uploadJSONString = dynamicElement.element("dynamic-content").getText()/> 
150			              <#assign uploadTitle = jsonFactoryUtil.createJSONObject(uploadJSONString).getString("title")/> 
151		                <#assign uploadEntry = jsonFactoryUtil.createJSONObject(uploadJSONString).getString("fileEntryId")/> 
152			              <#assign fileEntry = DLFileEntry.fetchDLFileEntry(uploadEntry?number)/> 
153			              <#assign gid = fileEntry.groupId /> 
154			              <#assign fid = fileEntry.folderId /> 
155			              <#assign slash = "/" /> 
156                    <#assign path = "/documents/${gid}/${fid}/" /> 
157                    <#assign url = themeDisplay.getPortalURL() /> 
158			              <#assign file = "${url}${path}${fileEntry.getTitle()?url('UTF-8')}${slash}${fileEntry.getUuid()}"/> 
159										<picture> 
160			                <img class="ena_display_item_video ena_display_item_image ena_display_item_video_thumbnail ena_display_selector" 
161				                src="${file}?documentThumbnail=1"/> 
162										</picture> 
163								  </#if> 
164  			        </#list> 
165	  			  	</div> 
166  		  		</div> 
167	  			</a> 
168  			</div> 
169	  		<div class="ena_display_item_text_container"> 
170					<#if isBreaking> 
171						<div class="ena_display_item_breaking_container"> 
172					  <div class="ena_display_item_breaking_box"> 
173					  <div class="ena_display_item_breaking_wrap"> 
174						 <div class="ena_display_item_breaking"></div> 
175						</div> 
176					  </div> 
177					  </div> 
178					</#if> 
179		  		<a href="/web/${lang}/w/${item.urlTitle}"> 
180			      <div class="ena_display_item_title"> 
181				      ${curEntry.getTitle(locale)}			  	 
182			      </div> 
183  			  </a> 
184	  			<div class="ena_display_item_date"> 
185		  		  ${curEntry.publishDate?date} <span class="ena_display_item_viewcount">${curEntry.viewCount}</span> 
186			    </div> 
187  				<#if prune==1><a class="ena_display_item_content_link" href="/web/${lang}/w/${item.urlTitle}"></#if> 
188	  		    <div class="ena_display_item_content"> 
189		  		    <#list item.document.rootElement.elements() as dynamicElement> 
190			  	      <#if dynamicElement.attributeValue("field-reference") == "content"> 
191				  				<#if prune==0> 
192					  			  ${dynamicElement.element("dynamic-content").getText()} 
193						  		<#else> 
194							  		${htmlUtil.stripHtml(dynamicElement.element("dynamic-content").getText())?replace("&nbsp;", " ")} 
195								  </#if> 
196  							</#if> 
197	  		      </#list> 
198		  	    </div> 
199		  	  <#if prune==1></a></#if> 
200		  	</div>			 
201		  </div> 
202		  </#if> 
203	  </#list> 
204  </div> 
205	</#if> 
206</#if> 
Advertisement
ENA
Feb 7, 2023 410275
ENA

Pulse Of Africa

POA English

POA English

Pulse Of Africa - English Language

Your news, current affairs and entertainment channel

Join us on

POA Arabic

POA Arabic - عربي

Pulse Of Africa - Arabic Language

قناتكم الاخبارية و الترفيهية

Join us on

Politics
Visa-Free Africa, Open Skies Key to Tourism Growth, Kenyan Expert Says
May 5, 2026 46
Addis Ababa, May 5, 2026 (ENA) — A leading Kenyan aviation expert has called for sweeping reforms across Africa’s travel and aviation sectors, arguing that visa-free access and open skies are essential to unlocking the continent’s vast tourism potential. Speaking to ENA on the sidelines of the IATA Focus Africa Conference in Addis Ababa, Charles Gakuu emphasized the urgent need for stronger regional air connectivity and policy alignment among African nations. Gakuu, Managing Director of the Air Travel and Related Studies Centre in Nairobi, pointed to recent improvements in regional air links, highlighting the growing network of Ethiopian Airlines as a model for the continent. “We need to have open connectivity. I was very happy yesterday to catch a flight from Mombasa to Addis on Ethiopian Airlines. That was never there,” he said. He praised the airline’s expanding global reach, noting its connections across multiple continents. “I must commend Ethiopian Airlines, first of all, for the effort that they have made to spread the wings all over the world. I see Addis-Sao Paulo, I see Addis-Chicago, I see Addis-Washington, and so on. On the other side, Milan. It is very good. It's very good for air connectivity.” Despite these gains, Gakuu stressed that broader structural reforms are needed to fully realize Africa’s aviation and tourism potential. “The first of all is to have a visa-free continent. It does not make sense that I require a visa to go to my neighbor,” he said, pointing to integration models such as the European Union and the Schengen Area as examples worth emulating. He added that liberalizing airspace across the continent is equally critical. “The second thing that you need to do is, of course, to open up the skies.” Reflecting on his first visit to Addis Ababa in the early 1990s, Gakuu noted the city’s dramatic transformation over the past three decades. “I'm very, very delighted to see that in 30 years you have an electric train, you have huge freeways, and the numbers have grown, populations have grown,” he said, recalling a time when landmarks such as the Ghion Hotel and the Hilton Addis Ababa dominated the skyline. He also commended Ethiopian Airlines for extending its influence beyond aviation into hospitality, citing investments in high-quality accommodation for transit passengers. “Ethiopian Airlines have taken lead in that, and not just with aviation, but also in proper quality five-star hotels where transit passengers can be able to have a rest. And that is revenue for the airline, and of course revenue for the country,” he said. Gakuu highlighted Ethiopia’s visa-free access for Kenyan travelers as a positive example of regional cooperation. “I think it is only Kenyans and one more nationality that don't require a visa to get to Ethiopia. And we are very happy with that privilege,” he noted. Describing his arrival experience, he added, “When I came in, no questions asked. I just got my passport stamped, and in five minutes I was here.” He concluded with optimism about Ethiopia’s future, pointing to its hospitality sector and growing infrastructure. “I'm sure with the hospitality of the people, of the Ethiopians, there's no doubt that moving forward you're going to build also your tourism industry, Ethiopia’s aviation industry. It's good to see so many hotels coming up. I saw Radisson Blu Hotel Addis Ababa, and many more.”
Prime Minister Abiy Spearheads Comprehensive Development and Diplomatic Milestones
May 2, 2026 4018
Addis Ababa, May 2, 2026 —Prime Minister Abiy Ahmed has led a transformative series of high-level initiatives throughout April 2026, marking significant strides in scientific research, urban renewal, and macroeconomic stability while fortifying Ethiopia’s diplomatic and continental leadership. The Prime Minister’s activities this month were anchored by the inauguration of several landmark projects designed to bolster national self-sufficiency and urban livability, according to Office of the Prime Minister. Key among these was the unveiling of a state-of-the-art research complex at the Armauer Hansen Research Institute (AHRI), equipped with 40 laboratories and a bioequivalence center to certify locally manufactured pharmaceuticals. In the capital, the Arada Park and Addis Sports Park projects were launched, transforming neglected areas into vibrant multi-purpose hubs that integrate Olympic-standard infrastructure with community housing and commercial opportunities. In a move that solidifies Ethiopia’s role in the future of African technology, Prime Minister Abiy was appointed as the African Union Champion for Artificial Intelligence and Digital Health. This continental mandate aligns with the Prime Minister’s domestic push for "Industry 4.0," emphasizing chips, data, and robotics as essential pillars of national sovereignty. Economic performance reviews for the nine-month period revealed a robust 9.2% growth rate, with projections reaching 10.2% for the coming year. This success is underpinned by sweeping reforms that turned state-owned enterprises into profitable entities generating 2.1 trillion birr in revenue. On the diplomatic front, Ethiopia hosted the Presidents of Burundi, Liberia, South Sudan, and Mozambique, signing several cooperation agreements in defense, health, and education. Domestically, the Prime Minister extended the appointment of Lt. Gen. Tadesse Worede as President of the Tigray Region Interim Administration following a review of the region’s annual performance. The month also highlighted Ethiopia's environmental and social commitment, with early preparations beginning for hosting COP32 in 2027 and the report of over 19.8 million jobs created over the past eight years, underscoring a period of intensive nation-building.
Egypt’s Approach to Abay Water Sharing Needs Rethinking, Says Analyst
May 1, 2026 3744
Addis Ababa, May 1, 2026 —Ustaz Jamal Bashir, founder of the “Kings of the Abay” YouTube channel, is calling for a serious reassessment of Egypt’s long-standing stance on the #AbayRiver. He argues that current policies fail to recognize the legitimate rights of upstream nations, especially Ethiopia, which contributes nearly 85% of the river’s water. In an exclusive interview with ENA, emal, who is also an advocate for the equitable utilization of the Abay River’s waters, said Egypt’s stance is rooted in outdated perceptions that fail to reflect present realities and the principle of equitable water utilization. “The current approach overlooks Ethiopia’s legitimate right to use its natural resources for development,” he said. He noted that historical agreements such as the 1929 and 1959 Nile treaties between Egypt and Sudan were concluded under colonial conditions without Ethiopia’s participation. According to him, relying on such agreements to limit Ethiopia’s access to fair water use lacks legal and moral justification. Jemal emphasized that Ethiopia’s position on the Abay is based on fair historical and legal grounds. He added that the progress of the Grand Ethiopian Renaissance Dam demonstrates the country’s commitment to achieving development while avoiding harm to downstream nations. “The GERD reflects Ethiopia’s rightful aspiration to utilize its resources responsibly,” he stated. He further stressed that external pressure would not deter Ethiopia’s development efforts but would instead reinforce its commitment to sovereignty and unity. “Ethiopia has the capacity to safeguard its interests and uphold its strategic choices,” he noted. Highlighting the river’s importance, he described the Abay, which originates from Lake Tana, as a critical resource for agriculture and national growth. He further noted that attempts to minimize its significance to Ethiopia are neither accurate nor objective. According to him, Ethiopia follows the principle of fair and equitable utilization of transboundary water resources, balancing its development needs with respect for other countries’ rights. He also called for a shift away from entrenched positions toward constructive dialogue based on mutual benefit. He also warned that instability in Sudan could disrupt regional balance and undermine cooperation among Nile Basin countries. Ethiopia is strengthening its role as a responsible regional actor by advancing development while promoting stability through dialogue and cooperation, he concluded.
Ireland Pledges Stronger Partnership with Ethiopia, Prioritizes Climate Action: Irish Ambassador
May 1, 2026 3320
Addis Ababa, May 1, 2026 — Ireland has reaffirmed its commitment to deepening bilateral cooperation with Ethiopia, placing climate action at the center of its development support,” the Irish Ambassador stated. Olivia Leslie, the Irish Ambassador to Ethiopia and Permanent Representative to the African Union, told ENA that Ireland has maintained a long-standing partnership with the Ethiopian government through programs focused on social protection and advancing the rights of women and girls. “We have worked for years in close partnership with Ethiopia, particularly in supporting vulnerable communities and promoting gender equality,” she said. She further explained that Ireland is expanding its climate-focused interventions across multiple regions of the country, including northern Ethiopia, with plans to extend activities to Somali and Afar regions, alongside ongoing work in Tigray on climate-smart agriculture. The ambassador also emphasized that gender considerations remain central to all climate initiatives. “We are ensuring that the needs of women and girls are reflected in the design of climate programs, whether implemented by government institutions, local organizations, or regional partners,” she stated. Leslie further added that Ireland collaborates with a wide range of partners, including the International Centre for Research in Agroforestry and the Ethiopian Agricultural Transformation Institute, as well as regional agricultural bureaus in Somali and Afar. Highlighting Ethiopia’s achievements, the ambassador praised the country’s leadership in climate action and renewable energy. “Ethiopia is showing really strong leadership in climate action. There is significant potential, particularly in renewable energy, and the government is actively working to harness it,” she said. She noted that Ethiopia has the capacity to translate its climate ambitions into concrete results, with the support of Ireland, the European Union, and other international partners. Looking ahead, Leslie said Ethiopia’s hosting of COP 32 next year will provide an important platform to advance both continental and global climate agendas. African countries must play a central role in climate negotiations, she stressed, adding, “Africa’s voice needs to be at the center of the COP process, given the continent’s vulnerability to climate change.” The ambassador also highlighted climate finance as a key issue, noting that funding must come from diverse sources, including governments and the private sector. She added that development partners should work to remove barriers that limit access to climate finance while supporting both mitigation and adaptation efforts. Reaffirming Ireland’s broader engagement, Leslie said the country will continue strengthening diplomatic, development, and economic ties with Ethiopia. “Ethiopia is a very important partner for Ireland, the European Union, and the wider international community. We want to deepen our cooperation, support the multilateral system, and build strong people-to-people connections,” she said.
Ethiopia Intensifies Diplomatic Engagements to Advance Trade, Investment, and Regional Leadership
Apr 30, 2026 4035
Addis Ababa, April 30, 2026 —Ethiopia has intensified its diplomatic engagements in recent weeks, reinforcing its position in trade, investment, and regional leadership through a series of high-level visits, bilateral agreements, and international forums, according to Nebiat Getachew, the Ministry of Foreign Affairs Spokesperson. Briefing the media on recent diplomatic activities, Ambassador Nebiat stated that Ethiopia has been undertaking coordinated diplomatic efforts that safeguard national interests while enhancing the country’s standing in regional, continental, and global affairs. He noted that leaders from Burundi, Liberia, South Sudan, and Mozambique paid official working visits to Ethiopia in recent weeks, during which they discussed strengthening bilateral ties and expanding cooperation with Prime Minister Abiy Ahmed. According to Nebiat, these visits resulted in multiple bilateral agreements and memoranda of understanding aimed at deepening cooperation in agriculture, food security, tourism, technology, and other strategic sectors. He added that visiting delegations also toured Ethiopia’s flagship national initiatives, including the Green Legacy program, the Fayda digital identity platform, and the country’s expanding digital transformation efforts, including artificial intelligence. Nebiat emphasized that Ethiopia showcased progress in food sovereignty, agricultural modernization, and homegrown development initiatives designed to strengthen productivity and economic resilience. Furthermore, he noted that Ethiopia hosted several senior international representatives during this period, including China’s Special Envoy for the Horn of Africa, as well as senior officials and foreign ministers from Portugal, the European Union, Austria, Bangladesh, the Czech Republic, and Sweden. “These engagements have enabled Ethiopia to clearly project its position on regional and global issues while strengthening diplomatic and economic partnerships,” Nebiat said. As part of its economic diplomacy, Ethiopia hosted the EU–Ethiopia Business Forum 2026 and a dedicated Ethiopia–Czech business forum, both aimed at expanding trade partnerships and attracting foreign investment. Foreign Minister Gedion Timothewos also conducted official visits to Sweden and Norway, where he held discussions with government officials and company executives on expanding cooperation in trade, investment, renewable energy, agro-processing, technology, and tourism. Nebiat reiterated that Ethiopia has continued to use diplomacy to unlock new opportunities in trade and investment, particularly in strategic sectors linked to economic transformation and private sector growth. On the continental front, he noted that Ethiopia has played an active leadership role in African peace and security, including its responsibilities as Chair of the African Union Peace and Security Council. He further stated that Ethiopia has been actively engaging member states on regional peace and security matters. According to Nebiat, Ethiopia’s recent bilateral and multilateral diplomatic engagements reflect a proactive, multidimensional foreign policy approach aimed at strengthening strategic partnerships, advancing national development priorities, and reinforcing the country’s voice in regional and global affairs.
AU-PSC Deliberates on the Future of Peace Operations Under Ethiopian Chairmanship
Apr 28, 2026 4937
Addis Ababa, April 28, 2026 —Under the chairmanship of Ethiopia, the African Union Peace and Security Council (AU-PSC) convened on Monday (April 27) to deliberate on the future of Peace Support Operations (PSOs). According to a social media post by the Ministry of Foreign Affairs, the deliberation focused on the future of PSOs in Africa. The session assessed the measures that need to be taken in light of the evolving international order and the changing peace and security landscape across the continent. In her remarks, Ambassador Hirut Zemene, Permanent Representative of Ethiopia to the AU and UN-ECA, commended the significant contributions that African PSOs have made over nearly three decades, noting their deployment across the continent, often under stringent financial and security conditions. She called for regular and sustained discussions on the subject to ensure that PSOs remain effective instruments for peace and stability in Africa, complementing political processes. The Council emphasized the importance of prioritizing preventive diplomacy and strengthening early-warning systems. The meeting concluded with the adoption of key decisions expected to guide Africa’s Peace Support Operations in the coming decades. Ethiopia has entered the final week of its chairmanship of the AU PSC. During the remaining period, it will steer discussions on the joint retreat between the PSC and APRM, as well as consideration of the report on the PSC’s visit to South Sudan later this week. The discussion was graced by El Ghassim Wane, former Special Representative of the UN Secretary-General and Head of MINUSMA, as well as Parfait Onanga Anyanga, Head of the United Nations Office to the African Union (UNOAU).
Ethiopia, Mozambique Strengthen Ties with New Cooperation Agreements
Apr 27, 2026 6745
Addis Ababa, April 27, 2026--Prime Abiy Ahmed on Monday hosted Daniel Francisco Chapo at the National Palace in Addis Ababa, marking the start of a high-level visit aimed at deepening relations between Ethiopia and Mozambique. During the visit, the two leaders held bilateral talks focused on expanding cooperation across strategic sectors. According to the Ethiopian Prime Minister, the discussions were “fruitful” and signaled the beginning of what he described as a long-term and practical partnership. The meeting also saw the signing of several Memoranda of Understanding (MOUs), intended to provide a framework for collaboration in key areas. While specific sectors were not detailed, both sides indicated that the agreements are expected to strengthen economic and diplomatic ties. In messages shared on social media, PM Abiy emphasized Ethiopia’s approach to international partnerships, highlighting mutual respect and long-term impact as guiding principles. He noted that Ethiopia aims to position itself as more than just a partner, but as a country offering sustained opportunities for growth and transformation. President Chapo’s visit comes amid broader efforts by African nations to enhance intra-continental cooperation, in line with ongoing initiatives to boost regional integration and shared economic development. The Ethiopian government expressed optimism that the visit would yield concrete outcomes and lay the groundwork for continued collaboration between the two countries.
Politics
Visa-Free Africa, Open Skies Key to Tourism Growth, Kenyan Expert Says
May 5, 2026 46
Addis Ababa, May 5, 2026 (ENA) — A leading Kenyan aviation expert has called for sweeping reforms across Africa’s travel and aviation sectors, arguing that visa-free access and open skies are essential to unlocking the continent’s vast tourism potential. Speaking to ENA on the sidelines of the IATA Focus Africa Conference in Addis Ababa, Charles Gakuu emphasized the urgent need for stronger regional air connectivity and policy alignment among African nations. Gakuu, Managing Director of the Air Travel and Related Studies Centre in Nairobi, pointed to recent improvements in regional air links, highlighting the growing network of Ethiopian Airlines as a model for the continent. “We need to have open connectivity. I was very happy yesterday to catch a flight from Mombasa to Addis on Ethiopian Airlines. That was never there,” he said. He praised the airline’s expanding global reach, noting its connections across multiple continents. “I must commend Ethiopian Airlines, first of all, for the effort that they have made to spread the wings all over the world. I see Addis-Sao Paulo, I see Addis-Chicago, I see Addis-Washington, and so on. On the other side, Milan. It is very good. It's very good for air connectivity.” Despite these gains, Gakuu stressed that broader structural reforms are needed to fully realize Africa’s aviation and tourism potential. “The first of all is to have a visa-free continent. It does not make sense that I require a visa to go to my neighbor,” he said, pointing to integration models such as the European Union and the Schengen Area as examples worth emulating. He added that liberalizing airspace across the continent is equally critical. “The second thing that you need to do is, of course, to open up the skies.” Reflecting on his first visit to Addis Ababa in the early 1990s, Gakuu noted the city’s dramatic transformation over the past three decades. “I'm very, very delighted to see that in 30 years you have an electric train, you have huge freeways, and the numbers have grown, populations have grown,” he said, recalling a time when landmarks such as the Ghion Hotel and the Hilton Addis Ababa dominated the skyline. He also commended Ethiopian Airlines for extending its influence beyond aviation into hospitality, citing investments in high-quality accommodation for transit passengers. “Ethiopian Airlines have taken lead in that, and not just with aviation, but also in proper quality five-star hotels where transit passengers can be able to have a rest. And that is revenue for the airline, and of course revenue for the country,” he said. Gakuu highlighted Ethiopia’s visa-free access for Kenyan travelers as a positive example of regional cooperation. “I think it is only Kenyans and one more nationality that don't require a visa to get to Ethiopia. And we are very happy with that privilege,” he noted. Describing his arrival experience, he added, “When I came in, no questions asked. I just got my passport stamped, and in five minutes I was here.” He concluded with optimism about Ethiopia’s future, pointing to its hospitality sector and growing infrastructure. “I'm sure with the hospitality of the people, of the Ethiopians, there's no doubt that moving forward you're going to build also your tourism industry, Ethiopia’s aviation industry. It's good to see so many hotels coming up. I saw Radisson Blu Hotel Addis Ababa, and many more.”
Prime Minister Abiy Spearheads Comprehensive Development and Diplomatic Milestones
May 2, 2026 4018
Addis Ababa, May 2, 2026 —Prime Minister Abiy Ahmed has led a transformative series of high-level initiatives throughout April 2026, marking significant strides in scientific research, urban renewal, and macroeconomic stability while fortifying Ethiopia’s diplomatic and continental leadership. The Prime Minister’s activities this month were anchored by the inauguration of several landmark projects designed to bolster national self-sufficiency and urban livability, according to Office of the Prime Minister. Key among these was the unveiling of a state-of-the-art research complex at the Armauer Hansen Research Institute (AHRI), equipped with 40 laboratories and a bioequivalence center to certify locally manufactured pharmaceuticals. In the capital, the Arada Park and Addis Sports Park projects were launched, transforming neglected areas into vibrant multi-purpose hubs that integrate Olympic-standard infrastructure with community housing and commercial opportunities. In a move that solidifies Ethiopia’s role in the future of African technology, Prime Minister Abiy was appointed as the African Union Champion for Artificial Intelligence and Digital Health. This continental mandate aligns with the Prime Minister’s domestic push for "Industry 4.0," emphasizing chips, data, and robotics as essential pillars of national sovereignty. Economic performance reviews for the nine-month period revealed a robust 9.2% growth rate, with projections reaching 10.2% for the coming year. This success is underpinned by sweeping reforms that turned state-owned enterprises into profitable entities generating 2.1 trillion birr in revenue. On the diplomatic front, Ethiopia hosted the Presidents of Burundi, Liberia, South Sudan, and Mozambique, signing several cooperation agreements in defense, health, and education. Domestically, the Prime Minister extended the appointment of Lt. Gen. Tadesse Worede as President of the Tigray Region Interim Administration following a review of the region’s annual performance. The month also highlighted Ethiopia's environmental and social commitment, with early preparations beginning for hosting COP32 in 2027 and the report of over 19.8 million jobs created over the past eight years, underscoring a period of intensive nation-building.
Egypt’s Approach to Abay Water Sharing Needs Rethinking, Says Analyst
May 1, 2026 3744
Addis Ababa, May 1, 2026 —Ustaz Jamal Bashir, founder of the “Kings of the Abay” YouTube channel, is calling for a serious reassessment of Egypt’s long-standing stance on the #AbayRiver. He argues that current policies fail to recognize the legitimate rights of upstream nations, especially Ethiopia, which contributes nearly 85% of the river’s water. In an exclusive interview with ENA, emal, who is also an advocate for the equitable utilization of the Abay River’s waters, said Egypt’s stance is rooted in outdated perceptions that fail to reflect present realities and the principle of equitable water utilization. “The current approach overlooks Ethiopia’s legitimate right to use its natural resources for development,” he said. He noted that historical agreements such as the 1929 and 1959 Nile treaties between Egypt and Sudan were concluded under colonial conditions without Ethiopia’s participation. According to him, relying on such agreements to limit Ethiopia’s access to fair water use lacks legal and moral justification. Jemal emphasized that Ethiopia’s position on the Abay is based on fair historical and legal grounds. He added that the progress of the Grand Ethiopian Renaissance Dam demonstrates the country’s commitment to achieving development while avoiding harm to downstream nations. “The GERD reflects Ethiopia’s rightful aspiration to utilize its resources responsibly,” he stated. He further stressed that external pressure would not deter Ethiopia’s development efforts but would instead reinforce its commitment to sovereignty and unity. “Ethiopia has the capacity to safeguard its interests and uphold its strategic choices,” he noted. Highlighting the river’s importance, he described the Abay, which originates from Lake Tana, as a critical resource for agriculture and national growth. He further noted that attempts to minimize its significance to Ethiopia are neither accurate nor objective. According to him, Ethiopia follows the principle of fair and equitable utilization of transboundary water resources, balancing its development needs with respect for other countries’ rights. He also called for a shift away from entrenched positions toward constructive dialogue based on mutual benefit. He also warned that instability in Sudan could disrupt regional balance and undermine cooperation among Nile Basin countries. Ethiopia is strengthening its role as a responsible regional actor by advancing development while promoting stability through dialogue and cooperation, he concluded.
Ireland Pledges Stronger Partnership with Ethiopia, Prioritizes Climate Action: Irish Ambassador
May 1, 2026 3320
Addis Ababa, May 1, 2026 — Ireland has reaffirmed its commitment to deepening bilateral cooperation with Ethiopia, placing climate action at the center of its development support,” the Irish Ambassador stated. Olivia Leslie, the Irish Ambassador to Ethiopia and Permanent Representative to the African Union, told ENA that Ireland has maintained a long-standing partnership with the Ethiopian government through programs focused on social protection and advancing the rights of women and girls. “We have worked for years in close partnership with Ethiopia, particularly in supporting vulnerable communities and promoting gender equality,” she said. She further explained that Ireland is expanding its climate-focused interventions across multiple regions of the country, including northern Ethiopia, with plans to extend activities to Somali and Afar regions, alongside ongoing work in Tigray on climate-smart agriculture. The ambassador also emphasized that gender considerations remain central to all climate initiatives. “We are ensuring that the needs of women and girls are reflected in the design of climate programs, whether implemented by government institutions, local organizations, or regional partners,” she stated. Leslie further added that Ireland collaborates with a wide range of partners, including the International Centre for Research in Agroforestry and the Ethiopian Agricultural Transformation Institute, as well as regional agricultural bureaus in Somali and Afar. Highlighting Ethiopia’s achievements, the ambassador praised the country’s leadership in climate action and renewable energy. “Ethiopia is showing really strong leadership in climate action. There is significant potential, particularly in renewable energy, and the government is actively working to harness it,” she said. She noted that Ethiopia has the capacity to translate its climate ambitions into concrete results, with the support of Ireland, the European Union, and other international partners. Looking ahead, Leslie said Ethiopia’s hosting of COP 32 next year will provide an important platform to advance both continental and global climate agendas. African countries must play a central role in climate negotiations, she stressed, adding, “Africa’s voice needs to be at the center of the COP process, given the continent’s vulnerability to climate change.” The ambassador also highlighted climate finance as a key issue, noting that funding must come from diverse sources, including governments and the private sector. She added that development partners should work to remove barriers that limit access to climate finance while supporting both mitigation and adaptation efforts. Reaffirming Ireland’s broader engagement, Leslie said the country will continue strengthening diplomatic, development, and economic ties with Ethiopia. “Ethiopia is a very important partner for Ireland, the European Union, and the wider international community. We want to deepen our cooperation, support the multilateral system, and build strong people-to-people connections,” she said.
Ethiopia Intensifies Diplomatic Engagements to Advance Trade, Investment, and Regional Leadership
Apr 30, 2026 4035
Addis Ababa, April 30, 2026 —Ethiopia has intensified its diplomatic engagements in recent weeks, reinforcing its position in trade, investment, and regional leadership through a series of high-level visits, bilateral agreements, and international forums, according to Nebiat Getachew, the Ministry of Foreign Affairs Spokesperson. Briefing the media on recent diplomatic activities, Ambassador Nebiat stated that Ethiopia has been undertaking coordinated diplomatic efforts that safeguard national interests while enhancing the country’s standing in regional, continental, and global affairs. He noted that leaders from Burundi, Liberia, South Sudan, and Mozambique paid official working visits to Ethiopia in recent weeks, during which they discussed strengthening bilateral ties and expanding cooperation with Prime Minister Abiy Ahmed. According to Nebiat, these visits resulted in multiple bilateral agreements and memoranda of understanding aimed at deepening cooperation in agriculture, food security, tourism, technology, and other strategic sectors. He added that visiting delegations also toured Ethiopia’s flagship national initiatives, including the Green Legacy program, the Fayda digital identity platform, and the country’s expanding digital transformation efforts, including artificial intelligence. Nebiat emphasized that Ethiopia showcased progress in food sovereignty, agricultural modernization, and homegrown development initiatives designed to strengthen productivity and economic resilience. Furthermore, he noted that Ethiopia hosted several senior international representatives during this period, including China’s Special Envoy for the Horn of Africa, as well as senior officials and foreign ministers from Portugal, the European Union, Austria, Bangladesh, the Czech Republic, and Sweden. “These engagements have enabled Ethiopia to clearly project its position on regional and global issues while strengthening diplomatic and economic partnerships,” Nebiat said. As part of its economic diplomacy, Ethiopia hosted the EU–Ethiopia Business Forum 2026 and a dedicated Ethiopia–Czech business forum, both aimed at expanding trade partnerships and attracting foreign investment. Foreign Minister Gedion Timothewos also conducted official visits to Sweden and Norway, where he held discussions with government officials and company executives on expanding cooperation in trade, investment, renewable energy, agro-processing, technology, and tourism. Nebiat reiterated that Ethiopia has continued to use diplomacy to unlock new opportunities in trade and investment, particularly in strategic sectors linked to economic transformation and private sector growth. On the continental front, he noted that Ethiopia has played an active leadership role in African peace and security, including its responsibilities as Chair of the African Union Peace and Security Council. He further stated that Ethiopia has been actively engaging member states on regional peace and security matters. According to Nebiat, Ethiopia’s recent bilateral and multilateral diplomatic engagements reflect a proactive, multidimensional foreign policy approach aimed at strengthening strategic partnerships, advancing national development priorities, and reinforcing the country’s voice in regional and global affairs.
AU-PSC Deliberates on the Future of Peace Operations Under Ethiopian Chairmanship
Apr 28, 2026 4937
Addis Ababa, April 28, 2026 —Under the chairmanship of Ethiopia, the African Union Peace and Security Council (AU-PSC) convened on Monday (April 27) to deliberate on the future of Peace Support Operations (PSOs). According to a social media post by the Ministry of Foreign Affairs, the deliberation focused on the future of PSOs in Africa. The session assessed the measures that need to be taken in light of the evolving international order and the changing peace and security landscape across the continent. In her remarks, Ambassador Hirut Zemene, Permanent Representative of Ethiopia to the AU and UN-ECA, commended the significant contributions that African PSOs have made over nearly three decades, noting their deployment across the continent, often under stringent financial and security conditions. She called for regular and sustained discussions on the subject to ensure that PSOs remain effective instruments for peace and stability in Africa, complementing political processes. The Council emphasized the importance of prioritizing preventive diplomacy and strengthening early-warning systems. The meeting concluded with the adoption of key decisions expected to guide Africa’s Peace Support Operations in the coming decades. Ethiopia has entered the final week of its chairmanship of the AU PSC. During the remaining period, it will steer discussions on the joint retreat between the PSC and APRM, as well as consideration of the report on the PSC’s visit to South Sudan later this week. The discussion was graced by El Ghassim Wane, former Special Representative of the UN Secretary-General and Head of MINUSMA, as well as Parfait Onanga Anyanga, Head of the United Nations Office to the African Union (UNOAU).
Ethiopia, Mozambique Strengthen Ties with New Cooperation Agreements
Apr 27, 2026 6745
Addis Ababa, April 27, 2026--Prime Abiy Ahmed on Monday hosted Daniel Francisco Chapo at the National Palace in Addis Ababa, marking the start of a high-level visit aimed at deepening relations between Ethiopia and Mozambique. During the visit, the two leaders held bilateral talks focused on expanding cooperation across strategic sectors. According to the Ethiopian Prime Minister, the discussions were “fruitful” and signaled the beginning of what he described as a long-term and practical partnership. The meeting also saw the signing of several Memoranda of Understanding (MOUs), intended to provide a framework for collaboration in key areas. While specific sectors were not detailed, both sides indicated that the agreements are expected to strengthen economic and diplomatic ties. In messages shared on social media, PM Abiy emphasized Ethiopia’s approach to international partnerships, highlighting mutual respect and long-term impact as guiding principles. He noted that Ethiopia aims to position itself as more than just a partner, but as a country offering sustained opportunities for growth and transformation. President Chapo’s visit comes amid broader efforts by African nations to enhance intra-continental cooperation, in line with ongoing initiatives to boost regional integration and shared economic development. The Ethiopian government expressed optimism that the visit would yield concrete outcomes and lay the groundwork for continued collaboration between the two countries.
Social
An error occurred while processing the template.
The following has evaluated to null or missing:
==> dynamicElement.element("dynamic-content")  [in template "20097#20123#2475490" at line 100, column 78]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign imageJSONString = dynamicElem...  [in template "20097#20123#2475490" at line 100, column 51]
----
1<#if entries?has_content> 
2	<#assign DLFileEntry=serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService")/> 
3	<#assign assetCategoryLocalService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetCategoryLocalService")/> 
4	<#assign renderItems = true> 
5	<#if portletPreferences["ena_alert_filter"]?has_content &&  
6	  			 portletPreferences["ena_alert_filter"]?size = 1 && 
7		  		 portletPreferences["ena_alert_filter"]?first="true"> 
8		<#assign anyLiveOrBreaking = false> 
9		<#list entries as curEntry> 
10		  <#assign assetRenderer=curEntry.getAssetRenderer() 
11	  	         article=assetRenderer.getArticle()/> 
12			<#assign url=themeDisplay.getURLCurrent()?split("?")?first/> 
13	    <#assign urlTitle=url?split("/")?last/> 
14		  <#assign categories = assetCategoryLocalService.getCategories("com.liferay.journal.model.JournalArticle", article.resourcePrimKey)/> 
15		  <#if categories?has_content> 
16	      <#list categories as curCategory> 
17			    <#assign curDescription = curCategory.getDescription("en_US")?replace("<p>","")?replace("</p>","")?trim/> 
18          <#if curDescription == "live"> 
19				    <#assign isLive = true/> 
20						<#assign isBreaking = false/> 
21				  <#elseif curDescription == "breaking"> 
22				    <#assign isBreaking = true/> 
23						<#assign isLive = false/> 
24				  <#else> 
25				 	  <#assign isBreaking = false/> 
26				 	  <#assign isLive = false/> 
27				  </#if> 
28				  <#if article.reviewDate?has_content> 
29					  <#if (article.reviewDate?long - .now?long) lt 0> 
30        			<#assign isBreaking = false/> 
31        	    <#assign isLive = false/> 
32        	  </#if> 
33          </#if> 
34					<#if article.urlTitle == urlTitle> 
35				   <#assign isBreaking = false/> 
36				   <#assign isLive = false/> 
37				  </#if> 
38          <#if isBreaking || isLive> 
39        	  <#assign anyLiveOrBreaking = true> 
40          </#if> 
41			  </#list> 
42			</#if> 
43	  </#list> 
44		<#if !anyLiveOrBreaking> 
45			<#assign renderItems = false> 
46		</#if> 
47	</#if>	 
48	<#if renderItems> 
49	<div class="ena_display_items"> 
50	  <#list entries as curEntry> 
51  		<#assign assetRenderer=curEntry.getAssetRenderer() 
52	  	         item=assetRenderer.getArticle()/> 
53		  <#assign lang=layout.getGroup().friendlyURL?replace("/","")/> 
54			<#assign groupId=themeDisplay.getLayout().getGroupId()/> 
55			<#assign url=themeDisplay.getURLCurrent()?split("?")?first/> 
56	    <#assign urlTitle=url?split("/")?last/> 
57			<#assign isLive = false/>	 
58			<#assign isBreaking = false/>	 
59			<#assign article = item/>						 
60			<#assign categories = assetCategoryLocalService.getCategories("com.liferay.journal.model.JournalArticle", article.resourcePrimKey)/> 
61		  <#if categories?has_content> 
62	     <#list categories as curCategory> 
63			  <#assign curDescription = curCategory.getDescription("en_US")?replace("<p>","")?replace("</p>","")?trim/> 
64        <#if curDescription == "live"> 
65				 <#assign isLive = true/> 
66				<#elseif curDescription == "breaking"> 
67				 <#assign isBreaking = true/> 
68				</#if> 
69				<#if article.reviewDate?has_content> 
70				 <#if (article.reviewDate?long - .now?long) lt 0> 
71				  <#assign isBreaking = false/> 
72					<#assign isLive = false/> 
73				 </#if> 
74				</#if> 
75				<#if article.urlTitle == urlTitle> 
76				 <#assign isBreaking = false/> 
77				 <#assign isLive = false/> 
78				</#if> 
79			 </#list> 
80			</#if> 
81			<#if portletPreferences["ena_prune_html"]?has_content &&  
82	  			 portletPreferences["ena_prune_html"]?size = 1 && 
83		  		 portletPreferences["ena_prune_html"]?first="false"> 
84		    <#assign prune=0/> 
85		  <#else> 
86			  <#assign prune=1/> 
87		  </#if> 
88			<#if portletPreferences["ena_alert_filter"]?has_content &&  
89	  			 portletPreferences["ena_alert_filter"]?size = 1 && 
90		  		 portletPreferences["ena_alert_filter"]?first="true" && 
91					 !(isBreaking || isLive)> 
92		  <#else>			   
93  		<div class="ena_display_item"> 
94	  		<div class="ena_display_item_image_container"> 
95		  		<a href="/web/${lang}/w/${item.urlTitle}"> 
96			  	  <div class="ena_display_item_image_box"> 
97				  	  <div class="ena_display_item_image_wrap"> 
98					  	  <#list item.document.rootElement.elements() as dynamicElement> 
99				          <#if dynamicElement.attributeValue("field-reference") == "image"> 
100					          <#assign imageJSONString = dynamicElement.element("dynamic-content").getText()/> 
101				            <#assign imageTitle = jsonFactoryUtil.createJSONObject(imageJSONString).getString("title")/> 
102				            <#assign imageEntry = jsonFactoryUtil.createJSONObject(imageJSONString).getString("fileEntryId")/> 
103		  							<#if portletPreferences["ena_image_size"]?has_content && 
104			  								 portletPreferences["ena_image_size"]?size = 1 && 
105			    						   portletPreferences["ena_image_size"]?first="large"> 
106				              <#if imageTitle?has_content> 
107					              <img class="ena_display_item_image ena_display_item_image_large"  
108							               src="/o/adaptive-media/image/${imageEntry}/Preview-1000x0/${imageTitle}" /> 
109	  		  	          <#else> 
110		  		  	          <img class="ena_display_item_image ena_display_item_image_large"  
111						  			    		 src="/documents/d/global/ena_image_placeholder_large" />										 
112  			 		          </#if>		 
113	  							  <#else> 
114		  		  			  	<#if imageTitle?has_content> 
115			  		            <img class="ena_display_item_image ena_display_item_image_small"  
116				  		  	           src="/o/adaptive-media/image/${imageEntry}/Thumbnail-300x300/${imageTitle}" /> 
117	  			            <#else> 
118		  			            <img class="ena_display_item_image ena_display_item_image_small"  
119							  	  	  		 src="/documents/d/global/ena_image_placeholder_small" /> 
120			 		            </#if>	 
121								    </#if> 
122  		  					</#if> 
123	  			        <#if dynamicElement.attributeValue("field-reference") == "video"> 
124		  			        <!--img class="ena_display_item_video_icon" src="/documents/d/global/ena_icon_play_light"/--> 
125										<div class="ena_display_item_video_icon_container"> 
126										<div class="ena_display_item_video_icon_box"> 
127										<div class="ena_display_item_video_icon_wrap"> 
128										<div class="ena_display_item_video_icon"> 
129										 <svg preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 440 440"> 
130	                    <circle cx="50%" cy="50%" r="250" fill="white" /> 
131											<path fill="currentColor" d="M209.457 1.10686Q212.047 0.990314 214.639 0.935254Q217.23 0.880195 219.823 0.886654Q222.415 0.893113 225.007 0.961086Q227.598 1.02906 230.187 1.15851Q232.776 1.28796 235.362 1.47881Q237.947 1.66966 240.527 1.92181Q243.107 2.17396 245.681 2.48726Q248.254 2.80056 250.819 3.17484Q253.384 3.54912 255.94 3.98417Q258.496 4.41921 261.04 4.91478Q263.585 5.41035 266.117 5.96616Q268.649 6.52197 271.167 7.13771Q273.685 7.75345 276.188 8.42877Q278.691 9.10409 281.177 9.83862Q283.663 10.5731 286.132 11.3665Q288.599 12.1598 291.048 13.0114Q293.497 13.8631 295.924 14.7726Q298.352 15.6821 300.757 16.649Q303.162 17.6158 305.544 18.6395Q307.926 19.6632 310.283 20.7431Q312.639 21.823 314.97 22.9585Q317.3 24.094 319.603 25.2845Q321.906 26.475 324.18 27.7199Q326.454 28.9647 328.698 30.2631Q330.941 31.5615 333.154 32.9128Q335.366 34.2641 337.546 35.6675Q339.725 37.071 341.871 38.5257Q344.017 39.9805 346.127 41.4857Q348.238 42.991 350.312 44.5459Q352.387 46.1008 354.423 47.7045Q356.46 49.3082 358.458 50.9598Q360.457 52.6114 362.415 54.3099Q364.434 56.0556 366.41 57.8508Q368.385 59.6459 370.316 61.4895Q372.247 63.333 374.131 65.2238Q376.015 67.1145 377.852 69.0514Q379.689 70.9883 381.477 72.97Q383.265 74.9518 385.004 76.9772Q386.743 79.0026 388.431 81.0704Q390.119 83.1383 391.755 85.2473Q393.392 87.3564 394.975 89.5053Q396.559 91.6542 398.089 93.8416Q399.618 96.0291 401.094 98.2537Q402.569 100.478 403.989 102.739Q405.408 104.999 406.772 107.294Q408.135 109.589 409.441 111.917Q410.747 114.245 411.995 116.605Q413.243 118.965 414.432 121.355Q415.621 123.744 416.751 126.163Q417.88 128.582 418.95 131.027Q420.019 133.473 421.028 135.945Q422.036 138.416 422.983 140.912Q423.93 143.408 424.815 145.926Q425.7 148.445 426.522 150.984Q427.344 153.524 428.104 156.083Q428.863 158.642 429.558 161.219Q430.254 163.796 430.885 166.39Q431.517 168.983 432.084 171.592Q432.651 174.2 433.153 176.822Q433.655 179.444 434.093 182.077Q434.53 184.71 434.902 187.354Q435.274 189.997 435.58 192.649Q435.886 195.3 436.127 197.959Q436.367 200.617 436.542 203.281Q436.718 205.92 436.83 208.563Q436.942 211.206 436.988 213.851Q437.035 216.496 437.016 219.141Q436.998 221.786 436.914 224.43Q436.831 227.074 436.682 229.715Q436.534 232.356 436.321 234.993Q436.107 237.63 435.829 240.26Q435.551 242.891 435.209 245.514Q434.866 248.137 434.459 250.75Q434.052 253.364 433.581 255.967Q433.11 258.57 432.576 261.161Q432.041 263.751 431.442 266.328Q430.844 268.905 430.182 271.466Q429.521 274.027 428.797 276.571Q428.073 279.115 427.286 281.641Q426.499 284.167 425.651 286.672Q424.803 289.178 423.893 291.662Q422.983 294.146 422.013 296.606Q421.042 299.067 420.012 301.503Q418.981 303.94 417.891 306.35Q416.801 308.76 415.652 311.142Q414.502 313.525 413.295 315.879Q412.088 318.232 410.823 320.556Q409.558 322.879 408.237 325.171Q406.915 327.462 405.538 329.72Q404.16 331.979 402.728 334.202Q401.295 336.426 399.809 338.614Q398.322 340.802 396.782 342.953Q395.242 345.104 393.649 347.216Q392.057 349.328 390.413 351.4Q388.769 353.473 387.075 355.504Q385.381 357.536 383.637 359.525Q382.004 361.394 380.329 363.225Q378.654 365.056 376.937 366.849Q375.221 368.641 373.464 370.394Q371.708 372.148 369.912 373.861Q368.116 375.573 366.282 377.245Q364.447 378.917 362.576 380.546Q360.704 382.176 358.795 383.762Q356.887 385.349 354.943 386.892Q352.999 388.435 351.021 389.933Q349.042 391.431 347.03 392.884Q345.018 394.337 342.974 395.744Q340.929 397.151 338.853 398.511Q336.778 399.871 334.671 401.184Q332.565 402.497 330.43 403.761Q328.294 405.026 326.13 406.241Q323.967 407.457 321.776 408.623Q319.585 409.789 317.369 410.905Q315.152 412.022 312.911 413.087Q310.669 414.153 308.404 415.167Q306.139 416.181 303.852 417.144Q301.564 418.106 299.256 419.017Q296.947 419.927 294.618 420.785Q292.289 421.643 289.941 422.447Q287.594 423.252 285.228 424.003Q282.863 424.754 280.481 425.452Q278.099 426.149 275.702 426.792Q273.305 427.435 270.894 428.023Q268.483 428.611 266.059 429.145Q263.636 429.678 261.2 430.156Q258.765 430.635 256.32 431.057Q253.874 431.48 251.42 431.848Q248.965 432.215 246.503 432.526C240.828 433.276 235.026 433.491 229.313 433.869Q226.715 433.987 224.115 434.044Q221.515 434.1 218.914 434.095Q216.313 434.089 213.713 434.021Q211.113 433.953 208.516 433.824Q205.918 433.694 203.325 433.502Q200.731 433.31 198.143 433.057Q195.554 432.803 192.973 432.487Q190.391 432.172 187.818 431.795Q185.245 431.418 182.681 430.98Q180.118 430.542 177.565 430.042Q175.013 429.543 172.473 428.983Q169.933 428.423 167.408 427.802Q164.882 427.181 162.372 426.501Q159.862 425.82 157.369 425.079Q154.876 424.339 152.401 423.539Q149.926 422.739 147.471 421.881Q145.017 421.022 142.583 420.105Q140.149 419.188 137.738 418.213Q135.327 417.238 132.94 416.206Q130.553 415.174 128.191 414.085Q125.829 412.996 123.494 411.851Q121.158 410.706 118.851 409.506Q116.544 408.306 114.266 407.051Q111.988 405.796 109.741 404.486Q107.494 403.177 105.279 401.815Q103.063 400.452 100.881 399.038Q98.6988 397.623 96.5511 396.156Q94.4033 394.689 92.2911 393.172Q90.179 391.655 88.1036 390.087Q86.0283 388.52 83.991 386.903Q81.9537 385.286 79.9556 383.622Q77.9574 381.957 75.9996 380.245Q73.9875 378.493 72.0193 376.691Q70.0511 374.889 68.1282 373.039Q66.2052 371.189 64.3286 369.293Q62.4519 367.396 60.6228 365.453Q58.7937 363.51 57.0132 361.523Q55.2327 359.536 53.502 357.505Q51.7712 355.474 50.0912 353.401Q48.4112 351.328 46.783 349.214Q45.1548 347.1 43.5794 344.946Q42.004 342.793 40.4824 340.601Q38.9608 338.409 37.4939 336.18Q36.0269 333.951 34.6156 331.687Q33.2043 329.422 31.8494 327.123Q30.4945 324.825 29.1969 322.493Q27.8994 320.162 26.6599 317.799Q25.4204 315.436 24.2397 313.043Q23.0591 310.65 21.938 308.229Q20.8169 305.807 19.7561 303.359Q18.6952 300.911 17.6953 298.437Q16.6954 295.963 15.7569 293.465Q14.8185 290.967 13.9422 288.447Q13.0659 285.927 12.2522 283.385Q11.4384 280.844 10.6879 278.284Q9.93728 275.723 9.25029 273.145Q8.56329 270.566 7.94029 267.972Q7.3173 265.377 6.75868 262.768Q6.20007 260.159 5.70619 257.537Q5.21231 254.915 4.78345 252.281Q4.3546 249.647 3.99103 247.004Q3.62747 244.361 3.32942 241.709Q3.03137 239.057 2.79902 236.399Q2.56667 233.741 2.40016 231.078Q2.231 228.393 2.12879 225.704Q2.02658 223.015 1.99139 220.324Q1.9562 217.634 1.98805 214.943Q2.0199 212.252 2.11878 209.563Q2.21765 206.874 2.38349 204.189Q2.54932 201.503 2.78201 198.822Q3.0147 196.141 3.3141 193.467Q3.61351 190.793 3.97944 188.127Q4.34537 185.462 4.7776 182.806Q5.20983 180.15 5.70809 177.506Q6.20635 174.861 6.77033 172.23Q7.33432 169.599 7.96367 166.983Q8.59303 164.367 9.28736 161.767Q9.9817 159.168 10.7406 156.586Q11.4995 154.004 12.3224 151.442Q13.1454 148.881 14.0319 146.34Q14.9185 143.799 15.868 141.282Q16.8176 138.764 17.8296 136.271Q18.8415 133.778 19.9153 131.31Q20.9891 128.843 22.124 126.403Q23.2589 123.963 24.4543 121.553Q25.6496 119.142 26.9047 116.762Q28.1597 114.382 29.4736 112.033Q30.7876 109.685 32.1596 107.37Q33.5316 105.056 34.9609 102.776Q36.3902 100.496 37.8758 98.2525Q39.3615 96.009 40.9025 93.8032Q42.4436 91.5974 44.0391 89.4306Q45.6346 87.2639 47.2837 85.1376Q48.9327 83.0113 50.6342 80.9267Q52.3356 78.8421 54.0885 76.8006Q55.8414 74.759 57.6446 72.7618C96.5763 28.9052 151.319 4.54737 209.457 1.10686ZM223.637 404.464Q228.225 404.362 232.802 404.035Q237.38 403.708 241.936 403.157Q246.492 402.606 251.015 401.832Q255.539 401.058 260.018 400.063Q264.498 399.068 268.924 397.855Q273.35 396.642 277.711 395.213Q282.072 393.784 286.358 392.142Q290.643 390.501 294.843 388.652Q299.043 386.802 303.147 384.749Q307.251 382.696 311.25 380.444Q315.248 378.191 319.132 375.746Q323.015 373.3 326.773 370.667Q330.532 368.034 334.157 365.22Q337.782 362.406 341.264 359.417Q344.747 356.428 348.078 353.272Q351.41 350.117 354.583 346.801Q357.756 343.485 360.762 340.018Q363.769 336.551 366.602 332.941Q369.434 329.33 372.087 325.585Q374.739 321.84 377.204 317.969Q379.669 314.099 381.942 310.112Q384.214 306.125 386.289 302.031Q388.363 297.937 390.234 293.747Q392.104 289.556 393.768 285.279Q395.431 281.002 396.882 276.649Q398.333 272.295 399.569 267.875Q400.805 263.456 401.823 258.981Q402.841 254.506 403.638 249.987Q404.435 245.467 405.009 240.914Q405.583 236.361 405.934 231.786Q406.284 227.21 406.409 222.622Q406.535 218.035 406.435 213.447Q406.335 208.859 406.011 204.281Q405.686 199.704 405.137 195.148Q404.588 190.591 403.817 186.068Q403.045 181.544 402.052 177.063Q401.06 172.583 399.848 168.156Q398.637 163.73 397.21 159.368Q395.783 155.007 394.144 150.72Q392.505 146.434 390.658 142.233Q388.81 138.032 386.759 133.927Q384.708 129.822 382.458 125.822Q380.208 121.823 377.764 117.938Q375.32 114.054 372.689 110.294Q370.058 106.534 367.245 102.908Q364.433 99.2815 361.446 95.7975Q358.459 92.3136 355.305 88.9803Q352.15 85.647 348.836 82.4725Q345.523 79.298 342.057 76.2899Q338.591 73.2817 334.982 70.4472Q331.373 67.6127 327.629 64.9586Q323.885 62.3046 320.016 59.8373Q316.146 57.3701 312.161 55.0956Q308.175 52.8212 304.082 50.745Q299.99 48.6688 295.8 46.7958Q291.61 44.9229 287.334 43.2577Q283.058 41.5925 278.705 40.139Q274.352 38.6856 269.933 37.4475Q265.514 36.2093 261.04 35.1894Q256.565 34.1695 252.046 33.3703Q247.527 32.5711 242.975 31.9945Q238.422 31.4179 233.846 31.0654Q229.271 30.7128 224.683 30.5851Q220.096 30.4574 215.508 30.5549Q210.917 30.6525 206.336 30.9752Q201.756 31.298 197.196 31.8452Q192.637 32.3924 188.11 33.1628Q183.583 33.9331 179.1 34.9247Q174.616 35.9163 170.186 37.1268Q165.757 38.3373 161.392 39.7637Q157.027 41.1902 152.738 42.8291Q148.448 44.4681 144.244 46.3156Q140.04 48.1631 135.932 50.2148Q131.824 52.2664 127.821 54.5172Q123.819 56.7681 119.931 59.2126Q116.044 61.6572 112.282 64.2896Q108.519 66.922 104.89 69.7359Q101.261 72.5498 97.7751 75.5384Q94.2888 78.5271 90.9534 81.6832Q87.6179 84.8394 84.4414 88.1554Q81.2649 91.4715 78.255 94.9395Q75.2451 98.4075 72.409 102.019Q69.5729 105.631 66.9175 109.377Q64.2621 113.123 61.7938 116.996Q59.3255 120.868 57.0503 124.856Q54.775 128.845 52.6982 132.941Q50.6215 137.036 48.7483 141.229Q46.875 145.421 45.2099 149.701Q43.5447 153.98 42.0915 158.336Q40.6384 162.692 39.4008 167.114Q38.1633 171.536 37.1442 176.014Q36.1252 180.491 35.3272 185.014Q34.5291 189.536 33.954 194.091Q33.3789 198.647 33.0281 203.226Q32.6773 207.805 32.5516 212.395Q32.426 216.985 32.5258 221.576Q32.6256 226.167 32.9506 230.747Q33.2757 235.328 33.8251 239.887Q34.3746 244.446 35.1472 248.972Q35.9198 253.499 36.9136 257.982Q37.9074 262.465 39.1201 266.894Q40.3327 271.323 41.7613 275.687Q43.1899 280.052 44.831 284.34Q46.4721 288.629 48.3217 292.832Q50.1713 297.035 52.2249 301.142Q54.2786 305.249 56.5314 309.251Q58.7842 313.252 61.2306 317.138Q63.6771 321.024 66.3114 324.786Q68.9456 328.547 71.7613 332.174Q74.577 335.802 77.5674 339.287Q80.5577 342.771 83.7155 346.105Q86.8733 349.439 90.1909 352.614Q93.5086 355.789 96.978 358.797Q100.447 361.805 104.06 364.64Q107.673 367.474 111.421 370.128Q115.169 372.781 119.042 375.247Q122.916 377.714 126.905 379.987Q130.895 382.26 134.992 384.335Q139.088 386.41 143.282 388.281Q147.475 390.152 151.756 391.815Q156.036 393.478 160.393 394.929Q164.749 396.38 169.172 397.616Q173.595 398.851 178.073 399.868Q182.551 400.885 187.073 401.681Q191.596 402.476 196.152 403.049Q200.708 403.622 205.287 403.971Q209.865 404.319 214.456 404.443Q219.046 404.566 223.637 404.464Z"/> 
132	                    <path fill="currentColor" d="M176.661 135.058C177.437 135.258 177.964 135.693 178.605 136.149C203.569 153.926 228.205 172.211 252.981 190.251L277.339 207.989C281.568 211.069 286.282 214.052 290.153 217.56C284.595 222.076 278.592 226.164 272.801 230.38L242.441 252.46C230.129 261.665 217.574 270.583 205.145 279.633C195.77 286.46 186.499 293.545 176.92 300.076L176.671 299.888C175.991 297.081 176.471 289.087 176.47 285.773L176.467 250.019L176.464 173.865L176.449 149.643C176.448 144.819 176.254 139.865 176.661 135.058Z"/> 
133                     </svg> 
134										</div> 
135										</div> 
136										</div> 
137										</div> 
138										<#if isLive> 
139											<div class="ena_display_item_video_live_container"> 
140										  <div class="ena_display_item_video_live_box"> 
141										  <div class="ena_display_item_video_live_wrap"> 
142											 <div class="ena_display_item_video_live"></div> 
143											</div> 
144										  </div> 
145										  </div> 
146										</#if> 
147			  	        </#if> 
148									<#if dynamicElement.attributeValue("field-reference") == "documentpreview"> 
149										<#assign uploadJSONString = dynamicElement.element("dynamic-content").getText()/> 
150			              <#assign uploadTitle = jsonFactoryUtil.createJSONObject(uploadJSONString).getString("title")/> 
151		                <#assign uploadEntry = jsonFactoryUtil.createJSONObject(uploadJSONString).getString("fileEntryId")/> 
152			              <#assign fileEntry = DLFileEntry.fetchDLFileEntry(uploadEntry?number)/> 
153			              <#assign gid = fileEntry.groupId /> 
154			              <#assign fid = fileEntry.folderId /> 
155			              <#assign slash = "/" /> 
156                    <#assign path = "/documents/${gid}/${fid}/" /> 
157                    <#assign url = themeDisplay.getPortalURL() /> 
158			              <#assign file = "${url}${path}${fileEntry.getTitle()?url('UTF-8')}${slash}${fileEntry.getUuid()}"/> 
159										<picture> 
160			                <img class="ena_display_item_video ena_display_item_image ena_display_item_video_thumbnail ena_display_selector" 
161				                src="${file}?documentThumbnail=1"/> 
162										</picture> 
163								  </#if> 
164  			        </#list> 
165	  			  	</div> 
166  		  		</div> 
167	  			</a> 
168  			</div> 
169	  		<div class="ena_display_item_text_container"> 
170					<#if isBreaking> 
171						<div class="ena_display_item_breaking_container"> 
172					  <div class="ena_display_item_breaking_box"> 
173					  <div class="ena_display_item_breaking_wrap"> 
174						 <div class="ena_display_item_breaking"></div> 
175						</div> 
176					  </div> 
177					  </div> 
178					</#if> 
179		  		<a href="/web/${lang}/w/${item.urlTitle}"> 
180			      <div class="ena_display_item_title"> 
181				      ${curEntry.getTitle(locale)}			  	 
182			      </div> 
183  			  </a> 
184	  			<div class="ena_display_item_date"> 
185		  		  ${curEntry.publishDate?date} <span class="ena_display_item_viewcount">${curEntry.viewCount}</span> 
186			    </div> 
187  				<#if prune==1><a class="ena_display_item_content_link" href="/web/${lang}/w/${item.urlTitle}"></#if> 
188	  		    <div class="ena_display_item_content"> 
189		  		    <#list item.document.rootElement.elements() as dynamicElement> 
190			  	      <#if dynamicElement.attributeValue("field-reference") == "content"> 
191				  				<#if prune==0> 
192					  			  ${dynamicElement.element("dynamic-content").getText()} 
193						  		<#else> 
194							  		${htmlUtil.stripHtml(dynamicElement.element("dynamic-content").getText())?replace("&nbsp;", " ")} 
195								  </#if> 
196  							</#if> 
197	  		      </#list> 
198		  	    </div> 
199		  	  <#if prune==1></a></#if> 
200		  	</div>			 
201		  </div> 
202		  </#if> 
203	  </#list> 
204  </div> 
205	</#if> 
206</#if> 
Economy
Bahir Dar Undergoes Tourism Revolution as Mega Investments Take Shape: Deputy PM
May 4, 2026 756
Addis Ababa, May 4, 2026 —Bahir Dar, the Amhara regional capital, is entering a new phase of tourism-led transformation as major investments and flagship developments begin reshaping the city’s economic and cultural landscape, Deputy Prime Minister Temesgen Tiruneh said. Speaking at the official launch of the Four Points by Sheraton Tana Hotel, Temesgen described the 3.3 billion Birr project as a major milestone in Bahir Dar’s ambition to become one of Ethiopia’s leading tourism destinations. The hotel, which will be developed by MIDROC Investment Group on the historic site of the former Tana Hotel, is expected to be completed within 18 months. “This major project marks a significant step forward for the rise of Bahir Dar and our country as a tourism destination, while also contributing to economic recovery,” Temesgen said.   He noted that the investment reflects growing confidence from the private sector and praised MIDROC for its continued engagement in key sectors such as agriculture, mining, and tourism. “The company’s proactive role in filling critical investment gaps during challenging times serves as a strong example,” he added. Temesgen emphasized that the project aligns with Ethiopia’s broader efforts to build a resilient and sustainable economy through tourism development and private-sector participation. MIDROC Investment Group Chief Executive Officer Jamal Ahmed reaffirmed the company’s commitment to the project, saying the government’s improving investment climate has created favorable conditions for expanding tourism infrastructure. “We are taking advantage of the favorable environment created by the government to contribute to the revival of the tourism sector,” Jamal said. He added that the hotel will meet international standards and be delivered on schedule.   The new hotel will be built on 32,440 square meters of land and will feature 120 modern guest rooms, four international restaurants, a conference hall capable of hosting more than 1,000 guests, and leisure facilities including a swimming pool. Alongside the hotel launch, the Deputy Prime Minister also inaugurated the Felege Ghion Eco Resort, describing it as another major step in strengthening Bahir Dar’s tourism appeal. “Lake Tana is an inexhaustible source of development and a beacon of beauty that will never fade,” Temesgen said. He highlighted Bahir Dar’s unique geographic significance—where Lake Tana meets the Abay River (Blue Nile)—describing the city as a destination capable of refreshing “the human spirit, body, and soul.” According to Temesgen, tourism projects such as the Gorgora Eco Resort and the newly inaugurated Felege Ghion Eco Resort are helping elevate the region’s profile both locally and internationally. Developed under the government’s Gebeta Le Hager Initiative, the eco-resort includes entertainment facilities, retail spaces, an amphitheater, and riverfront infrastructure designed to boost tourism activity and create economic opportunities.   “It is a resort that strengthens the local tourism industry while adding a new layer of beauty and growth to the city,” he said. Temesgen said the government remains committed to developing tourism as a strategic economic sector and urged investors who have already secured land in Bahir Dar to begin implementation without delay. Reflecting on the city’s future, he described Bahir Dar as a place where history and modern development intersect. “Hundreds of years have passed since history began to be written in this area. Today, history is moving forward,” he said. During his visit, the Deputy Prime Minister also toured several major infrastructure projects, including the Bahir Dar Stadium, a new airport terminal, the regional Supreme Court, and ongoing corridor development projects. “We have confirmed that our path is right and our destination is certain,” Temesgen said. “We will not rest until Bahir Dar becomes a cradle of civilization.”
Macroeconomic Reforms Lift Ethiopia’s Growth, Ease Inflation: Finance Minister
May 4, 2026 601
Addis Ababa, May 4, 2026 —Ethiopia’s ongoing macroeconomic reform program is delivering encouraging economic results, with stronger-than-expected growth and easing inflation, Finance Minister Ahmed Shide told lawmakers on Monday. Presenting the Ministry of Finance’s nine-month performance report to the House of People’s Representatives (HPR)’s Standing Committee on Planning, Budget and Finance, the misnister said reforms introduced since the 2017 Ethiopian fiscal year have begun producing measurable improvements across key economic indicators. “Since the implementation of the inclusive macroeconomic reform program, several encouraging economic outcomes have been registered,” the minister told members of parliament. According to Minister Ahmed, Ethiopia’s economy outperformed earlier forecasts, expanding by 9.2 percent, compared with the government’s initial projection of 8.4 percent.   He said the government expects growth to accelerate further to 10.2 percent in the 2018 Ethiopian fiscal year if reform efforts continue, potentially positioning Ethiopia among Africa’s fastest-growing economies. The minister said the government is also introducing additional measures this fiscal year to strengthen the reform agenda. “In the current fiscal year, a series of reform measures are being implemented to strengthen the effectiveness of the reform,” he said. Inflation, one of Ethiopia’s most pressing economic challenges in recent years — has also shown signs of easing, according to the minister. Ahmed said inflation fell to single digits for the first time in December, reaching 9.7 percent, before declining further to 9.4 percent in March following a prolonged period of price pressures. He attributed the improvement to tighter fiscal and monetary policies, combined with productivity gains. “The main reason for this success is the implementation of strict fiscal and monetary policies, supported by increased productivity under a comprehensive reform framework,” he said. However, lawmakers urged caution and stressed the need to sustain the momentum. Desalegn Wedaje, chairperson of the Planning, Budget and Finance Standing Committee of the HPR, said efforts should continue to strengthen domestic revenue generation, narrow the budget deficit, and maintain inflation controls.   He also described the government’s revenue and expenditure performance over the past nine months as encouraging but called for stronger measures to ensure continued progress. Desalegn further emphasized the need to accelerate debt restructuring efforts and deepen cooperation with development partners to support Ethiopia’s broader economic reform agenda.
Made In Ethiopia Movement Reshaping Nation's Economic Landscape: Ethiopian PMO
May 4, 2026 794
Addis Ababa, May 4, 2026 —The Made In Ethiopia national movement is reshaping the nation's economic landscape by strategically resolving deep rooted and widespread structural bottlenecks, according to Office of the Prime Minister (PMO). In its newsletter, the office noted that historic journey, anchored in integrated leadership and policy reforms, has sustained the competitiveness of the manufacturing sector and propelled it toward a new peak of productivity. By projecting raw material supplies from 29 million to 76 million tons averaging 15 million tons annually the movement has established a formidable foundation for an industrial renaissance. This progress is further reinforced by monumental infrastructure investments, including the commissioning of 3.4 GW of electric power for new investments over the past four years and the transfer of over 25,728 hectares of developed land to investors within just nine months of 2018. Financial empowerment has also reached unprecedented levels, with credit for small and medium industries projecting from 8.1 billion to 50 billion ETB (Annual growth of 12 billion ETB), while large scale manufacturers saw financing incremental from 52 billion to 262 billion ETB (Annual growth of 55 Billion ETB).   Supported by macroeconomic reforms, 2.28 billion USD in foreign currency was channeled to major producers, driving 14 percent annual growth in forex access and boosting average capacity utilization from 47 percent to 67 percent. Consequently, the sector’s annual growth rate accelerated from 4.8 percent in 2022 to 10.7 percent in 2025, pushing manufacturing output to 195.4 billion ETB. As evidenced by World Bank data showing an 8.4 percent value added increase and 433.8 million USD in export earnings, Ethiopia is tangibly asserting its industrial sovereignty and anchoring its journey toward shared prosperity on an unshakeable foundation. Manufacturing export earnings rose from 358 million USD in 2014 to 433.8 million USD in 2018, while import substitution saved over 4.85 billion USD in foreign currency during 2018's first nine months. This boosted the local market share from 30 percent to 46 percent. Diplomatic gains like joining BRICS and macroeconomic reforms helped attract over 2,800 investments in four years. Furthermore, the sector flourished by establishing 18,000+ small and medium industries and reviving 993 closed factories. Made in Ethiopia 2026: By raising public awareness and promoting a society that takes pride in domestic products, Made in Ethiopia is actively working to attract new investors, enhance the exchange of knowledge and technology, and expand market linkages for manufacturing industries. The 2026 Made in Ethiopia Expo, which carries large-scale objectives, differs from the previous two editions by hosting a significantly higher number of industries, participants, and events. Regarding international participation, it is a historic occasion that has grown in both volume and diversity compared to last year, with foreign entities heavily integrating and showcasing their latest technologies.
Ethiopian Airlines Receives Best Airline in Africa 2026 APEX Passenger Choice Award
May 4, 2026 1502
Addis Ababa, 4 May 2026 -- Ethiopian Airlines has received Best Airline in Africa 2026 APEX Passenger Choice Awards, a recognition that reflects the confidence and loyalty of passengers who continue to choose the airline across its global network. The award highlights Ethiopian Airlines’ steady focus on delivering a smooth, comfortable, and dependable travel experience, from the moment passengers book their flights to the time they reach their destinations. Consistently strong service, onboard comfort, and operational reliability have all played a role in meeting the changing expectations of today’s travelers. The APEX Passenger Choice Awards are based on independently verified customer feedback, with results shaped entirely by real passenger experiences. This makes the recognition a genuine vote of confidence from travelers themselves. Ethiopian Airlines’ repeated recognition by APEX reflects its long‑term commitment to service quality and operational excellence. Commenting on the award, Mr. Mesfin Tasew, Group Chief Executive Officer of Ethiopian Airlines, said: “Receiving this recognition from our passengers makes it truly special. It reflects the dedication and teamwork of our staff across the entire network. Being named Best Airline in Africa motivates us to keep raising our standards and delivering an experience our customers can trust and enjoy.” APEX Group CEO Dr. Joe Leader on his part said: “Ethiopian Airlines earning the 2026 APEX Best Airline in Africa award reflects the voice of verified passengers at scale. With more than one million verified flight ratings collected through TripIt across more than 600 airlines worldwide, APEX recognizes airlines through the most transparent awards methodology in the industry. Ethiopian Airlines continues to demonstrate leadership in African aviation through passenger experience excellence, operational commitment, and a standard of service that resonates with travelers across the continent and beyond.” Looking ahead, Ethiopian Airlines remains focused on the future, with continued investments in modern aircraft, digital innovation, and service improvements across its expanding global network. Guided by a strong vision and a people‑centered approach, the airline continues to strengthen its role as a leader in African aviation while growing its presence on the international stage.
Videos
Technology
ESSS Foundation for Ethiopia's Efforts to Build Scientific Community: former DPM, Society Patron
May 2, 2026 2165
Addis Ababa, May 2, 2026 —The Ethiopian Space Science Society (ESSS) has laid the foundation for Ethiopia's efforts to build a scientific community, according to Demeke Mekonnen, former Deputy Prime Minister and patron of the Society. The 21st General Assembly of the Ethiopian Space Science Society is underway in the capital city.   Speaking on the occasion, the former Deputy Prime Minister and patron said the Society has been playing a significant role in implementing the principle that Ethiopia will build a scientific generation. Accordingly, institutions like the Ethiopian Space Science and Geospatial have been established through the commitments of the Ethiopian Space Science Society and the government, he added. The institute, which has produced internationally renowned researchers and astronomers, is also a product of the Ethiopian Space Science Society, Demeke stated. Noting that the Ethiopian Space Science Society has been carrying out promising activities in the past two decades in producing many young researches, he said more needs to be done to ensure the competitiveness of the Society.   According to him, preparations should be made to keep up with the global digital revolution and artificial intelligence as mankind is entering a new chapter. The former Deputy Prime Minister advised against being to complacent and pointed out the key role of the youth in this regard. Ethiopian Space Science Society Deputy Director-General, Yeshurun Alemayehu, said the Society is a great asset to the development of space science.   Noting its role for the establishment of the Space Science and Geospatial Institute, he added that it is making a significant contribution by equipping youths in science. Stating that space science is a matter of sovereignty, food security, diplomacy, health, and international politics, Yeshurun said it is impossible to survive without space science.
Ethio Coders Graduates Drive Digital Transformation in Public Institutions
May 1, 2026 2532
Addis Ababa, May 1, 2026 — Young Ethiopians trained under the national Five Million Ethio Coders program are developing homegrown digital systems that are beginning to modernize public institutions and improve service delivery across sectors. Trainees in Addis Ababa say the program has equipped them with practical expertise in software development, data science, and artificial intelligence, enabling them to design solutions that directly respond to institutional challenges. The Addis Ababa City Administration Innovation and Technology Development Bureau confirmed that the initiative is shaping a new generation of digitally skilled youth capable of enhancing efficiency through technology-driven solutions. Launched on July 16, 2024, under the initiative of Prime Minister Abiy Ahmed, the Five Million Ethio Coders program aims to equip citizens nationwide with advanced digital knowledge and practical skills. At its launch, the Prime Minister described the initiative as a strategic platform to nurture a capable workforce that will drive Ethiopia’s technological advancement and national development. The program continues to attract young participants seeking internationally recognized certification while expanding their expertise in key digital fields. Thousands of trainees are already gaining hands-on skills in web development, Android application development, data science, and artificial intelligence, with many developing locally relevant technologies that have broader applications across Africa. Speaking to ENA, participants said the training has enabled them to build practical systems focused on solving real institutional and societal problems. Getasew Abebe, an ICT specialist at the Addis Ababa City Environmental Protection Authority, said he completed all four training modules within a short period.     “The training gave me the practical skills to develop Android applications and other digital systems,” he said. He added that nine technology systems he developed through the program have been recognized by the city administration and are now operational. Another trainee, Azmeraw Tadesse, an Information Technology graduate of Addis Ababa Science and Technology University, said the initiative significantly strengthened his technical capacity.     He noted that he developed a digital platform called Addis Ababa Coders, which tracks and displays Ethio Coders training activities across all sub-cities of the capital. Deputy Head of the Addis Ababa City Innovation and Technology Development Bureau, Tulu Tilahun, said the program is playing a key role in building a digitally competent society. “The program is creating opportunities to produce citizens equipped with the digital knowledge and skills needed for the country’s technological transformation,” he said.     He added that graduates are already contributing to systems that promote modern, efficient, and reliable public service delivery. According to the bureau, Addis Ababa initially set a target to train more than 809,000 citizens under the program. So far, over 900,000 people have registered, while about 678,000 have completed the training. Officials emphasized that equal focus is being given to all four digital skills pathways to ensure the development of competent and globally competitive professionals.
Nairobi to Host Africa Forward Summit on Innovation and Growth
Apr 28, 2026 3151
Addis Ababa, April 27, 2026 —Kenya and France will jointly host the Africa Forward Summit on innovation from 11 to 12 May 2026, in Nairobi. The submit will bring together leaders, investors, and innovators to deepen cooperation on development, technology, and inclusive economic growth. The high-level gathering will be co-led by President William Ruto and President Emmanuel Macron, marking the first major France-Africa summit hosted with an English-speaking African nation. The meeting is expected to signal a renewed partnership approach focused on innovation, investment flows, and more balanced global relations. Building on earlier engagements and feeding into France’s 2026 G7 presidency, the summit will address key global and continental priorities, including development financing, peace and security, fair global governance, sustainable economic models, green energy transition, AI-driven agriculture for food security, and youth skills development. A major highlight will be a Business Forum scheduled for May 11 at the University of Nairobi, expected to attract about 1,500 business leaders, investors, and innovators. The forum is designed to connect private sector initiatives with employment creation and enterprise growth opportunities across Africa. In a press briefing today, Kenyan Ambassador to Ethiopia and the African Union, Galma Mukhe Boru, emphasized that the summit comes at a time of rapid global change. “The Africa Forward Summit comes at a time when the world is undergoing profound transformation from climate change to technological disruption, to food security and global economic reform,” he said. He further stated that coordinated action is now essential, noting that “Africa today is a continent of opportunity, home to a youthful population, expanding digital economies and growing innovation ecosystems.” Boru also emphasized Kenya’s pride in hosting the event, saying it goes beyond “historical and linguistic divides,” with the Business Forum placing “the private sector at the center of the summit.” French Ambassador to Ethiopia and the African Union, Alexis Lamek, on his part underscored the inclusive nature of the initiative, stating, “this Africa Forward Summit will illustrate the rich diversity of relations between Africa and France, which are relations built around a wide variety of actors.” He further noted that nearly 400 young participants from across Africa will attend, including youth leaders, entrepreneurs, artists, athletes, creators, and members of the diaspora. According to him, the discussions will also contribute to France’s G7 agenda, particularly efforts to “reform international institutions in order to improve Africa’s representation in global governance.” Alongside policy dialogues, the summit will feature youth-led initiatives, cultural exchanges in sports, arts, and fashion, as well as investment showcases, positioning Africa as an emerging global hub for innovation and opportunity.
Ethiopia Steps Up AI Development, Digital Drive with Homegrown Capacity
Apr 27, 2026 2824
Addis Ababa, April 27, 2026 — Ethiopia is accelerating efforts to expand Artificial Intelligence (AI) development and fast track digitalization through domestic capacity, according to sector leaders. Belete Esubalew, CEO of Information Technology Park, said the park was established with the vision of positioning Ethiopia as an innovation hub in Africa. He noted that more than 80 local and international companies are currently engaged in innovation driven activities within the park. “The government is striving to substitute imports of innovative products and services by building domestic capacity,” he added. According to the CEO, foreign firms operating in the park play a key role in knowledge transfer while supporting the country’s push for import substitution. “They mainly contribute through knowledge transfer and are also supporting import substitution of innovative products and services,” he underlined. He added that the contribution is already visible in electronics manufacturing. “Especially in electronics manufacturing, they have already contributed to about 50 percent import substitution by producing locally,” he said. Belete also stressed that efforts are underway to create an enabling environment for the implementation of artificial intelligence through infrastructure expansion. He pointed out that ICT parks, reliable power supply, fiber connectivity and other essential infrastructure have been developed to support the sector. “AI is providing several opportunities by making life easier, reducing reliance on human labor, saving time and enabling faster execution of tasks,” he said. He acknowledged existing challenges in areas such as data availability, language and cultural contexts. “There are challenges related to data, language and culture in implementing AI, but we are working to address these issues and to be well prepared to widely and effectively utilize AI tools,” he underscored. He further noted that digital transformation remains a central government priority, with a new roadmap already in place following the Digital Ethiopia 2025 initiative. “After the completion of Digital Ethiopia 2025, the Digital 2030 strategy has been introduced to sustain momentum,” he said. He added that both local and international companies are aligning their activities with the country’s broader digital strategy. African Digital and Innovation Technology Academy Board Chairman Baheru Zeyenu said the government has created a supportive environment through policy frameworks and infrastructure development, but stressed that stronger private sector participation is essential. “Private companies need to actively engage in developing innovative products and applying AI across sectors,” he said. He highlighted the importance of applying artificial intelligence in key areas such as agriculture, education and health to boost productivity and service delivery. Baheru also noted that his organization, in collaboration with the Information Technology Park, recently organized a seminar aimed at raising awareness among leaders on AI adoption. “The seminar is designed to provide clear insights into AI and its practical applications, particularly how it is transforming leadership, business and public service,” he said.
Sport
Manufacturing Push Gains Momentum as Ethiopia Cements Economic Foundation: Minister Melaku
Apr 26, 2026 3383
Addis Ababa, April 26, 2026 (ENA) —Industry Minister Melaku Alebel stated that the government is working with a focus on the manufacturing industry sector to solidify Ethiopia on a strong economic foundation. Speaking during the “Ethiopia Tamrit (Made in Ethiopia”) 10-kilometer street race held at Meskel Square; the minister underscored the government’s focus on expanding industrial capacity and promoting locally made products. The event drew senior officials including Culture and Sports Minister Shewit Shanka, Addis Ababa Deputy Mayor Jantrar Abay, and Ethiopian Athletics Federation President Sileshi Sihine.   Minister Melaku said the race was designed to promote locally manufactured sport materials and highlight the growing capacity of industries engaged in import substitution. “The government is working with a clear focus on manufacturing to build a strong economic foundation,” he said, adding that reforms in recent years have begun to yield tangible results. He noted that momentum in the sector has accelerated following the launch of the “Ethiopia Tamrit” initiative, with improvements seen in both the quality and volume of domestic production. “The culture of using locally manufactured goods is steadily improving,” he stated, emphasizing that products once reliant on imports are now increasingly produced within the country.   The minister affirmed that efforts would continue to expand the sector’s contribution to the national economy and deepen industrial transformation. Minister Shewit Shanka on her part highlighted parallel investments in the sports sector, noting that expanding infrastructure has opened broader opportunities for youth participation and development. “The integration of sports and industry is helping replace imported sports materials with locally produced alternatives,” she said. She added that the sportswear used in the race was entirely produced in Ethiopia, reflecting growing coordination between the two sectors.   Deputy Mayor Jantrar Abay also pointed to significant progress in Addis Ababa’s industrial landscape, noting that reforms have strengthened production capacity and supported the city’s role in advancing the national manufacturing agenda.
PM Abiy Unveils World-Class Sports Complexes, Signaling Ethiopia’s Bold Multi-Sector Rise
Apr 4, 2026 12392
Addis Ababa, April 5, 2026 (ENA) —Prime Minister Abiy Ahmed on Saturday inaugurated a series of world-class sports and recreational facilities in the capital, highlighting the government’s broader nation-building agenda aimed at strengthening Ethiopia across all sectors. The newly launched complexes feature Olympic-standard indoor and outdoor swimming pools, football pitches, volleyball courts, jogging tracks, and fully equipped gymnasiums built to international standards. Speaking at the inauguration ceremony, the Prime Minister emphasized that Ethiopia’s development strategy is rooted in both honoring its historic legacy and investing in the future of its youth. He noted that while landmarks such as the Adwa Victory Memorial preserve the courage and independence of past generations, modern sports facilities serve as vital spaces for nurturing social cohesion and physical excellence. “A generation is not built solely in classrooms,” Premier Abiy said. He further stated that: “Character is shaped through interaction, empathy, and healthy competition. These facilities will help cultivate the unity and resilience needed for a strong nation.” A distinctive aspect of the new developments is the inclusion of monuments honoring Ethiopia’s legendary athletes, including Abebe Bikila, Miruts Yifter, Haile Gebrselassie, Kenenisa Bekele, Derartu Tulu, and Tirunesh Dibaba. The Prime Minister stressed the importance of celebrating national heroes during their lifetimes to inspire younger generations. Highlighting a shift in development priorities, PM Abiy noted that the government is focusing on early childhood education and skills development rather than solely expanding higher education institutions. He revealed that more than 35,000 kindergartens have been built in recent years under the Early Childhood Education initiative. He also pointed to programs such as the “5 Million Coders” initiative and the establishment of international-standard sports hubs as key efforts to equip Ethiopian youth with globally competitive skills. According to the Prime Minister, providing high-quality facilities within the country can help foster national pride and a sense of belonging, ultimately reducing the desire for outward migration. Concluding his remarks, Prime Minister Abiy highlighted Ethiopia’s demographic advantage, noting that with an average age of just 19, the country stands at a critical juncture. He called for unity and sustained commitment to transforming challenges into opportunities, ensuring Ethiopia secures a strong position both regionally and globally.
PM Abiy Inaugurates Sports Park that Meets International Standards
Apr 4, 2026 9620
Addis Ababa, April 4, 2026 (ENA) — Prime Minister Abiy Ahmed has inaugurated Addis Sports Park, a world-class hub that meets international standards. Writing about the sports park inaugurated today, PM Abiy said the “Addis Sports Park, a 5.7-hectare project stands as a testament to our promise of urban renewal and the restoration of our citizens' dignity.” By honoring 15 of our Olympic gold medalists with dedicated statues at the heart of this facility, he added that the government ensures that their legacy inspires the next generation of Ethiopian champions. “Whether it is the Olympic-standard swimming pool, the professional football, basketball, and tennis courts, or the 800-meter running track, every part of this world-class hub is built to meet international standards,” he elaborated. True development must be centred on the community, PM Abiy stressed, adding this project is about more than elite sports, it provides 105 new commercial shops to empower community members relocated during the development process with a grand plaza for 3,000 people to gather and connect. With two levels of basement parking for 300 vehicles and a seamless connection to the riverside green projects, we are proving that a clean, modern Ethiopia is happening right now, he further noted. The PM finally noted: “We don’t just envision a better future, we build it!” According to the Office of the Prime Minster, the sports park is more than just a project. It is a powerful testament to the government’s commitment to public wellness and urban progress; and it is the true face of the New Ethiopia. The hub designed for every citizen comprises 5.7 hectares of world-class sports and green recreational space and 15 honorary statues of the country’s Olympic gold medalists to inspire the next generation. The sports park has also elite facilities with Olympic-standard pool, 800m track, and professional courts for football, basketball, tennis, playground for children and sand pitches.
Environment
UNECA Chief Praises Ethiopia’s Climate Action, Urges Stronger Efforts Across Africa
Apr 28, 2026 3289
Addis Ababa, April 28, 2026 —United Nations Economic Commission for Africa Executive Secretary Claver Gatete has lauded Ethiopia’s leadership and ambitious climate actions, highlighting the country as a model for sustainable development across Africa. Speaking at the Twelfth Session of the Africa Regional Forum on Sustainable Development 2026 in Addis Ababa, Gatete commended the government of Ethiopia and Prime Minister Abiy Ahmed for what he described as bold and model climate initiatives. The forum, organized by UNECA in collaboration with the African Union Commission, the African Development Bank, and other UN partners, is being held under the theme: "Turning the Tide: Transformative and Coordinated Actions for the 2030 Agenda and Agenda 2063."   Gatete expressed confidence in Ethiopia’s readiness to host COP32, calling it a “critical moment” for advancing global climate action and multilateral cooperation. He noted that Ethiopia is “uniquely equipped” for the task, citing its track record in sustainable development. A key example is the country’s Green Legacy Initiative, described as one of the largest reforestation efforts in the world. Ethiopia has planted over 48 billion tree seedlings. Gatete noted with surprise that Ethiopia produces over 95 percent of its electricity from renewable energy, an achievement that stands out amid ongoing global energy crises. However, Gatete underscored the urgency of climate challenges across Africa.   He pointed out that climate change is already affecting food security, water resources, healthcare systems, infrastructure, and broader economic stability on the continent. "The issues we are discussing this week are directly relevant to COP32," he said, stressing the importance of aligning efforts as countries approach the 2030 deadline for the Sustainable Development Goals and advance the African Union’s Agenda 2063. He called on participants to leverage Ethiopia’s leadership in hosting COP32 to build strong partnerships and accelerate meaningful climate and development action. UNECA, he added, is working closely with the Ethiopian government and the wider UN system to ensure the successful delivery of a high-impact COP32.   As Ethiopia prepares to host the global summit in 2027, Gatete concluded that Africa has a unique opportunity to help bridge the gap between climate ambition and real-world development outcomes.
Ethiopia Shows Strong Leadership in Advancing Climate Ambitions, Says CIF Chief Executive Officer
Apr 28, 2026 2776
Addis Ababa, April 28, 2026 — Ethiopia has shown strong regional and global leadership in advancing its climate ambitions, according to Tariye Gbadegesin, Climate Investment Funds (CIF) Chief Executive Officer. The Chief Executive Officer told ENA that Ethiopia’s efforts reflect a clear commitment to moving from ambition to implementation. She highlighted Ethiopia’s role in guiding climate-related discussions across Africa and globally, emphasizing how Ethiopia is translating its policy priorities into pathways for receiving additional climate financing. Gbadegesin pointed to key areas of focus, including the energy transition, the integration of clean energy to support economic development and growth, and initiatives centered on nature. Moreover, the CEO cited Ethiopia’s tree-planting program and efforts to strengthen resilience—particularly by improving livelihoods for communities facing challenges such as water scarcity, flooding, and extreme weather events. According to her, restoring land and nature is essential to boosting both resilience and sustainable livelihoods. “Programs such as the Green Legacy initiative have really shown that Ethiopia is willing to move from ambition to implementation.” A lot of the work that Ethiopia is doing in guiding the dialogues, both in Africa and globally, are very crucial for how the country maps its policy framework into the receipt of additional funding, the CEO said. She also underscored CIF’s longstanding partnership with Ethiopia, noting that it has been supporting Ethiopia in catalytic finance across programs in the areas of energy, nature, and resilience. “CIF has had a strong partnership with Ethiopia. We invest catalytic finance to mobilize funding from the multilateral development banks and raise additional funding. To date, we've provided 90 million US Dollars of catalytic finance into different programs that has mobilized over a billion dollars.” Emphasizing the need for collaboration, Gbadegesin said no single country—or source of finance—can achieve climate goals alone. She stressed that public and international finance must function as part of a partnership led by each country’s priorities, with Africa expected to play a central role in clean energy utilization, investment, and the sustainability of clean energy solutions. Gbadegesin further emphasized that countries should adopt strategic coordination across short, medium, and long-term time frames, working closely with the international community to convert climate ambitions into implementable plans. The CEO finally said that approximately 30 percent of CIF funding is allocated to Africa and Africa-based initiatives, including large-scale programs for advancing clean energy solutions.
Climate Action Anchors Ethiopia’s Development Vision:  Ministry of Finance
Apr 27, 2026 2575
Addis Ababa, April 27, 2026 — The Ministry of Finance affirmed that Ethiopia’s climate action, a strategy linking clean energy expansion, economic transformation, resilience building, and environmental protection, is an indispensable move in achieving the country’s development vision. Finance Minister Ahmed Shide made this remark at the Climate Investment Funds (CIF) Global Knowledge Exchange Forum, which drew participants from 27 partner countries and development institutions to share practical experiences in advancing climate action. In his opening speech, Ahmed stressed that the gathering provides a platform for countries and partners to exchange lessons across key areas including energy, resilience, and ecosystem restoration. “The forum is crucial in connecting countries and partners to share experience on climate action,” he said. He noted that Ethiopia’s climate agenda is fully embedded in its broader development framework, with priorities spanning water security, landscape restoration, biodiversity protection, and strengthening resilience for communities and the wider economy. Highlighting the progress in Addis Ababa, the minister pointed to ongoing improvements in public spaces, transport planning, and climate-smart urban development. He further noted that these efforts aim to make growth more livable and environmentally sustainable, rather than narrowly focused on economic expansion. Ahmed also described the role of the CIF as a key partner in advancing Ethiopia’s priorities, including energy access, resilience, and nature-based solutions. According to the minister, the importance of coordinated investment and concessional finance in mobilizing large-scale resources for transformative development. “Ethiopia is ready to share its experience,” he said, citing lessons from climate-resilient agriculture and national land-use planning, while also expressing openness to learning from other countries. Tariye Gbadegesin, Chief Executive Officer of the CIF, on her part, highlighted Ethiopia’s climate leadership, including ambitious low-carbon targets and its role in convening continental dialogue such as the African Climate Summit. She pointed to flagship initiatives like Ethiopia’s Green Legacy Initiative (GLI), which aims to plant billions of seedlings, as well as progress in expanding renewable energy. Gbadegesin further elaborated that preparations toward hosting COP32 are expected to further strengthen climate action momentum. Describing the partnership as fairly deep, she noted CIF support focuses on expanding clean energy access, enhancing resilience, and helping vulnerable communities manage climate shocks. “Our goal is to help countries translate climate ambition into investment strategies that can attract long-term, bankable finance,” she added. She further noted that CIF operates at the intersection of climate and economic growth, linking policy, technical support, and regulatory frameworks across sectors such as infrastructure and agriculture. Similarly, Alex Mubiru, Director General for East Africa at the African Development Bank Group, emphasized the growing collaboration between the bank and CIF to support African countries in turning climate challenges into opportunities for growth. Mubiru said the continent is increasingly demonstrating how resilience can drive innovation, strengthen economies, and safeguard communities. “Through the Accelerating Resilience Investments and Innovations for Sustainable Economies, we are building on this longstanding partnership to support African-led solutions that accelerate sustainable prosperity across the continent,” he said.
Ethiopia’s Green Legacy Sets Continental Benchmark for Climate-Resilient Growth: AGRA Board Chair
Apr 22, 2026 6620
Addis Ababa, April 22, 2026 (ENA) —The Board Chair of Alliance for a Green Revolution in Africa (AGRA) Hailemariam Dessalegn said that Ethiopia’s Green Legacy initiative is emerging as a model for building a climate-resilient economy across the continent. In an exclusive interview with ENA, former Ethiopian Prime Minister and current AGRA Board Chair Hailemariam Dessalegn said Ethiopia’s green development drive demonstrates how coordinated national efforts can address climate change while strengthening economic resilience. He further noted that the country’s strategy is anchored in cross-border and continental cooperation, helping align environmental sustainability with broader development goals across Africa. The initiative shows how climate action can go hand in hand with economic transformation and food security, he added. Hailemariam also emphasized that Ethiopia’s approach plays a critical role in ensuring food security while preserving natural resources and tackling climate change in line with national commitments. According to him, development efforts undertaken in recent years have delivered tangible progress, particularly through large-scale environmental restoration. Hailemariam also further elaborated that the billions of tree seedlings planted nationwide are laying the foundation for sustainable agriculture while contributing to biodiversity conservation and climate change mitigation. Reaffirming the initiative’s continental relevance, he noted Ethiopia’s experience offers a practical example for other African countries seeking to build climate-resilient economies. He also stressed the importance of sustaining gains through stronger post-planting care, emphasizing that planting alone is not enough; protecting and nurturing seedlings is essential to ensure long-term impact. Launched in 2019 by Prime Minister Abiy Ahmed, the Green Legacy initiative has mobilized millions of Ethiopians to plant more than 48 billion seedlings, supporting ecological restoration, enhancing biodiversity, and reinforcing food security. The nationwide campaign stands as one of Africa’s largest reforestation efforts, contributing to carbon reduction and strengthening long-term environmental and economic resilience.
Most viewed
Ethiopian Diaspora Demand Egypt to Change Counterproductive Posture on GERD
Apr 4, 2023 142075
Addis Ababa April 4/2023 (ENA) Ethiopians in the Diaspora have called on Egypt to change its counterproductive posture and find mutually beneficial agreements on the Grand Ethiopian Renaissance Dam (GERD). In a statement the diaspora issued yesterday, they noted that Ethiopia is the main source of the Nile by contributing 86 percent of the water to the Nile basin states while utilizing less than 1 percent of the potential for hydroelectric power. Ethiopians are currently building the GERD on the Blue Nile that is financed entirely by Ethiopians and is a crucial project for the country's development as it will provide clean, renewable energy and lift millions out of poverty. About 65 percent of the 122 million of Ethiopia's population have no access to any form of electricity. The much-needed electricity will facilitate economic growth for Ethiopia and the region, the statement elaborated. The dam will promote regional cooperation and integration while offering opportunity for eleven countries of the Nile Basin to work together to manage the river's resources more efficiently and effectively, it added. The GERD is being built with the highest environmental and technical standards to achieve the objectives of the national electrification program and the execution of Ethiopia’s Climate-Resilient Green Economy Strategy. According to the statement, Ethiopia has provided scientific evidence and expert testimonies that GERD will not significantly affect the flow of water downstream, and provided compelling arguments for the need for equitable use of the Nile's resources by all countries in the region. The diaspora further said they understand that the GERD has raised concerns in Egypt about the downstream effects on the Nile's flow and water availability since Egyptians have been misinformed about the GERD for many years. But on the contrary, the dam will provide several benefits to Egypt and Sudan, including increased water flow during dry seasons and decreased flooding events. “We want to assure Egyptians that Ethiopians are committed to fair and equitable use of the Nile's waters without harming our downstream neighbors. We recognize that the Nile River is a shared resource, and we support finding a mutually beneficial solution.” As Ethiopians in the Diaspora, we reiterate our support for fair and equitable use of the Nile River and call on the Egyptian people and Egyptian Diaspora to question the misinformation about the GERD in Egypt's mainstream media and embrace the spirit of friendship and cooperation by understanding that the GERD is a project of great national importance to Ethiopians that will benefit Egyptians by ensuring a reliable and predictable supply of water, that Ethiopians have the right to use their water resources for the development of its people and economy, in accordance with the principles of equitable and reasonable utilization without causing significant harm. Efforts to destabilize Ethiopia by the regime in Egypt, will indeed affect the historical and diplomatic relations dating back to several thousand years, the long-term interest of the Egyptian people and make Ethiopians less trusting in cooperating on the GERD and future hydropower projects on the Nile, they warned. The diaspora groups urged Egyptian leaders to engage in constructive dialogue with the leaders of Ethiopia regarding the GERD and steer away from their counterproductive posture of calling for a “binding agreement” on the GERD filling and the subsequent operations as an imposing instrument on water sharing that Ethiopians will never accept. The GERD can be a source of cooperation and collaboration between our two countries rather than a source of conflict, they underscored. "Ethiopians believe that, through dialogue and understanding, peaceful and equitable agreements that benefit all parties involved can be realized to build a brighter future for all people in the Nile basin. Belligerent positions by Egyptian leaders stating ‘all options are open’ are contrary to the spirit of the 2015 Declaration of Principles signed by Ethiopia, Sudan and Egypt." According to the statement, such postures will surely harm Egypt's long-term interest and impede trustful cooperation with the Ethiopian people and government. They asked Arab League and its member states to refrain from interfering in the issue of the GERD, which is the sole concern of the three riparian countries (Ethiopia, Sudan and Egypt) and their shared regional organization (the African Union), which is mediating the talks to find ‘African Solutions to African Problems.’ The issues remaining on the table at the trilateral negotiations under the auspices of the African Union are being narrowed to a handful of critical matters on equity and justice, on which the Arab league nations have no business or legal right to be involved.
Africa’s Sustainable Growth Hinges on Science, Technology and Innovation: Experts
Mar 3, 2023 139989
Addis Ababa March 3/2023/ENA/ Achieving the ambitious targets of the 2030 and 2063 Agendas of Africa requires leveraging the power of science, technology, and innovation (STI), according to experts. A press release issued by the ECA stated experts at the Ninth African Regional Forum on Sustainable Development have emphasized the crucial role of STI as a key driver and enabler for ensuring economic growth, improving well-being, mitigating the effects of climate change, and safeguarding the environment. They also underscored the need to strengthen national and regional STI ecosystems by fostering innovation, promoting entrepreneurship, and investing in research and development. By doing so, the experts said that Africa can harness the potential of STI to accelerate its socio-economic progress and achieve the Sustainable Development Goals (SDGs) by 2030 and the African Union's Agenda by 2063. The session, held on 2 March 2023, builds on the recommendations of the Fifth African Science, Technology, and Innovation Forum, which accentuates the central role of STI and digitalization during the COVID-19 pandemic and the need for the necessary infrastructures for the development of STI, plans, and policies that are action-oriented towards strengthening its full implantation. The experts highlighted that despite advances in STI, significant gaps remain in bridging the scientific and technological divide between developed countries and Africa. The highly uneven global distribution of scientific capacity and access to knowledge threatens to derail the goal of leaving no one behind, which is the central and transformative promise of Agenda 2030. “We need a clear political will from governments to ensure science, technology, and innovation is a reality. By doing so our education systems will be capacitated to deliver knowledge that is vital to solving Africa’s sustainability challenges,” Niger Higher Education and Research Minister Mamoudou Djibo said. The strategy includes the establishment of universities as centers for excellence and investments in education, technical competencies, and training in the fields of science, technology, research, and innovation. These initiatives are crucial in accelerating progress towards achieving global goals. However, in order to fully leverage the potential of STI, significant investments in research and development are required. National systems also need to be strengthened, Namibia Information and Communication Technologies Deputy Minister Emma Theophilus, stated adding that “strengthening our national systems for STI is a key game changer for rapid structural transformation in Africa. Leveraging the digital transformation can achieve a stronger, smarter, and more inclusive recovery.” Emerging evidence suggests that an STI and digital Africa can be a springboard to accelerate the implementation of the SDGs and fulfill the aspirations of Agenda 2063.
Feature Article
Global Weekly Roundup: Converging Crises and Signal a System in Transition
May 3, 2026 1515
Addis Ababa, May 3, 2026 —The final week of April 2026 has emerged as a defining inflection point in the evolving global order, as developments between April 20 and April 26 compressed geopolitical escalation, economic strain, technological competition, and scientific breakthroughs into a single, tightly interwoven phase. What had long unfolded as parallel pressures from post pandemic debt burdens, regional conflicts, and intensifying technological rivalry has now converged into a unified global condition marked by fragmentation, constraint and structural transition. Assessments from the International Monetary Fund described this moment as a “synchronized tightening of global conditions,” a framing that has gained traction across policy and financial analysis. It reflects a narrowing policy space in which governments are simultaneously managing inflation risks, elevated debt servicing costs, and a more unpredictable geopolitical environment. The overlap of these pressures is reducing the room for gradual adjustment and increasing reliance on reactive decision making. Coverage across major international outlets including Reuters, Bloomberg, Financial Times, Al Jazeera, BBC News, and The Guardian broadly converges on a shared interpretation. Global instability is increasingly understood not as isolated regional episodes but as a systemic condition. Rather than coincidental crises, analysts point to a deeper restructuring of the international system in which economic, political, and technological forces are becoming tightly interdependent. Energy Tensions Disrupt Global Arteries The most immediate escalation during the week centered on heightened tensions in the Middle East, where maritime security and energy flows became focal points of risk. Increased confrontation involving the United States, Israel, and Iran contributed to a sharp deterioration in regional stability, with maritime incidents raising concerns over the security of critical shipping routes. Attention concentrated on the Strait of Hormuz, one of the world’s most important energy chokepoints, through which a significant share of global oil exports passes. Over the course of the week, commercial shipping faced heightened operational risk as surveillance activity, electronic interference, and naval positioning increased uncertainty in the region. Even without a full blockade scenario, the perceived risk environment altered shipping behavior significantly. The market response was immediate and financial rather than purely political. Insurance costs for maritime transit in the region rose as risk models were reassessed, and shipping firms began adjusting routes in anticipation of sustained volatility. Some operators redirected vessels toward longer alternative passages, increasing transit times and operational costs and adding pressure to already stretched logistics networks. By the end of the week, the most visible consequence was rerouting behavior in global shipping lanes, reflecting how quickly geopolitical tension can translate into logistical friction even without a formal disruption of trade flows. The situation reinforced a broader structural vulnerability in global commerce: dependence on a small number of critical maritime corridors. Economic Pressures and Policy Constraint Against this geopolitical backdrop, global economic policy discussions during the Spring Meetings of the International Monetary Fund and the World Bank reflected a cautious and increasingly constrained outlook. The IMF’s revised global growth projection for 2026, lowered to 3.1 percent, signaled not a recessionary collapse but a continuation of slower, structurally constrained expansion. A central theme was the growing influence of fiscal dominance, where government spending priorities increasingly shape the boundaries of monetary policy. Elevated defense expenditures, energy support mechanisms, and rising debt burdens are collectively narrowing fiscal flexibility across both advanced and developing economies. Three structural pressures dominated policy discussions. Fiscal capacity for long term investment, particularly in climate transition initiatives, is increasingly constrained by short term stabilization needs. Social protection systems are under pressure from persistent cost of living challenges. At the same time, global borrowing conditions remain tighter, with higher interest rates placing particular strain on emerging economies with limited fiscal buffers. In parallel, global trade patterns continue to evolve toward fragmentation rather than uniform globalization. Regional integration is strengthening in parts of Central Asia, Southeast Asia, and East Africa, where countries are expanding intra regional trade and experimenting with alternative settlement mechanisms. This reflects a broader shift toward regional resilience strategies in response to global uncertainty. Technological Control and Digital Sovereignty The week also underscored the accelerating centrality of digital infrastructure in geopolitical strategy. Governments across Europe and Asia advanced regulatory frameworks targeting cloud computing services, digital taxation regimes, and domestic semiconductor investment programs, reflecting a coordinated push toward technological sovereignty. Artificial intelligence systems are increasingly being treated as critical infrastructure, alongside energy grids and defense systems, reflecting their growing role in economic productivity and national security. This shift is not simply regulatory but strategic, as states seek greater control over data flows, computational capacity, and the architecture of digital ecosystems. The result is an emerging global environment in which technology is both a driver of economic growth and a domain of strategic competition. Regulatory fragmentation is increasing, state participation in digital industries is expanding, and industrial policy is becoming more tightly aligned with national security objectives. Scientific Advances Amid Structural Strain Despite macroeconomic and geopolitical pressures, scientific research continued to advance rapidly across multiple fields. Progress in biomedical science remains particularly notable, with AI assisted approaches accelerating drug discovery and improving precision targeting in oncology and immunotherapy research. These developments are gradually shifting treatment paradigms, although most remain in clinical or early implementation phases rather than widespread deployment. In materials science, continued improvements in solar cell efficiency and energy storage technologies reflect incremental but meaningful gains toward more scalable renewable energy systems. These advances are part of a broader long term trajectory rather than abrupt technological disruption. In astrophysics and space science, improved observational data continues to expand understanding of early cosmic formation and deep space structures, offering more detailed insight into the evolution of the universe at its earliest stages. While highly significant scientifically, these findings remain part of a cumulative progression in observational capability. A System in Transition The final week of April 2026 illustrates a global system characterized not by singular crisis or stability, but by simultaneous strain and adaptation. Geopolitical tensions are increasingly linked to economic and logistical systems. Economic policy is constrained by structural fiscal limits. Technology is becoming both a source of competition and a domain of governance. Scientific progress continues at pace even as broader systems face mounting complexity. The International Monetary Fund’s framing of a “synchronized tightening of global conditions” captures this intersection of pressures. What emerges is not a collapse or a steady equilibrium, but a transitional phase in which fragmentation and interdependence coexist. The global trajectory is increasingly defined by interconnected risks and opportunities rather than isolated developments. The international system is becoming more multipolar, more technologically driven, and more sensitive to localized shocks that can propagate rapidly across financial, logistical, and political networks.
Ethiopia Weekly: Industrial Sovereignty Meets Integration
May 3, 2026 1731
Week Four of April 2026 Addis Ababa, May 3, 2026 —Ethiopia concluded the fourth week of April with growing momentum across industrial development, trade reform, technological modernization, and regional diplomacy. As the country moves into what could become a defining month in May, policymakers are increasingly aligning domestic production goals with broader ambitions for global competitiveness. The week reflected a more coordinated national strategy aimed at strengthening industrial capacity while deepening international partnerships and accelerating structural reforms. The Rise of “Made in Ethiopia” as an Industrial Strategy Preparations dominated the week for the 4th “Made in Ethiopia” Expo, which is set to take place from May 3 to May 8 at the Addis International Convention Center. Held under the theme “Made in Ethiopia for Multifaceted Sovereignty,” the event has evolved beyond a traditional trade fair into a strategic platform for industrial expansion and investment mobilization. Officials expect the expo to attract tens of thousands of visitors and facilitate major trade agreements worth billions of Birr. The event will showcase priority sectors including textiles, leather, agro-processing, pharmaceuticals, and construction materials. One of the most significant developments this week was the completion of preparations for the Innovation and Startup Zone, which will highlight local technological solutions designed to modernize manufacturing systems. The expo also reflects Ethiopia’s broader push toward import substitution, export competitiveness, and industrial diversification as the country seeks to position itself as a stronger manufacturing hub within Africa. WTO Reforms and Ethiopia’s Global Trade Ambitions Ethiopia’s long-standing bid to join the World Trade Organization entered a critical phase this week as the government intensified efforts to align domestic policies with international trade standards. A major development was the continued restructuring of state-owned enterprises under Ethiopian Investment Holdings, a move aimed at improving governance, transparency, and competitiveness. Debates also continued over the future of restrictions on fuel-powered vehicle imports, reflecting the government’s effort to balance environmental priorities, private-sector demands, and WTO compliance requirements. These reforms underscore Ethiopia’s broader ambition to integrate more deeply into global trade systems while protecting national development priorities. Aviation’s Expanding Role in Economic Transformation Ethiopia’s aviation sector also emerged as a strategic focus this week following discussions linked to the recent IATA Focus Africa forum. The government is increasingly treating aviation as a critical component of economic infrastructure rather than simply a national symbol. Efforts are underway to strengthen logistical connections between industrial parks and air transport systems to improve export efficiency. With Ethiopian Airlines continuing to expand its international footprint, Addis Ababa is further cementing its role as a major gateway for trade and logistics across the continent. Meanwhile, Prime Minister Abiy Ahmed has inaugurated the newly built Arada Park, describing the project as a major urban transformation initiative that has converted a once-neglected and hazardous area into a modern public space. The Prime Minister emphasized that the project reflects Ethiopia’s broader national development vision. “For us, Ethiopia is not merely a dream to be envisioned—it is a reality to be built,” he stated. “We are building a nation that is healthy, resilient, and full of promise for future generations, while also becoming a leader in Africa and a formidable competitor on the global stage. Each day, we continue to turn this promise into reality.” As part of the redevelopment project, more than 700 existing homes and buildings were renovated to ensure that urban development directly benefits surrounding communities. Of the park’s total 40-hectare area, 15 hectares have been dedicated to green spaces, creating what officials describe as an important environmental asset in the center of Addis Ababa. Technology as a Tool of Sovereignty Ethiopia’s technological ambitions remained highly visible throughout the week, particularly through advancements in space science and digital governance. The conclusion of the 21st Space Science General Assembly reinforced the country’s growing investment in satellite technology and geospatial capabilities. Officials emphasized the role of these technologies in supporting agriculture, climate monitoring, food security, and reducing dependence on foreign systems. At the same time, implementation efforts under Ethiopia’s Digital 2030 Strategy intensified, with a focus on artificial intelligence, automated public services, and integrated national data systems. Authorities are also addressing rural connectivity challenges to ensure digital transformation reaches all parts of the country. Strengthening Regional Diplomacy On the diplomatic front, Prime Minister Abiy Ahmed welcomed Daniel Francisco Chapo to Bole International Airport during an official visit aimed at deepening bilateral relations. The two leaders held talks focused on strengthening cooperation in strategic sectors and signed multiple agreements designed to expand long-term collaboration between Ethiopia and Mozambique. The visit highlighted Ethiopia’s broader diplomatic approach of building stronger African partnerships that deliver measurable economic outcomes. A New Development Model Emerging The developments of the week point to a broader transformation taking shape in Ethiopia’s economic model. Rather than pursuing isolated reforms, the country appears to be synchronizing industrial growth, technological modernization, trade integration, and diplomatic outreach into a more comprehensive national strategy. Ethiopia is increasingly focused not only on building infrastructure but also on creating the institutional, technological, and regulatory systems needed to compete globally. If this momentum continues, the country may be positioning itself as one of Africa’s most closely watched examples of integrated economic transformation.
Ethiopian News Agency
2023