1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432
|
<!DOCTYPE html><html lang="en-US">
<head><meta charset="UTF-8"><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>class RocketLazyLoadScripts{constructor(){this.v="1.2.3",this.triggerEvents=["keydown","mousedown","mousemove","touchmove","touchstart","touchend","wheel"],this.userEventHandler=this._triggerListener.bind(this),this.touchStartHandler=this._onTouchStart.bind(this),this.touchMoveHandler=this._onTouchMove.bind(this),this.touchEndHandler=this._onTouchEnd.bind(this),this.clickHandler=this._onClick.bind(this),this.interceptedClicks=[],window.addEventListener("pageshow",t=>{this.persisted=t.persisted}),window.addEventListener("DOMContentLoaded",()=>{this._preconnect3rdParties()}),this.delayedScripts={normal:[],async:[],defer:[]},this.trash=[],this.allJQueries=[]}_addUserInteractionListener(t){if(document.hidden){t._triggerListener();return}this.triggerEvents.forEach(e=>window.addEventListener(e,t.userEventHandler,{passive:!0})),window.addEventListener("touchstart",t.touchStartHandler,{passive:!0}),window.addEventListener("mousedown",t.touchStartHandler),document.addEventListener("visibilitychange",t.userEventHandler)}_removeUserInteractionListener(){this.triggerEvents.forEach(t=>window.removeEventListener(t,this.userEventHandler,{passive:!0})),document.removeEventListener("visibilitychange",this.userEventHandler)}_onTouchStart(t){"HTML"!==t.target.tagName&&(window.addEventListener("touchend",this.touchEndHandler),window.addEventListener("mouseup",this.touchEndHandler),window.addEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.addEventListener("mousemove",this.touchMoveHandler),t.target.addEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"onclick","rocket-onclick"),this._pendingClickStarted())}_onTouchMove(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler),t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this._pendingClickFinished()}_onTouchEnd(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler)}_onClick(t){t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this.interceptedClicks.push(t),t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this._pendingClickFinished()}_replayClicks(){window.removeEventListener("touchstart",this.touchStartHandler,{passive:!0}),window.removeEventListener("mousedown",this.touchStartHandler),this.interceptedClicks.forEach(t=>{t.target.dispatchEvent(new MouseEvent("click",{view:t.view,bubbles:!0,cancelable:!0}))})}_waitForPendingClicks(){return new Promise(t=>{this._isClickPending?this._pendingClickFinished=t:t()})}_pendingClickStarted(){this._isClickPending=!0}_pendingClickFinished(){this._isClickPending=!1}_renameDOMAttribute(t,e,r){t.hasAttribute&&t.hasAttribute(e)&&(event.target.setAttribute(r,event.target.getAttribute(e)),event.target.removeAttribute(e))}_triggerListener(){this._removeUserInteractionListener(this),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",this._loadEverythingNow.bind(this)):this._loadEverythingNow()}_preconnect3rdParties(){let t=[];document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(e=>{if(e.hasAttribute("src")){let r=new URL(e.src).origin;r!==location.origin&&t.push({src:r,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}}),t=[...new Map(t.map(t=>[JSON.stringify(t),t])).values()],this._batchInjectResourceHints(t,"preconnect")}async _loadEverythingNow(){this.lastBreath=Date.now(),this._delayEventListeners(this),this._delayJQueryReady(this),this._handleDocumentWrite(),this._registerAllDelayedScripts(),this._preloadAllScripts(),await this._loadScriptsFromList(this.delayedScripts.normal),await this._loadScriptsFromList(this.delayedScripts.defer),await this._loadScriptsFromList(this.delayedScripts.async);try{await this._triggerDOMContentLoaded(),await this._triggerWindowLoad()}catch(t){console.error(t)}window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this._waitForPendingClicks().then(()=>{this._replayClicks()}),this._emptyTrash()}_registerAllDelayedScripts(){document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(t=>{t.hasAttribute("data-rocket-src")?t.hasAttribute("async")&&!1!==t.async?this.delayedScripts.async.push(t):t.hasAttribute("defer")&&!1!==t.defer||"module"===t.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(t):this.delayedScripts.normal.push(t):this.delayedScripts.normal.push(t)})}async _transformScript(t){return new Promise((await this._littleBreath(),navigator.userAgent.indexOf("Firefox/")>0||""===navigator.vendor)?e=>{let r=document.createElement("script");[...t.attributes].forEach(t=>{let e=t.nodeName;"type"!==e&&("data-rocket-type"===e&&(e="type"),"data-rocket-src"===e&&(e="src"),r.setAttribute(e,t.nodeValue))}),t.text&&(r.text=t.text),r.hasAttribute("src")?(r.addEventListener("load",e),r.addEventListener("error",e)):(r.text=t.text,e());try{t.parentNode.replaceChild(r,t)}catch(i){e()}}:async e=>{function r(){t.setAttribute("data-rocket-status","failed"),e()}try{let i=t.getAttribute("data-rocket-type"),n=t.getAttribute("data-rocket-src");t.text,i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",function r(){t.setAttribute("data-rocket-status","executed"),e()}),t.addEventListener("error",r),n?(t.removeAttribute("data-rocket-src"),t.src=n):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}catch(s){r()}})}async _loadScriptsFromList(t){let e=t.shift();return e&&e.isConnected?(await this._transformScript(e),this._loadScriptsFromList(t)):Promise.resolve()}_preloadAllScripts(){this._batchInjectResourceHints([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}_batchInjectResourceHints(t,e){var r=document.createDocumentFragment();t.forEach(t=>{let i=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(i){let n=document.createElement("link");n.href=i,n.rel=e,"preconnect"!==e&&(n.as="script"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),r.appendChild(n),this.trash.push(n)}}),document.head.appendChild(r)}_delayEventListeners(t){let e={};function r(t,r){!function t(r){!e[r]&&(e[r]={originalFunctions:{add:r.addEventListener,remove:r.removeEventListener},eventsToRewrite:[]},r.addEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.add.apply(r,arguments)},r.removeEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.remove.apply(r,arguments)});function i(t){return e[r].eventsToRewrite.indexOf(t)>=0?"rocket-"+t:t}}(t),e[t].eventsToRewrite.push(r)}function i(t,e){let r=t[e];Object.defineProperty(t,e,{get:()=>r||function(){},set(i){t["rocket"+e]=r=i}})}r(document,"DOMContentLoaded"),r(window,"DOMContentLoaded"),r(window,"load"),r(window,"pageshow"),r(document,"readystatechange"),i(document,"onreadystatechange"),i(window,"onload"),i(window,"onpageshow")}_delayJQueryReady(t){let e;function r(r){if(r&&r.fn&&!t.allJQueries.includes(r)){r.fn.ready=r.fn.init.prototype.ready=function(e){return t.domReadyFired?e.bind(document)(r):document.addEventListener("rocket-DOMContentLoaded",()=>e.bind(document)(r)),r([])};let i=r.fn.on;r.fn.on=r.fn.init.prototype.on=function(){if(this[0]===window){function t(t){return t.split(" ").map(t=>"load"===t||0===t.indexOf("load.")?"rocket-jquery-load":t).join(" ")}"string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=t(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(e=>{let r=arguments[0][e];delete arguments[0][e],arguments[0][t(e)]=r})}return i.apply(this,arguments),this},t.allJQueries.push(r)}e=r}r(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){r(t)}})}async _triggerDOMContentLoaded(){this.domReadyFired=!0,await this._littleBreath(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),window.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),document.dispatchEvent(new Event("rocket-readystatechange")),await this._littleBreath(),document.rocketonreadystatechange&&document.rocketonreadystatechange()}async _triggerWindowLoad(){await this._littleBreath(),window.dispatchEvent(new Event("rocket-load")),await this._littleBreath(),window.rocketonload&&window.rocketonload(),await this._littleBreath(),this.allJQueries.forEach(t=>t(window).trigger("rocket-jquery-load")),await this._littleBreath();let t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this._littleBreath(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}_handleDocumentWrite(){let t=new Map;document.write=document.writeln=function(e){let r=document.currentScript;r||console.error("WPRocket unable to document.write this: "+e);let i=document.createRange(),n=r.parentElement,s=t.get(r);void 0===s&&(s=r.nextSibling,t.set(r,s));let a=document.createDocumentFragment();i.setStart(a,0),a.appendChild(i.createContextualFragment(e)),n.insertBefore(a,s)}}async _littleBreath(){Date.now()-this.lastBreath>45&&(await this._requestAnimFrame(),this.lastBreath=Date.now())}async _requestAnimFrame(){return document.hidden?new Promise(t=>setTimeout(t)):new Promise(t=>requestAnimationFrame(t))}_emptyTrash(){this.trash.forEach(t=>t.remove())}static run(){let t=new RocketLazyLoadScripts;t._addUserInteractionListener(t)}}RocketLazyLoadScripts.run();</script><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<script>
var gform;gform||(document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,initializeOnLoaded:function(o){gform.domLoaded&&gform.scriptsLoaded?o():!gform.domLoaded&&gform.scriptsLoaded?window.addEventListener("DOMContentLoaded",o):document.addEventListener("gform_main_scripts_loaded",o)},hooks:{action:{},filter:{}},addAction:function(o,n,r,t){gform.addHook("action",o,n,r,t)},addFilter:function(o,n,r,t){gform.addHook("filter",o,n,r,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,n){gform.removeHook("action",o,n)},removeFilter:function(o,n,r){gform.removeHook("filter",o,n,r)},addHook:function(o,n,r,t,i){null==gform.hooks[o][n]&&(gform.hooks[o][n]=[]);var e=gform.hooks[o][n];null==i&&(i=n+"_"+e.length),gform.hooks[o][n].push({tag:i,callable:r,priority:t=null==t?10:t})},doHook:function(n,o,r){var t;if(r=Array.prototype.slice.call(r,1),null!=gform.hooks[n][o]&&((o=gform.hooks[n][o]).sort(function(o,n){return o.priority-n.priority}),o.forEach(function(o){"function"!=typeof(t=o.callable)&&(t=window[t]),"action"==n?t.apply(null,r):r[0]=t.apply(null,r)})),"filter"==n)return r[0]},removeHook:function(o,n,t,i){var r;null!=gform.hooks[o][n]&&(r=(r=gform.hooks[o][n]).filter(function(o,n,r){return!!(null!=i&&i!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][n]=r)}});
</script>
<!-- Grow Social by Mediavine v.2.16.4 https://marketplace.mediavine.com/grow-social-pro/ -->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Creamy Coconut Curry Lentils with Spinach" />
<meta property="og:description" content="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!" />
<meta property="og:url" content="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/" />
<meta property="og:site_name" content="Budget Bytes" />
<meta property="og:updated_time" content="2023-05-27T13:19:34+00:00" />
<meta property="article:published_time" content="2019-07-13T19:00:50+00:00" />
<meta property="article:modified_time" content="2023-05-27T13:19:34+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Creamy Coconut Curry Lentils with Spinach" />
<meta name="twitter:description" content="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!" />
<meta property="og:image" content="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg" />
<meta name="twitter:image" content="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg" />
<meta property="og:image:width" content="800" />
<meta property="og:image:height" content="600" />
<meta property="article:author" content="https://www.facebook.com/budgetbytes1" />
<meta name="twitter:creator" content="@Budget_Bytes" />
<!-- Grow Social by Mediavine v.2.16.4 https://marketplace.mediavine.com/grow-social-pro/ -->
<meta name="pinterest-rich-pin" content="false" />
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" data-pagespeed-no-defer>
var gtm4wp_datalayer_name = "dataLayer";
var dataLayer = dataLayer || [];
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
<!-- This site is optimized with the Yoast SEO Premium plugin v21.2 (Yoast SEO v21.2) - https://yoast.com/wordpress/plugins/seo/ -->
<title>Creamy Coconut Curry Lentils with Spinach - Budget Bytes</title><link rel='preload' href='https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo-reverse.svg' as='image'><link rel='preload' href='https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo.svg' as='image'><link rel="preload" href="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo.svg" as="image" /><link rel="preload" href="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo-reverse.svg" as="image" /><link rel="preload" href="https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-60x60.jpg" as="image" imagesrcset="https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-120x120.jpg 2x" />
<meta name="description" content="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!" />
<link rel="canonical" href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/" />
<meta name="author" content="Beth - Budget Bytes" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Beth - Budget Bytes" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="7 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#article","isPartOf":{"@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"},"author":{"name":"Beth - Budget Bytes","@id":"https://www.budgetbytes.com/#/schema/person/bf6c329b6de4c75ae3a0de14a1f8c006"},"headline":"Creamy Coconut Curry Lentils with Spinach","datePublished":"2019-07-14T00:00:50+00:00","dateModified":"2023-05-27T18:19:34+00:00","wordCount":1092,"commentCount":202,"publisher":{"@id":"https://www.budgetbytes.com/#organization"},"image":{"@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#primaryimage"},"thumbnailUrl":"https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg","keywords":["Coconut Milk","Curry Powder","Garlic","Ginger","Lentils","Olive Oil","Onion","Spinach","Vegetable Broth"],"articleSection":["Bean & Grain Recipes","Dairy Free Recipes","Egg Free Recipes","Globally Inspired Recipes","Gluten free Recipes","Indian Inspired Recipes","Lentil Recipes","Main Dish Recipes","Recipes","Recipes under $10","Soy Free Recipes","Under $3 per serving","Vegan Recipes","Vegetarian Recipes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#respond"]}]},{"@type":"WebPage","@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/","url":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/","name":"Creamy Coconut Curry Lentils with Spinach - Budget Bytes","isPartOf":{"@id":"https://www.budgetbytes.com/#website"},"primaryImageOfPage":{"@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#primaryimage"},"image":{"@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#primaryimage"},"thumbnailUrl":"https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg","datePublished":"2019-07-14T00:00:50+00:00","dateModified":"2023-05-27T18:19:34+00:00","description":"These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!","breadcrumb":{"@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#primaryimage","url":"https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg","contentUrl":"https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg","width":800,"height":600,"caption":"A hand dipping a piece of naan into the Creamy Coconut Curried Lentils with Spinach on a plate with curry roasted carrots"},{"@type":"BreadcrumbList","@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Budget Bytes","item":"https://www.budgetbytes.com/"},{"@type":"ListItem","position":2,"name":"Recipes","item":"https://www.budgetbytes.com/category/recipes/"},{"@type":"ListItem","position":3,"name":"Vegetarian Recipes","item":"https://www.budgetbytes.com/category/recipes/vegetarian/"},{"@type":"ListItem","position":4,"name":"Vegan Recipes","item":"https://www.budgetbytes.com/category/recipes/vegetarian/vegan/"},{"@type":"ListItem","position":5,"name":"Creamy Coconut Curry Lentils with Spinach"}]},{"@type":"WebSite","@id":"https://www.budgetbytes.com/#website","url":"https://www.budgetbytes.com/","name":"Budget Bytes","description":"Delicious Recipes Designed for Small Budgets","publisher":{"@id":"https://www.budgetbytes.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.budgetbytes.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.budgetbytes.com/#organization","name":"Budget Bytes","url":"https://www.budgetbytes.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.budgetbytes.com/#/schema/logo/image/","url":"https://www.budgetbytes.com/wp-content/uploads/2020/11/budgetbytes_square_icon_transparent.png","contentUrl":"https://www.budgetbytes.com/wp-content/uploads/2020/11/budgetbytes_square_icon_transparent.png","width":300,"height":300,"caption":"Budget Bytes"},"image":{"@id":"https://www.budgetbytes.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/budgetbytes1/?ref=hl","https://twitter.com/Budget_Bytes","https://instagram.com/budgetbytes/","https://www.pinterest.com/budgetbytes/","https://www.youtube.com/channel/UC17vdVOZBVxTSDcldUBBlRg"]},{"@type":"Person","@id":"https://www.budgetbytes.com/#/schema/person/bf6c329b6de4c75ae3a0de14a1f8c006","name":"Beth - Budget Bytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.budgetbytes.com/#/schema/person/image/","url":"https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-96x96.jpg","contentUrl":"https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-96x96.jpg","caption":"Beth - Budget Bytes"},"description":"I’m a food lover, number cruncher, and meticulous budgeter. I love science and art, and the way they come together when I cook. I love to create, problem solve, and learn new things. Making great food is my passion, my purpose, and my favorite thing to share with others.","sameAs":["https://www.budgetbytes.com/about/","https://www.facebook.com/budgetbytes1","https://twitter.com/Budget_Bytes"],"url":"https://www.budgetbytes.com/author/beth/"},{"@type":"Recipe","name":"Creamy Coconut Curry Lentils with Spinach","author":{"@id":"https://www.budgetbytes.com/#/schema/person/bf6c329b6de4c75ae3a0de14a1f8c006"},"description":"These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!","datePublished":"2019-07-13T19:00:50+00:00","image":["https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg","https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-500x500.jpg","https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-500x375.jpg","https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-480x270.jpg"],"video":{"name":"Creamy Coconut Curry Lentils with Spinach","description":"These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!","thumbnailUrl":"https://mediavine-res.cloudinary.com/image/upload/s---3Fl3Thb--/c_limit,f_auto,fl_lossy,h_1080,q_auto,w_1920/v1569265813/btmkatyr4rja3wjjfb5k.jpg","embedUrl":"https://video.mediavine.com/videos/cszu5igarnurncpmbfcm.js","contentUrl":"https://mediavine-res.cloudinary.com/video/upload/t_original/v1569265779/cszu5igarnurncpmbfcm.mp4","uploadDate":"2019-09-23T19:09:57+00:00","duration":"PT61S","@type":"VideoObject"},"recipeYield":["4","4 1.25 cups curry lentils + 1 cup rice"],"prepTime":"PT5M","cookTime":"PT40M","totalTime":"PT45M","recipeIngredient":["2 Tbsp olive oil ($0.24)","2 cloves garlic ($0.16)","1 tsp grated fresh ginger ($0.10)","1 small yellow onion ($0.21)","1 Tbsp curry powder* ($0.30)","1 cup brown lentils (dry) ($0.67)","2 cups vegetable broth** ($0.26)","1 13oz. can coconut milk ($1.99)","3 cups fresh baby spinach ($1.61)","4 cups cooked rice ($0.60)","1/4 cup chopped fresh cilantro ($0.15)"],"recipeInstructions":[{"@type":"HowToStep","text":"Mince the garlic, grate the ginger, and dice the onion. Add the olive oil, garlic, and ginger to a deep skillet, Dutch oven, or soup pot. Sauté the garlic and ginger over medium heat for 1 minute, or just until the garlic becomes soft and fragrant.","name":"Mince the garlic, grate the ginger, and dice the onion. Add the olive oil, garlic, and ginger to a deep skillet, Dutch oven, or soup pot. Sauté the garlic and ginger over medium heat for 1 minute, or just until the garlic becomes soft and fragrant.","url":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#wprm-recipe-44661-step-0-0"},{"@type":"HowToStep","text":"Add the diced onion to the skillet and continue to sauté over medium until the onion is soft and translucent. Add the curry powder and continue to sauté for about one minute more to toast the spices.","name":"Add the diced onion to the skillet and continue to sauté over medium until the onion is soft and translucent. Add the curry powder and continue to sauté for about one minute more to toast the spices.","url":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#wprm-recipe-44661-step-0-1"},{"@type":"HowToStep","text":"Add the dry lentils and vegetable broth to the skillet. Stir to dissolve any browned bits from the bottom of the skillet. Place a lid on top, turn the heat up to medium-high, and bring the broth to a boil. Once boiling, turn the heat down to low, and let it simmer for 20 minutes, stirring occasionally.","name":"Add the dry lentils and vegetable broth to the skillet. Stir to dissolve any browned bits from the bottom of the skillet. Place a lid on top, turn the heat up to medium-high, and bring the broth to a boil. Once boiling, turn the heat down to low, and let it simmer for 20 minutes, stirring occasionally.","url":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#wprm-recipe-44661-step-0-2"},{"@type":"HowToStep","text":"After simmering for 20 minutes the lentils should be tender and most of the broth absorbed. Add the can of coconut milk and stir to combine. Turn the heat back up to medium and allow the skillet to come back up to a simmer. Let it simmer without a lid for an additional 10 minutes, stirring often, to thicken the mixture.","name":"After simmering for 20 minutes the lentils should be tender and most of the broth absorbed. Add the can of coconut milk and stir to combine. Turn the heat back up to medium and allow the skillet to come back up to a simmer. Let it simmer without a lid for an additional 10 minutes, stirring often, to thicken the mixture.","url":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#wprm-recipe-44661-step-0-3"},{"@type":"HowToStep","text":"Once thickened, turn the heat off. Add the fresh spinach and stir gently until the spinach has wilted. Taste the mixture and adjust the salt or curry powder to your liking, if needed.","name":"Once thickened, turn the heat off. Add the fresh spinach and stir gently until the spinach has wilted. Taste the mixture and adjust the salt or curry powder to your liking, if needed.","url":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#wprm-recipe-44661-step-0-4"},{"@type":"HowToStep","text":"Serve over a bowl of rice, and top with chopped cilantro if desired.","name":"Serve over a bowl of rice, and top with chopped cilantro if desired.","url":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#wprm-recipe-44661-step-0-5"}],"aggregateRating":{"@type":"AggregateRating","ratingValue":"4.98","ratingCount":"106"},"recipeCategory":["Dinner","Main Course","Side Dish"],"recipeCuisine":["Indian"],"keywords":"meal prep, Vegan Dinner","nutrition":{"@type":"NutritionInformation","servingSize":"1.25 Cups","calories":"494.13 kcal","carbohydrateContent":"83.93 g","proteinContent":"17.83 g","fatContent":"8.18 g","fiberContent":"8 g","sodiumContent":"844.08 mg"},"@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#recipe","isPartOf":{"@id":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/#article"},"mainEntityOfPage":"https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel="alternate" type="application/rss+xml" title="Budget Bytes » Feed" href="https://www.budgetbytes.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Budget Bytes » Comments Feed" href="https://www.budgetbytes.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Budget Bytes » Creamy Coconut Curry Lentils with Spinach Comments Feed" href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/feed/" />
<link rel="alternate" type="application/rss+xml" title="Budget Bytes » Stories Feed" href="https://www.budgetbytes.com/web-stories/feed/"><meta name="google-site-verification" content="Z5lrBB5NDHy_3jRTsg5UgtCkj32qDeV3AFhOWMvIcVU" /><script>function cpLoadCSS(e,t,n){"use strict";var i=window.document.createElement("link"),o=t||window.document.getElementsByTagName("script")[0];return i.rel="stylesheet",i.href=e,i.media="only x",o.parentNode.insertBefore(i,o),setTimeout(function(){i.media=n||"all"}),i}</script><style>.cp-popup-container .cpro-overlay,.cp-popup-container .cp-popup-wrapper{opacity:0;visibility:hidden;display:none}</style><link rel='stylesheet' id='sbi_styles-css' href='https://www.budgetbytes.com/wp-content/plugins/instagram-feed-pro/css/sbi-styles.min.css?ver=6.3.21696689839' media='all' />
<link rel='stylesheet' id='sby_styles-css' href='https://www.budgetbytes.com/wp-content/plugins/youtube-feed-pro/css/sb-youtube.min.css?ver=1.2.2' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='https://www.budgetbytes.com/wp-includes/css/dist/block-library/style.min.css?ver=6.3.1' media='all' />
<style id='safe-svg-svg-icon-style-inline-css'>
.safe-svg-cover{text-align:center}.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%}
</style>
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--foreground: #000000;--wp--preset--color--background: #ffffff;--wp--preset--color--background-2: #f5f5f5;--wp--preset--color--primary: #FBC41B;--wp--preset--color--secondary: #292929;--wp--preset--color--tertiary: #57A600;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 16px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: clamp(20px, 3vw, 24px);--wp--preset--font-size--x-large: clamp(22px, 3.4vw, 24px);--wp--preset--font-size--tiny: 11px;--wp--preset--font-size--normal: 18px;--wp--preset--font-size--big: clamp(22px, 4vw, 28px);--wp--preset--font-size--huge: clamp(25px, 4.5vw, 31px);--wp--preset--font-size--jumbo: clamp(28px, 5vw, 33px);--wp--preset--font-size--gigantic: clamp(31px, 5.25vw, 36px);--wp--preset--font-size--colossal: clamp(34px, 8.3vw, 46px);--wp--preset--font-family--system-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--wp--preset--font-family--serif: Montserrat;--wp--preset--font-family--mono: ui-monospace, SFMono-Regular, ui-monospace, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);--wp--custom--border-radius--normal: 8px;--wp--custom--border-radius--large: 32px;--wp--custom--box-shadow--small: 0 4px 8px -4px rgba(113,113,113,0.16);--wp--custom--box-shadow--normal: 0 8px 16px -8px rgba(113,113,113,0.16);--wp--custom--box-shadow--large: 0 12px 32px -8px rgba(113,113,113,0.16);--wp--custom--color--link: #4242FF;--wp--custom--color--primary-darken: #DFA904;--wp--custom--layout--content: 736px;--wp--custom--layout--post-content: 668px;--wp--custom--layout--wide: 1168px;--wp--custom--layout--sidebar: 336px;--wp--custom--layout--page: var(--wp--custom--layout--content);--wp--custom--layout--padding: 16px;--wp--custom--layout--block-gap: 1.5rem;--wp--custom--layout--grid-column-gap: 32px;--wp--custom--layout--grid-row-gap: 32px;--wp--custom--line-height--tiny: 1.1;--wp--custom--line-height--small: 1.2;--wp--custom--line-height--medium: 1.4;--wp--custom--line-height--normal: 1.5;}.wp-block-button .wp-block-button__link{--wp--preset--color--primary: #FBC41B;--wp--preset--color--secondary: #292929;--wp--preset--color--white: #FFFFFF;}.wp-block-group{--wp--preset--color--foreground: #000000;--wp--preset--color--background: #ffffff;--wp--preset--color--background-2: #f5f5f5;--wp--preset--color--primary: #FBC41B;--wp--preset--color--secondary: #292929;}body { margin: 0;--wp--style--global--content-size: var(--wp--custom--layout--content);--wp--style--global--wide-size: var(--wp--custom--layout--wide); }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: var(--wp--custom--layout--block-gap); margin-block-end: 0; }:where(.wp-site-blocks) > :first-child:first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child:last-child { margin-block-end: 0; }body { --wp--style--block-gap: var(--wp--custom--layout--block-gap); }:where(body .is-layout-flow) > :first-child:first-child{margin-block-start: 0;}:where(body .is-layout-flow) > :last-child:last-child{margin-block-end: 0;}:where(body .is-layout-flow) > *{margin-block-start: var(--wp--custom--layout--block-gap);margin-block-end: 0;}:where(body .is-layout-constrained) > :first-child:first-child{margin-block-start: 0;}:where(body .is-layout-constrained) > :last-child:last-child{margin-block-end: 0;}:where(body .is-layout-constrained) > *{margin-block-start: var(--wp--custom--layout--block-gap);margin-block-end: 0;}:where(body .is-layout-flex) {gap: var(--wp--custom--layout--block-gap);}:where(body .is-layout-grid) {gap: var(--wp--custom--layout--block-gap);}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}body{background-color: var(--wp--preset--color--background);color: var(--wp--preset--color--foreground);font-family: var(--wp--preset--font-family--system-font);font-size: var(--wp--preset--font-size--normal);line-height: var(--wp--custom--line-height--normal);padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){color: var(--wp--custom--color--link);text-decoration: underline;}.wp-element-button, .wp-block-button__link{background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-foreground-color{color: var(--wp--preset--color--foreground) !important;}.has-background-color{color: var(--wp--preset--color--background) !important;}.has-background-2-color{color: var(--wp--preset--color--background-2) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-tertiary-color{color: var(--wp--preset--color--tertiary) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-foreground-background-color{background-color: var(--wp--preset--color--foreground) !important;}.has-background-background-color{background-color: var(--wp--preset--color--background) !important;}.has-background-2-background-color{background-color: var(--wp--preset--color--background-2) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.has-tertiary-background-color{background-color: var(--wp--preset--color--tertiary) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-foreground-border-color{border-color: var(--wp--preset--color--foreground) !important;}.has-background-border-color{border-color: var(--wp--preset--color--background) !important;}.has-background-2-border-color{border-color: var(--wp--preset--color--background-2) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.has-tertiary-border-color{border-color: var(--wp--preset--color--tertiary) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-tiny-font-size{font-size: var(--wp--preset--font-size--tiny) !important;}.has-normal-font-size{font-size: var(--wp--preset--font-size--normal) !important;}.has-big-font-size{font-size: var(--wp--preset--font-size--big) !important;}.has-huge-font-size{font-size: var(--wp--preset--font-size--huge) !important;}.has-jumbo-font-size{font-size: var(--wp--preset--font-size--jumbo) !important;}.has-gigantic-font-size{font-size: var(--wp--preset--font-size--gigantic) !important;}.has-colossal-font-size{font-size: var(--wp--preset--font-size--colossal) !important;}.has-system-font-font-family{font-family: var(--wp--preset--font-family--system-font) !important;}.has-serif-font-family{font-family: var(--wp--preset--font-family--serif) !important;}.has-mono-font-family{font-family: var(--wp--preset--font-family--mono) !important;}.wp-block-button .wp-block-button__link.has-primary-color{color: var(--wp--preset--color--primary) !important;}.wp-block-button .wp-block-button__link.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.wp-block-button .wp-block-button__link.has-white-color{color: var(--wp--preset--color--white) !important;}.wp-block-button .wp-block-button__link.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.wp-block-button .wp-block-button__link.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.wp-block-button .wp-block-button__link.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.wp-block-button .wp-block-button__link.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.wp-block-button .wp-block-button__link.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.wp-block-button .wp-block-button__link.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.wp-block-group.has-foreground-color{color: var(--wp--preset--color--foreground) !important;}.wp-block-group.has-background-color{color: var(--wp--preset--color--background) !important;}.wp-block-group.has-background-2-color{color: var(--wp--preset--color--background-2) !important;}.wp-block-group.has-primary-color{color: var(--wp--preset--color--primary) !important;}.wp-block-group.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.wp-block-group.has-foreground-background-color{background-color: var(--wp--preset--color--foreground) !important;}.wp-block-group.has-background-background-color{background-color: var(--wp--preset--color--background) !important;}.wp-block-group.has-background-2-background-color{background-color: var(--wp--preset--color--background-2) !important;}.wp-block-group.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.wp-block-group.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.wp-block-group.has-foreground-border-color{border-color: var(--wp--preset--color--foreground) !important;}.wp-block-group.has-background-border-color{border-color: var(--wp--preset--color--background) !important;}.wp-block-group.has-background-2-border-color{border-color: var(--wp--preset--color--background-2) !important;}.wp-block-group.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.wp-block-group.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
.wp-block-button .wp-block-button__link{background-color: var(--wp--preset--color--primary);border-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--background);}
</style>
<link data-minify="1" rel='stylesheet' id='dpsp-frontend-style-pro-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/social-pug/assets/dist/style-frontend-pro.2.16.4.css?ver=1696258883' media='all' />
<script>document.addEventListener('DOMContentLoaded', function(event) { if( typeof cpLoadCSS !== 'undefined' ) { cpLoadCSS('https://www.budgetbytes.com/wp-content/plugins/convertpro/assets/modules/css/cp-popup.min.css?ver=1.7.7', 0, 'all'); } }); </script>
<style id='cwp-font-inline-css'>
@font-face{
font-family: 'Montserrat';
font-weight: 800;
font-style: normal;
font-stretch: normal;
font-display: swap;
src: url('https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/fonts/montserrat-800.woff2') format('woff2');
}
@font-face{
font-family: 'Montserrat';
font-weight: 800;
font-style: italic;
font-stretch: normal;
font-display: swap;
src: url('https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/fonts/montserrat-800italic.woff2') format('woff2');
}
</style>
<link data-minify="1" rel='stylesheet' id='theme-style-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/assets/css/main.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='block-post-listing-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/inc/blocks/post-listing/block-post-listing.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='searchwp-forms-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/searchwp/assets/css/frontend/search-forms.css?ver=1696258883' media='all' />
<script async="async" data-noptimize="1" data-cfasync="false" src='https://scripts.mediavine.com/tags/budget-bytes-new-owner.js?ver=6.3.1' id='mv-script-wrapper-js'></script>
<script src='https://www.budgetbytes.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.0' id='jquery-core-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1' id='jquery-migrate-js' defer></script>
<link rel="https://api.w.org/" href="https://www.budgetbytes.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.budgetbytes.com/wp-json/wp/v2/posts/44653" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.budgetbytes.com/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://www.budgetbytes.com/?p=44653' />
<link rel="alternate" type="application/json+oembed" href="https://www.budgetbytes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.budgetbytes.com%2Fcreamy-coconut-curry-lentils-with-spinach%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.budgetbytes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.budgetbytes.com%2Fcreamy-coconut-curry-lentils-with-spinach%2F&format=xml" />
<style type="text/css"> .tippy-box[data-theme~="wprm"] { background-color: #333333; color: #FFFFFF; } .tippy-box[data-theme~="wprm"][data-placement^="top"] > .tippy-arrow::before { border-top-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="bottom"] > .tippy-arrow::before { border-bottom-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="left"] > .tippy-arrow::before { border-left-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="right"] > .tippy-arrow::before { border-right-color: #333333; } .tippy-box[data-theme~="wprm"] a { color: #FFFFFF; } .wprm-comment-rating svg { width: 24px !important; height: 24px !important; } img.wprm-comment-rating { width: 120px !important; height: 24px !important; } .wprm-comment-rating svg path { fill: #fcc51c; } .wprm-comment-rating svg polygon { stroke: #fcc51c; } .wprm-comment-ratings-container svg .wprm-star-full { fill: #fcc51c; } .wprm-comment-ratings-container svg .wprm-star-empty { stroke: #fcc51c; }.span_content .wprm-recipe ul.wprm-recipe-instructions li {
list-style-type: decimal!important;
}
</style><style type="text/css">.wprm-glossary-term {color: #5A822B;text-decoration: underline;cursor: help;}</style>
<script type="rocketlazyloadscript" data-grow-initializer="">!(function(){window.growMe||((window.growMe=function(e){window.growMe._.push(e);}),(window.growMe._=[]));var e=document.createElement("script");(e.type="text/javascript"),(e.src="https://faves.grow.me/main.js"),(e.defer=!0),e.setAttribute("data-grow-faves-site-id","U2l0ZToxY2E5NmIwMC1mMTc3LTQyZjAtOWRlMS0wMjJlNzM0NzhiMGQ=");var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t);})();</script>
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<!-- GTM Container placement set to automatic -->
<script data-cfasync="false" data-pagespeed-no-defer type="text/javascript">
var dataLayer_content = {"pagePostType":"post","pagePostType2":"single-post","pageCategory":["beansandgrains","dairy-free","egg-free","global","gluten-free","indian","lentils","main-dish","recipes","recipes-under-10","soy-free","under-3-per-serving","vegan","vegetarian"],"pageAttributes":["coconut-milk","curry-powder","garlic","ginger","lentils","olive-oil","onion","spinach","vegetable-broth"],"pagePostAuthor":"Beth - Budget Bytes","pagePostDate":"07.13.19","pagePostDateYear":"2019","pagePostDateMonth":"07","pagePostDateDay":"13","pagePostDateDayName":"Saturday","pagePostDateHour":"19","pagePostDateMinute":"00","pagePostDateIso":"2019-07-13T19:00:50-05:00","pagePostDateUnix":1563044450,"pagePostTerms":{"category":["Bean & Grain Recipes","Dairy Free Recipes","Egg Free Recipes","Globally Inspired Recipes","Gluten free Recipes","Indian Inspired Recipes","Lentil Recipes","Main Dish Recipes","Recipes","Recipes under $10","Soy Free Recipes","Under $3 per serving","Vegan Recipes","Vegetarian Recipes"],"post_tag":["Coconut Milk","Curry Powder","Garlic","Ginger","Lentils","Olive Oil","Onion","Spinach","Vegetable Broth"],"meta":{"meta-tbf-apply-live-fixes":"yes","meta-tbf-disabled-live-fixes":"a:0:{}","wprm_rating":"a:3:{s:5:\"count\";i:106;s:5:\"total\";i:527;s:7:\"average\";d:4.98;}","wprm_rating_average":"4.98","dpsp_networks_shares":"a:3:{s:9:\"pinterest\";i:11331;s:6:\"reddit\";i:7;s:7:\"twitter\";i:0;}","dpsp_networks_shares_total":"11338","dpsp_networks_shares_last_updated":"1644217611","dpsp_cache_shares_twitter_2":"0","classic-editor-remember":"classic-editor","dpsp_share_options":"a:7:{s:12:\"custom_image\";a:2:{s:2:\"id\";s:0:\"\";s:3:\"src\";s:0:\"\";}s:12:\"custom_title\";s:0:\"\";s:18:\"custom_description\";s:0:\"\";s:22:\"custom_image_pinterest\";a:2:{s:2:\"id\";s:5:\"44660\";s:3:\"src\";s:106:\"https:\/\/www.budgetbytes.com\/wp-content\/uploads\/2019\/07\/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg\";}s:22:\"custom_title_pinterest\";s:28:\"Creamy Coconut Curry Lentils\";s:28:\"custom_description_pinterest\";s:123:\"These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!\";s:12:\"custom_tweet\";s:0:\"\";}","dpsp_pinterest_hidden_images":"","dpsp_post_single_previous_urls":"","logtivity_last_logged":"2023-05-27 18:19:36","cwp_hide_affiliate_disclaimer":"0","cwp_hide_step_by_step_button":"0","cwp_post_publish_date":"","cwp_post_updated_date":"","wprm_rating_count":"106"}},"postID":44653,"postFormat":"standard"};
dataLayer.push( dataLayer_content );
</script>
<script data-cfasync="false">
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MHNH3ZW');
</script>
<!-- End Google Tag Manager -->
<!-- End Google Tag Manager for WordPress by gtm4wp.com --><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="profile" href="http://gmpg.org/xfn/11"><link rel="pingback" href="https://www.budgetbytes.com/xmlrpc.php"> <link rel="preload" href="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/fonts/montserrat-800.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/fonts/montserrat-800italic.woff2" as="font" type="font/woff2" crossorigin>
<link rel="icon" href="https://www.budgetbytes.com/wp-content/uploads/2022/05/cropped-cropped-favicon-32x32.png" sizes="32x32" />
<link rel="icon" href="https://www.budgetbytes.com/wp-content/uploads/2022/05/cropped-cropped-favicon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.budgetbytes.com/wp-content/uploads/2022/05/cropped-cropped-favicon-180x180.png" />
<meta name="msapplication-TileImage" content="https://www.budgetbytes.com/wp-content/uploads/2022/05/cropped-cropped-favicon-270x270.png" />
<style id="wp-custom-css">
/*Mediavine Mobile Fix*/
@media only screen and (max-width: 359px) {
.bb-recipe-card {
padding-left: 0px !important;
padding-right: 0px !important;
border: none !important;
box-shadow: none !important;
}
.wprm-recipe-instructions li .mv-ad-box {
margin-left: -32px !important;
}
.bb-recipe-card .wprm-call-to-action {
margin-left: 0px !important;
margin-right: 0px !important;
max-width: 100% !important;
}
}
/* NerdPress - Accessibility Options "Link" - AccessiBe
* Please Do Not Remove *
*/
.site-footer .site-footer__bottom .site-footer__links .site-footer__links-item, .site-footer .site-footer__bottom .site-footer__links .access-options {
text-decoration: underline;
}
.site-footer .site-footer__bottom .site-footer__links .access-options:hover {
cursor: pointer;
}
/* NerdPress AccessiBe Options Link End */
/* Nerdpress WPRM Author Link */
.wprm-recipe-author a {
color: #000;
}
/* NerdPress WPRM Author Link End */
/* NP Hide Legend on Gravity Form 7 - CTM 11/16/2022 */
.gform_required_legend {
display: none;
}
</style>
<noscript><style>.perfmatters-lazy[data-src]{display:none !important;}</style></noscript></head><body class="single wp-embed-responsive singular content-sidebar" id="top">
<!-- GTM Container placement set to automatic -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MHNH3ZW" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --><div class="site-container"><a class="skip-link screen-reader-text" href="#main-content">Skip to content</a><header class="site-header" role="banner"><div class="wrap"><a href="https://www.budgetbytes.com" rel="home" class="site-header__logo" aria-label="Budget Bytes Home"><img data-perfmatters-preload class="site-header__logo--primary" src="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo.svg" alt="Budget Bytes Logo" width="320px" height="48.89px"><img data-perfmatters-preload class="site-header__logo--reverse" src="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo-reverse.svg" alt="Budget Bytes Logo" width="240px" height="36px"></a><div class="site-header__toggles"><button aria-label="Menu" class="menu-toggle"><svg class="open" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-menu3"></use></svg><svg class="close" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-close"></use></svg></button></div><nav class="nav-menu" role="navigation"><div class="nav-primary"><ul id="primary-menu" class="menu"><li id="menu-item-80215" class="menu-item current-post-ancestor current-menu-parent current-post-parent menu-item-has-children"><a href="https://www.budgetbytes.com/category/recipes/"><span>Recipes</span></a><button aria-label="Submenu Dropdown" class="submenu-expand" tabindex="-1"><span class="submenu-expand__icon"></span></button>
<ul class="sub-menu">
<li id="menu-item-85960" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/#recent"><span>Recipe Search</span></a></li>
<li id="menu-item-80924" class="menu-item"><a href="https://www.budgetbytes.com/recipes/"><span>Categories</span></a></li>
<li id="menu-item-70675" class="menu-item"><a href="https://www.budgetbytes.com/recipes/#recipes-by-ingredient"><span>Ingredient Index</span></a></li>
<li id="menu-item-70676" class="menu-item"><a href="https://www.budgetbytes.com/random/"><span>Surprise Me</span></a></li>
<li id="menu-item-70677" class="menu-item"><a href="https://www.budgetbytes.com/category/extra-bytes/recipe-roundups/"><span>Recipe Roundups</span></a></li>
<li id="menu-item-70678" class="menu-item"><a href="https://www.budgetbytes.com/recipe-videos/"><span>Recipe Videos</span></a></li>
</ul>
</li>
<li id="menu-item-84507" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/seasonal/fall-recipes/"><span>Fall Recipes</span></a></li>
<li id="menu-item-70679" class="menu-item menu-item-has-children"><a href="/recipes/"><span>Popular</span></a><button aria-label="Submenu Dropdown" class="submenu-expand" tabindex="-1"><span class="submenu-expand__icon"></span></button>
<ul class="sub-menu">
<li id="menu-item-70680" class="menu-item"><a href="https://www.budgetbytes.com/category/extra-bytes/budget-friendly-meal-prep/"><span>Meal Prep</span></a></li>
<li id="menu-item-70681" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/meat/chicken/"><span>Chicken Recipes</span></a></li>
<li id="menu-item-70682" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/pasta/"><span>Pasta Recipes</span></a></li>
<li id="menu-item-70683" class="menu-item current-post-ancestor current-menu-parent current-post-parent"><a href="https://www.budgetbytes.com/category/recipes/vegetarian/"><span>Vegetarian Recipes</span></a></li>
<li id="menu-item-70684" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/slow-cooker/"><span>Slow Cooker Recipes</span></a></li>
<li id="menu-item-70685" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/one-pot/"><span>One Pot Meals</span></a></li>
<li id="menu-item-71219" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/breakfast/"><span>Breakfast Recipes</span></a></li>
<li id="menu-item-71220" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/soup/"><span>Soup Recipes</span></a></li>
<li id="menu-item-70687" class="menu-item"><a href="https://www.budgetbytes.com/category/how-to/"><span>How-To</span></a></li>
</ul>
</li>
<li id="menu-item-70686" class="menu-item"><a target="_blank" rel="noopener" href="https://shop.budgetbytes.com/"><span>Meal Plans</span></a></li>
<li id="menu-item-70688" class="menu-item"><a href="https://www.budgetbytes.com/shop/"><span>Shop</span></a></li>
<li id="menu-item-70817" class="menu-item menu-item-has-children"><a href="https://www.budgetbytes.com/about/"><span>About</span></a><button aria-label="Submenu Dropdown" class="submenu-expand" tabindex="-1"><span class="submenu-expand__icon"></span></button>
<ul class="sub-menu">
<li id="menu-item-70818" class="menu-item"><a href="https://www.budgetbytes.com/about/"><span>About Budget Bytes</span></a></li>
<li id="menu-item-70819" class="menu-item"><a href="https://www.budgetbytes.com/welcome-to-budget-bytes/"><span>New? Start Here</span></a></li>
<li id="menu-item-70820" class="menu-item"><a href="https://www.budgetbytes.com/faq/"><span>FAQ</span></a></li>
<li id="menu-item-70821" class="menu-item"><a href="https://www.budgetbytes.com/contact/"><span>Contact</span></a></li>
</ul>
</li>
</ul></div></nav><button aria-label="Search" class="search-toggle"><svg class="open" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-search-fat"></use></svg><svg class="close" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-close"></use></svg></button></div><div class="header-search"><div class="header-search__inner">
<form role="search" method="get" class="search-form" action="https://www.budgetbytes.com/">
<label>
<span class="screen-reader-text">Search for</span>
<input type="search" class="search-field" placeholder="Search recipes" value="" name="s" title="Search for" />
</label>
<button type="submit" aria-label="Submit" class="search-submit"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-search-fat"></use></svg></button>
</form>
</div></div></header><div class="site-inner" id="main-content"><div class="content-area"><main class="site-main" role="main"><article class="type-post mv-content-wrapper grow-content-body"><header class="entry-header"><p id="breadcrumbs" class="breadcrumb"><span><span><a href="https://www.budgetbytes.com/">Budget Bytes</a></span> » <span><a href="https://www.budgetbytes.com/category/recipes/">Recipes</a></span> » <span><a href="https://www.budgetbytes.com/category/recipes/vegetarian/">Vegetarian Recipes</a></span> » <span><a href="https://www.budgetbytes.com/category/recipes/vegetarian/vegan/">Vegan Recipes</a></span> » <span class="breadcrumb_last" aria-current="page">Creamy Coconut Curry Lentils with Spinach</span></span></p><h1 class="entry-title">Creamy Coconut Curry Lentils with Spinach</h1><span class="cost-per">$6.29 recipe / $1.57 serving</span><div class="entry-header__meta"><div class="entry-header__meta-left"><a class="entry-header__meta-avatar" href="https://www.budgetbytes.com/author/beth/" aria-hidden="true" tabindex="-1"><img data-perfmatters-preload alt='' src='https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-60x60.jpg' srcset='https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-120x120.jpg 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async'/></a><div class="entry-header__meta-inner"><span class="entry-header__author">by <a href="https://www.budgetbytes.com/author/beth/">Beth - Budget Bytes</a></span><p class="entry-date"><span class="entry-date__published">published <time datetime="2019-07-13">Jul 13, 2019</time></span></p></div></div><div class="entry-header__meta-right"><style>#wprm-recipe-rating-1 .wprm-rating-star.wprm-rating-star-full svg * { fill: #fbc41b; }#wprm-recipe-rating-1 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-rating-1-33); }#wprm-recipe-rating-1 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-rating-1-50); }#wprm-recipe-rating-1 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-rating-1-66); }linearGradient#wprm-recipe-rating-1-33 stop { stop-color: #fbc41b; }linearGradient#wprm-recipe-rating-1-50 stop { stop-color: #fbc41b; }linearGradient#wprm-recipe-rating-1-66 stop { stop-color: #fbc41b; }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><linearGradient id="wprm-recipe-rating-1-33"><stop offset="0%" stop-opacity="1" /><stop offset="33%" stop-opacity="1" /><stop offset="33%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-rating-1-50"><stop offset="0%" stop-opacity="1" /><stop offset="50%" stop-opacity="1" /><stop offset="50%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-rating-1-66"><stop offset="0%" stop-opacity="1" /><stop offset="66%" stop-opacity="1" /><stop offset="66%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs></svg><div id="wprm-recipe-rating-1" class="wprm-recipe-rating wprm-recipe-rating-separate"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">4.98</span> from <span class="wprm-recipe-rating-count">106</span> votes</div></div></div></div><div class="single-post-jump-buttons"><a href="https://pinterest.com/pin/create/button/?url=https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/&media=https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg&description=Creamy%20Coconut%20Curry%20Lentils" title="Share on Pinterest" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button pinterest shared-counts-no-count" data-postid="44653" data-pin-do="none" data-social-network="Pinterest" data-social-action="Pin" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"></span><span class="shared-counts-label">Pin Recipe</span></span></a><a href="#wprm-recipe-container-44661" data-recipe="44661" style="color: #292929;background-color: var(--wp--preset--color--primary);border-color: #292929;border-radius: 0px;padding: 16px 24px;" class="wprm-recipe-jump wprm-recipe-link wprm-jump-to-recipe-shortcode wprm-block-text-uppercase wprm-jump-smooth-scroll wprm-recipe-jump-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-smooth-scroll="500">Jump to recipe →</a></div><p class="affiliate-disclaimer">This post contains some affiliate links, which means that we make a small commission off items you purchase at no additional cost to you.</p></header><div class="entry-content"><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="800" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg" data-pin-title="Creamy Coconut Curry Lentils" data-pin-description="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!" alt="Overhead view of a plate of Creamy Coconut Curry Lentils with Spinach along side roasted carrots, rice, and naan" class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-no-lazy="1" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg"></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span>
<p>I’ve been trying to brain storm up some easy plant-based meals lately, and this week’s creation was these Creamy Coconut Curried Lentils with Spinach, which are kind of like the creamy cousin of my <a href="https://www.budgetbytes.com/curried-chickpeas-spinach/">Curried Chickpeas with Spinach</a>. I swapped out the canned chickpeas for quick cooking lentils, and instead of a tomato-based curry sauce, I went with a super rich creamy coconut sauce, that pairs oh so well with the earthy lentils and heady curry spices.</p>
<span id="more-44653"></span>
<figure class="wp-block-image"><img decoding="async" width="800" height="1067" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='1067'%20viewBox='0%200%20800%201067'%3E%3C/svg%3E" alt="Close up overhead view of Creamy Coconut Curry Lentils with Spinach on a plate with curry roasted carrots, rice, and naan." class="wp-image-44657 perfmatters-lazy" title="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep! BudgetBytes.com" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V-400x534.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V-768x1024.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V-640x853.jpg 640w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V-150x200.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="1067" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V.jpg" alt="Close up overhead view of Creamy Coconut Curry Lentils with Spinach on a plate with curry roasted carrots, rice, and naan." class="wp-image-44657" title="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep! BudgetBytes.com" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V-400x534.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V-768x1024.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V-640x853.jpg 640w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V-150x200.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-V.jpg"></noscript></figure>
<p>As you can see in the photos, I paired these Creamy Coconut Curried Lentils with my <a href="https://www.budgetbytes.com/curry-roasted-carrots/">Curry Roasted Carrots</a> and some <a href="https://www.budgetbytes.com/naan/">naan</a>. The sweetness of the carrots balances perfectly with the earthy lentils. If you’re not up for making an entirely separate side dish, you can even just slice up a few carrots and let them simmer along with the lentils in the skillet!</p>
<h2 class="wp-block-heading" id="h-make-it-spicy-or-mild">Make it Spicy or Mild</h2>
<p>This recipe is really easy to make either spicy or mild and tastes fantastic either way. Curry powder can be either hot or mild, so make sure you know which type you’re buying. If you have a mild curry powder and want your coconut curry lentils to be spicy, simply add a little cayenne pepper, or top the cooked dish with a few red pepper flakes. Or, if you’d like to try to make your own curry powder, try this recipe for <a href="https://www.spiceitupp.com/easy-homemade-curry-powder-recipe/" target="_blank" rel="noopener noreferrer">Easy Homemade Curry Powder</a> from Spiceitupp.com.</p>
<h2 class="wp-block-heading" id="h-what-type-of-lentils-should-i-use">What Type of Lentils Should I Use?</h2>
<p>Brown lentils are the best for this dish because they hold their shape through simmering, unlike red or yellow lentils, but still cook really quickly, unlike green lentils. Brown lentils are sometimes just labeled “lentils” in the U.S., so just check the recommended cooking time on the package. If it says simmer for about 20 minutes, you’ve got the right type of lentil! </p>
<h2 class="wp-block-heading" id="h-is-there-a-substitute-for-coconut-milk">Is There a Substitute for Coconut Milk?</h2>
<p>Heavy cream or half and half can be used in place of the coconut milk in this recipe, although you probably won’t need quite as much as the coconut milk used. Stick to about 1/2 cup for the heavy cream or 3/4 cup for half and half.</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" data-pin-description="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep! BudgetBytes.com #vegan #lentils" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Close up of Creamy Coconut Curry Lentils and Spinach being stirred in the skillet" class="wp-image-44656 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" data-pin-description="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep! BudgetBytes.com #vegan #lentils" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet.jpg" alt="Close up of Creamy Coconut Curry Lentils and Spinach being stirred in the skillet" class="wp-image-44656" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-skillet.jpg"></noscript></figure>
<div id="recipe"></div><div class="block-area block-area-before-recipe"><div class="single-share-wrap"><span class="single-share-wrap__header">Share this recipe</span><div class="shared-counts-wrap before-recipe style-icon"><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/&display=popup&ref=plugin&src=share_buttondescription=Creamy%20Coconut%20Curry%20Lentils" title="Share on Facebook" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button facebook shared-counts-no-count" data-postid="44653" data-social-network="Facebook" data-social-action="Share" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-facebook"></use></svg></span><span class="shared-counts-label">Facebook</span></span></a><a href="https://twitter.com/share?url=https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/&text=Creamy%20Coconut%20Curry%20Lentils%20with%20Spinachdescription=Creamy%20Coconut%20Curry%20Lentils" title="Share on Twitter" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button twitter shared-counts-no-count" data-postid="44653" data-social-network="Twitter" data-social-action="Tweet" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-twitter"></use></svg></span><span class="shared-counts-label">Tweet</span></span></a><a href="https://pinterest.com/pin/create/button/?url=https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/&media=https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg&description=Creamy%20Coconut%20Curry%20Lentils" title="Share on Pinterest" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button pinterest shared-counts-no-count" data-postid="44653" data-pin-do="none" data-social-network="Pinterest" data-social-action="Pin" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-pinterest"></use></svg></span><span class="shared-counts-label">Pin</span></span></a><a href="mailto:?subject=Your%20friend%20has%20shared%20an%20article%20with%20you.&body=Creamy%20Coconut%20Curry%20Lentils%20with%20Spinach%0D%0Ahttps%3A%2F%2Fwww.budgetbytes.com%2Fcreamy-coconut-curry-lentils-with-spinach%2F%0D%0Adescription=Creamy%20Coconut%20Curry%20Lentils" title="Share via Email" class="shared-counts-button email no-scroll shared-counts-no-count" data-postid="44653" data-social-network="Email" data-social-action="Emailed" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-email1"></use></svg></span><span class="shared-counts-label">Email</span></span></a></div></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="800" height="1200" decoding="async" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg" data-pin-title="Creamy Coconut Curry Lentils" data-pin-description="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!" alt="Overhead view of a plate of Creamy Coconut Curry Lentils with Spinach along side roasted carrots, rice, and naan" class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-no-lazy="1" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg"></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span>
<span class="cp-load-after-post"></span></div><div id="wprm-recipe-container-44661" class="wprm-recipe-container" data-recipe-id="44661" data-servings="4"><div class="wprm-recipe wprm-recipe-template-2022--nutrition-disclaimer"><div class="bb-recipe-card">
<div class="bb-recipe-card__top">
<div class="bb-recipe-card__top-left">
<span class="bb-recipe-card__title">
<h2 class="wprm-recipe-name wprm-block-text-bold">Creamy Coconut Curry Lentils with Spinach</h2>
</span>
<style>#wprm-recipe-rating-2 .wprm-rating-star.wprm-rating-star-full svg * { fill: #fbc41b; }#wprm-recipe-rating-2 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-rating-2-33); }#wprm-recipe-rating-2 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-rating-2-50); }#wprm-recipe-rating-2 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-rating-2-66); }linearGradient#wprm-recipe-rating-2-33 stop { stop-color: #fbc41b; }linearGradient#wprm-recipe-rating-2-50 stop { stop-color: #fbc41b; }linearGradient#wprm-recipe-rating-2-66 stop { stop-color: #fbc41b; }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><lineargradient id="wprm-recipe-rating-2-33"><stop offset="0%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-rating-2-50"><stop offset="0%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-rating-2-66"><stop offset="0%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs></svg><div id="wprm-recipe-rating-2" class="wprm-recipe-rating wprm-recipe-rating-inline"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">4.98</span> from <span class="wprm-recipe-rating-count">106</span> votes</div></div>
<div class="wprm-recipe-summary wprm-block-text-normal"><span class="p1" style="display: block;">These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!</span></div>
<div class="wprm-spacer"></div>
<div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-author-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-author-label">Author: </span><span class="wprm-recipe-details wprm-recipe-author wprm-block-text-normal"><a href="https://www.budgetbytes.com/author/beth/" target="_blank">Beth – Budget Bytes</a></span></div>
</div>
<div class="bb-recipe-card__top-right">
<div class="wprm-recipe-image wprm-block-image-normal"><img style="border-width: 0px;border-style: solid;border-color: #666666;" data-pin-nopin="true" width="268" height="268" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-500x500.jpg" class="attachment-268x268 size-268x268" alt="A hand dipping a piece of naan into the Creamy Coconut Curried Lentils with Spinach on a plate with curry roasted carrots" decoding="async" fetchpriority="high" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-96x96.jpg 96w" sizes="(max-width: 268px) 100vw, 268px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg"></div>
</div>
</div>
<div class="bb-recipe-card__meta">
<div class="wprm-recipe-block-container wprm-recipe-block-container-separated wprm-block-text-normal wprm-recipe-servings-container" style=""><span class="wprm-recipe-icon wprm-recipe-servings-icon"><img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt data-pin-nopin="true" data-pin-media="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/meal-plans.svg" class="perfmatters-lazy" data-src="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/meal-plans.svg" /><noscript><img decoding="async" src="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/meal-plans.svg" alt="" data-pin-nopin="true" data-pin-media="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/meal-plans.svg"></noscript></span> <span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-servings-label">Servings </span><span class="wprm-recipe-servings-with-unit"><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-44661 wprm-recipe-servings-adjustable-text wprm-block-text-normal" data-initial-servings="" data-recipe="44661" aria-label="Adjust recipe servings">4</span> <span class="wprm-recipe-servings-unit wprm-recipe-details-unit wprm-block-text-normal">1.25 cups curry lentils + 1 cup rice</span></span></div>
<div class="wprm-recipe-meta-container wprm-recipe-times-container wprm-recipe-details-container wprm-recipe-details-container-inline wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-prep-time-label">Prep </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-prep_time wprm-recipe-prep_time-minutes">5<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-prep_time-unit wprm-recipe-prep_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-cook-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-cook-time-label">Cook </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-cook_time wprm-recipe-cook_time-minutes">40<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-cook_time-unit wprm-recipe-cook_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-total-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-total-time-label">Total </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">45<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-total_time-unit wprm-recipe-total_timeunit-minutes" aria-hidden="true">mins</span></span></div></div>
</div>
<div class="bb-recipe-card__buttons">
<span class="wprm-recipe-grow-container"><a href="https://app.grow.me" target="_blank" rel="nofollow noreferrer" style="color: #292929;background-color: #ffffff;border-color: #292929;border-radius: 0px;padding: 10px 5px;" class="wprm-recipe-grow-not-saved wprm-recipe-grow wprm-recipe-link wprm-block-text-normal wprm-recipe-link-wide-button wprm-color-accent" data-recipe-id="44661">Save Recipe</a><a href="https://app.grow.me" target="_blank" rel="nofollow noreferrer" style="color: #292929;background-color: #ffffff;border-color: #292929;border-radius: 0px;padding: 10px 5px;display: none;" class="wprm-recipe-grow-saved wprm-recipe-grow wprm-recipe-link wprm-block-text-normal wprm-recipe-link-wide-button wprm-color-accent" data-recipe-id="44661">Saved!</a></span>
<a href="https://www.budgetbytes.com/wprm_print/44661" style="color: #292929;background-color: #ffffff;border-color: #292929;border-radius: 0px;padding: 10px 5px;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal wprm-recipe-print-wide-button wprm-recipe-link-wide-button wprm-color-accent" data-recipe-id="44661" data-template="" target="_blank" rel="nofollow">Print Recipe</a>
</div>
<div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-44661-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="44661" data-servings="4"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Ingredients</h3><div class="wprm-recipe-ingredient-group"><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="0"><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">Tbsp</span> <span class="wprm-recipe-ingredient-name"><a href="https://amzn.to/3WsanNt" class="wprm-recipe-ingredient-link" target="_blank" rel="nofollow">olive oil</a></span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.24)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="1"><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">cloves</span> <span class="wprm-recipe-ingredient-name">garlic</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.16)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="2"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">tsp</span> <span class="wprm-recipe-ingredient-name">grated fresh ginger</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.10)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="3"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">small</span> <span class="wprm-recipe-ingredient-name">yellow onion</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.21)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="4"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">Tbsp </span> <span class="wprm-recipe-ingredient-name">curry powder*</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.30)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="5"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">brown lentils (dry)</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.67)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="6"><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">vegetable broth**</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.26)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="7"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">13oz. can</span> <span class="wprm-recipe-ingredient-name"><a href="https://amzn.to/3ZiKwuh" class="wprm-recipe-ingredient-link" target="_blank" rel="nofollow">coconut milk</a></span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($1.99)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="8"><span class="wprm-recipe-ingredient-amount">3</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">fresh baby spinach</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($1.61)</span></li></ul></div><div class="wprm-recipe-ingredient-group"><h4 class="wprm-recipe-group-name wprm-recipe-ingredient-group-name wprm-block-text-normal">For Serving (optional)</h4><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="10"><span class="wprm-recipe-ingredient-amount">4</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">cooked rice</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.60)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="11"><span class="wprm-recipe-ingredient-amount">1/4</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">chopped fresh cilantro</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.15)</span></li></ul></div></div>
<div class="wprm-recipe-instructions-container wprm-recipe-44661-instructions-container wprm-block-text-normal" data-recipe="44661"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none wprm-header-has-actions" style="">Instructions </h3><div class="wprm-recipe-instruction-group"><ul class="wprm-recipe-instructions"><li id="wprm-recipe-44661-step-0-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Mince the garlic, grate the ginger, and dice the onion. Add the olive oil, garlic, and ginger to a deep skillet, Dutch oven, or soup pot. Sauté the garlic and ginger over medium heat for 1 minute, or just until the garlic becomes soft and fragrant. </span></div></li><li id="wprm-recipe-44661-step-0-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Add the diced onion to the skillet and continue to sauté over medium until the onion is soft and translucent. Add the curry powder and continue to sauté for about one minute more to toast the spices.</span></div></li><li id="wprm-recipe-44661-step-0-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Add the dry lentils and vegetable broth to the skillet. Stir to dissolve any browned bits from the bottom of the skillet. Place a lid on top, turn the heat up to medium-high, and bring the broth to a boil. Once boiling, turn the heat down to low, and let it simmer for 20 minutes, stirring occasionally.</span></div></li><li id="wprm-recipe-44661-step-0-3" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">After simmering for 20 minutes the lentils should be tender and most of the broth absorbed. Add the can of coconut milk and stir to combine. Turn the heat back up to medium and allow the skillet to come back up to a simmer. Let it simmer without a lid for an additional 10 minutes, stirring often, to thicken the mixture. </span></div></li><li id="wprm-recipe-44661-step-0-4" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Once thickened, turn the heat off. Add the fresh spinach and stir gently until the spinach has wilted. Taste the mixture and adjust the salt or curry powder to your liking, if needed.</span></div></li><li id="wprm-recipe-44661-step-0-5" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Serve over a bowl of rice, and top with chopped cilantro if desired.</span></div></li></ul></div></div><span class="bb-recipe-card__note"><p>See how we <a href="/how-to-calculate-recipe-costs/">calculate recipe costs here</a>.</p>
</span>
<div class="wprm-spacer"></div>
<hr>
<div id="recipe-video"></div><div id="wprm-recipe-video-container-44661" class="wprm-recipe-video-container"><h3 class="wprm-recipe-header wprm-recipe-video-header wprm-block-text-none wprm-align-left wprm-header-decoration-none" style="">Video</h3><div class="wprm-recipe-video"><div id="cszu5igarnurncpmbfcm" data-volume="70" data-ratio="16:9"></div>
<script type="text/javascript" src="//video.mediavine.com/videos/cszu5igarnurncpmbfcm.js" async data-noptimize></script></div></div>
<div class="wprm-recipe-notes-container wprm-block-text-normal"><h3 class="wprm-recipe-header wprm-recipe-notes-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Notes</h3><div class="wprm-recipe-notes"><span style="display: block;">*The potency of curry powder can vary quite a bit from brand to brand and with freshness, so you may need to add more to your liking. </span><div class="wprm-spacer"></div>
<span style="display: block;">**If your vegetable broth does not contain a lot of salt, you may need to add salt at the end to really make the flavors pop.</span></div></div>
<h3 class="wprm-recipe-header wprm-recipe-nutrition-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Nutrition</h3><div class="wprm-nutrition-label-container wprm-nutrition-label-container-grouped wprm-block-text-normal" style="text-align: left;"><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-serving_size" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Serving: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">1.25</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">Cups</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calories" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Calories: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">494.13</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">kcal</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-carbohydrates" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Carbohydrates: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">83.93</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-protein" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Protein: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">17.83</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fat" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">8.18</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sodium" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Sodium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">844.08</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">mg</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fiber" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Fiber: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">8</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">g</span></span></div>
<div class="wprm-spacer"></div>
<i>Read our full <a href="https://www.budgetbytes.com/nutrition-information-disclaimer/">nutrition disclaimer here.</a></i>
<div class="wprm-call-to-action wprm-call-to-action-simple" style="color: #ffffff;background-color: #000000;margin: 0px;padding-top: 24px;padding-bottom: 24px;"><span class="wprm-recipe-icon wprm-call-to-action-icon"><img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt data-pin-nopin="true" data-pin-media="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/instagram.svg" class="perfmatters-lazy" data-src="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/instagram.svg" /><noscript><img decoding="async" src="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/instagram.svg" alt="" data-pin-nopin="true" data-pin-media="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/instagram.svg"></noscript></span> <span class="wprm-call-to-action-text-container"><span class="wprm-call-to-action-header" style="color: #ffffff;">Have you tried this recipe?</span><span class="wprm-call-to-action-text">Mention <a href="https://www.instagram.com/budgetbytes" target="_blank" rel="noreferrer noopener" style="color: #ffffff">@budgetbytes</a> or tag <a href="https://www.instagram.com/explore/tags/budgetbytes" target="_blank" rel="noreferrer noopener" style="color: #ffffff">#budgetbytes</a> on Instagram!</span></span></div>
</div>
<div id="recipe-step-by-step"></div></div></div>
<p>Scroll down for the step by step photos!</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="A hand dipping a piece of naan into the Creamy Coconut Curried Lentils with Spinach on a plate with curry roasted carrots" class="wp-image-44655 perfmatters-lazy" title="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep! BudgetBytes.com" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg" alt="A hand dipping a piece of naan into the Creamy Coconut Curried Lentils with Spinach on a plate with curry roasted carrots" class="wp-image-44655" title="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep! BudgetBytes.com" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-dip-naan.jpg"></noscript></figure>
<h2 class="wp-block-heading" id="h-how-to-make-creamy-curried-lentils-step-by-step-photos">How to Make Creamy curried lentils – Step by Step Photos</h2>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Minced garlic and grated ginger being sautéed in a skillet with a wooden spatula" class="wp-image-44669 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils.jpg" alt="Minced garlic and grated ginger being sautéed in a skillet with a wooden spatula" class="wp-image-44669" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Garlic-and-Ginger-for-curried-lentils.jpg"></noscript></figure>
<p>Mince two cloves of garlic, grate about 1 tsp fresh ginger, and dice one small onion. Add 2 Tbsp olive oil, the minced garlic, and grated ginger to a deep skillet (a Dutch oven or soup pot will also work). Sauté for about one minute, or just until the garlic is soft and fragrant.</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Sautéed onion and curry powder in the skillet" class="wp-image-44668 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder.jpg" alt="Sautéed onion and curry powder in the skillet" class="wp-image-44668" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Sauted-Onion-and-curry-powder.jpg"></noscript></figure>
<p>Add the diced onion and continue to sauté until the onion is soft and translucent. Once the onion is softened, add 1 Tbsp curry powder. Continue to sauté for one minute more to toast the spices.</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Dry lentils being poured into the skillet" class="wp-image-44670 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils.jpg" alt="Dry lentils being poured into the skillet" class="wp-image-44670" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-lentils.jpg"></noscript></figure>
<p>Add 1 cup dry brown lentils to the skillet…</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Vegetable broth being poured into the skillet" class="wp-image-44671 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth.jpg" alt="Vegetable broth being poured into the skillet" class="wp-image-44671" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-vegetable-Broth.jpg"></noscript></figure>
<p>Along with 2 cups of vegetable broth. I use Better Than Bouillon, which contains a fair amount of salt. If your broth doesn’t have a lot of salt, you may need to add some to the dish at the end to help the flavors pop.</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Lentils after being simmered." class="wp-image-44664 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils.jpg" alt="Lentils after being simmered." class="wp-image-44664" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Lentils.jpg"></noscript></figure>
<p>Place a lid on the skillet, turn the heat up to medium-high, and let it come up to a boil. Once it reaches a boil, turn the heat down to low and let it simmer for 20 minutes (with the lid on). After 20 minutes the lentils should be tender and most of the broth absorbed.</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Coconut milk being stirred into the skillet" class="wp-image-44666 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk.jpg" alt="Coconut milk being stirred into the skillet" class="wp-image-44666" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Coconut-Milk.jpg"></noscript></figure>
<p>Stir in one 13oz. can of coconut milk. </p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Simmered coconut curry lentils with a wooden spatula" class="wp-image-44667 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils.jpg" alt="Simmered coconut curry lentils with a wooden spatula" class="wp-image-44667" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Simmered-Coconut-Curry-Lentils.jpg"></noscript></figure>
<p>Turn the heat back up to medium and let it come back up to a simmer. Let it simmer for 10 more minutes, without a lid, stirring often. This will break down the lentils a little more and reduce the coconut milk a little, making it thicker.</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Fresh spinach added to the skillet" class="wp-image-44663 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach.jpg" alt="Fresh spinach added to the skillet" class="wp-image-44663" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Add-Fresh-Spinach.jpg"></noscript></figure>
<p>Turn the heat off and add about 3 cups (or three handfuls) of fresh spinach to the skillet.</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Spinach wilted into the coconut curry lentils" class="wp-image-44665 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils.jpg" alt="Spinach wilted into the coconut curry lentils" class="wp-image-44665" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Wilted-Spinach-in-Creamy-Coconut-Curry-Lentils.jpg"></noscript></figure>
<p>Gently stir and allow the residual heat to wilt the spinach. Once wilted, give it a taste and adjust the curry powder or salt if needed.</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Creamy Coconut Curry Lentils with spinach on a plate with rice, naan, and curry roasted carrots." class="wp-image-44659 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate.jpg" alt="Creamy Coconut Curry Lentils with spinach on a plate with rice, naan, and curry roasted carrots." class="wp-image-44659" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-close-plate.jpg"></noscript></figure>
<p>And then it’s ready to serve! I like to serve my Creamy Coconut Curry Lentils over rice to soak up all that delicious creamy curry, but it’s also great with <a href="https://www.budgetbytes.com/naan/">Naan </a>and <a href="https://www.budgetbytes.com/curry-roasted-carrots/">Curry Roasted Carrots</a>. </p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="Creamy Coconut Curry Lentils in a glass meal prep container with rice and curry roasted carrots" class="wp-image-44672 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep.jpg" alt="Creamy Coconut Curry Lentils in a glass meal prep container with rice and curry roasted carrots" class="wp-image-44672" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-meal-prep.jpg"></noscript></figure>
<p>And of course I meal prepped this. :)</p>
<figure class="wp-block-image"><img decoding="async" width="800" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='600'%20viewBox='0%200%20800%20600'%3E%3C/svg%3E" alt="A forkful of Creamy Coconut Curry Lentils being lifted from the plate" class="wp-image-44654 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="800" height="600" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful.jpg" alt="A forkful of Creamy Coconut Curry Lentils being lifted from the plate" class="wp-image-44654" srcset="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curry-Lentils-with-Spinach-forkful.jpg"></noscript></figure>
<div class="block-callout headline-callout"><h2 class="block-callout__header"><span>More Easy Curry Recipes</span></h2><div class="block-callout__innerBlocks">
<section class="block-post-listing layout-beta"><div class="block-post-listing__inner"><article class="post-summary post-summary--secondary"><a href="https://www.budgetbytes.com/butternut-squash-curry/" aria-label="ViewButternut Squash Curry"><div class="post-summary__image"><img width="268" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='268'%20height='200'%20viewBox='0%200%20268%20200'%3E%3C/svg%3E" class="attachment-thumbnail-tertiary size-thumbnail-tertiary perfmatters-lazy" alt="Close up overhead view of butternut squash curry in a bowl with rice." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-268x200.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl.jpg 1200w" data-sizes="(max-width: 767px) 50vw, 25vw" /><noscript><img width="268" height="200" src="https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-268x200.jpg" class="attachment-thumbnail-tertiary size-thumbnail-tertiary" alt="Close up overhead view of butternut squash curry in a bowl with rice." decoding="async" sizes="(max-width: 767px) 50vw, 25vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl.jpg 1200w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/11/Butternut-Squash-Curry-Bowl.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Butternut Squash Curry</h3><span class="cost-per">$7.23 recipe / $1.81 serving</span></div></a></article><article class="post-summary post-summary--secondary"><a href="https://www.budgetbytes.com/curried-chickpeas-spinach/" aria-label="ViewCurried Chickpeas with Spinach"><div class="post-summary__image"><img width="268" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='268'%20height='200'%20viewBox='0%200%20268%20200'%3E%3C/svg%3E" class="attachment-thumbnail-tertiary size-thumbnail-tertiary perfmatters-lazy" alt="These super fast Curried Chickpeas with spinach are packed with flavor and nutrients, vegan, gluten-free, and filling! Plus they freeze great! BudgetBytes.com" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-268x200.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished.jpg 800w" data-sizes="(max-width: 767px) 50vw, 25vw" /><noscript><img width="268" height="200" src="https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-268x200.jpg" class="attachment-thumbnail-tertiary size-thumbnail-tertiary" alt="These super fast Curried Chickpeas with spinach are packed with flavor and nutrients, vegan, gluten-free, and filling! Plus they freeze great! BudgetBytes.com" decoding="async" sizes="(max-width: 767px) 50vw, 25vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished.jpg 800w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2013/12/Curried-Cickpeas-with-Spinach-Finished.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Curried Chickpeas with Spinach</h3><span class="cost-per">$4.68 recipe / $1.17 serving</span></div></a></article><article class="post-summary post-summary--secondary"><a href="https://www.budgetbytes.com/chana-saag/" aria-label="ViewChana Saag Curry – Chickpea and Spinach Curry"><div class="post-summary__image"><img width="268" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='268'%20height='200'%20viewBox='0%200%20268%20200'%3E%3C/svg%3E" class="attachment-thumbnail-tertiary size-thumbnail-tertiary perfmatters-lazy" alt="Two bowls of chana saag with rice, next to the skillet and a piece of torn naan" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-268x200.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice.jpg 800w" data-sizes="(max-width: 767px) 50vw, 25vw" /><noscript><img width="268" height="200" src="https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-268x200.jpg" class="attachment-thumbnail-tertiary size-thumbnail-tertiary" alt="Two bowls of chana saag with rice, next to the skillet and a piece of torn naan" decoding="async" sizes="(max-width: 767px) 50vw, 25vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice.jpg 800w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2013/05/Chana-Saag-bowls-with-rice.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Chana Saag Curry – Chickpea and Spinach Curry</h3><span class="cost-per">$7.67 recipe / $1.28 serving</span></div></a></article><article class="post-summary post-summary--secondary"><a href="https://www.budgetbytes.com/coconut-curry-ramen/" aria-label="ViewCoconut Curry Ramen"><div class="post-summary__image"><img width="268" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='268'%20height='200'%20viewBox='0%200%20268%20200'%3E%3C/svg%3E" class="attachment-thumbnail-tertiary size-thumbnail-tertiary perfmatters-lazy" alt="Close up overhead view of a bowl of coconut curry ramen" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-268x200.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow.jpg 1200w" data-sizes="(max-width: 767px) 50vw, 25vw" /><noscript><img width="268" height="200" src="https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-268x200.jpg" class="attachment-thumbnail-tertiary size-thumbnail-tertiary" alt="Close up overhead view of a bowl of coconut curry ramen" decoding="async" sizes="(max-width: 767px) 50vw, 25vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow.jpg 1200w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/12/Coconut-Curry-Ramen-yellow.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Coconut Curry Ramen</h3><span class="cost-per">$1.34 recipe / $1.34 serving</span></div></a></article></div></section>
</div></div><span class="cp-load-after-post"></span></div></article><div class="single-post-bottom"><div class="single-share-wrap"><span class="single-share-wrap__header">Share this recipe</span><div class="shared-counts-wrap style-icon"><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/&display=popup&ref=plugin&src=share_buttondescription=Creamy%20Coconut%20Curry%20Lentils" title="Share on Facebook" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button facebook shared-counts-no-count" data-postid="44653" data-social-network="Facebook" data-social-action="Share" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-facebook"></use></svg></span><span class="shared-counts-label">Facebook</span></span></a><a href="https://twitter.com/share?url=https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/&text=Creamy%20Coconut%20Curry%20Lentils%20with%20Spinachdescription=Creamy%20Coconut%20Curry%20Lentils" title="Share on Twitter" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button twitter shared-counts-no-count" data-postid="44653" data-social-network="Twitter" data-social-action="Tweet" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-twitter"></use></svg></span><span class="shared-counts-label">Tweet</span></span></a><a href="https://pinterest.com/pin/create/button/?url=https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/&media=https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg&description=Creamy%20Coconut%20Curry%20Lentils" title="Share on Pinterest" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button pinterest shared-counts-no-count" data-postid="44653" data-pin-do="none" data-social-network="Pinterest" data-social-action="Pin" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-pinterest"></use></svg></span><span class="shared-counts-label">Pin</span></span></a><a href="mailto:?subject=Your%20friend%20has%20shared%20an%20article%20with%20you.&body=Creamy%20Coconut%20Curry%20Lentils%20with%20Spinach%0D%0Ahttps%3A%2F%2Fwww.budgetbytes.com%2Fcreamy-coconut-curry-lentils-with-spinach%2F%0D%0Adescription=Creamy%20Coconut%20Curry%20Lentils" title="Share via Email" class="shared-counts-button email no-scroll shared-counts-no-count" data-postid="44653" data-social-network="Email" data-social-action="Emailed" data-social-target="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-email1"></use></svg></span><span class="shared-counts-label">Email</span></span></a></div></div><p class="term-list">Posted in: <a href="https://www.budgetbytes.com/category/recipes/beansandgrains/" rel="tag">Bean & Grain Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/dairy-free/" rel="tag">Dairy Free Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/egg-free/" rel="tag">Egg Free Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/global/" rel="tag">Globally Inspired Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/gluten-free/" rel="tag">Gluten free Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/global/asian/indian/" rel="tag">Indian Inspired Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/beansandgrains/lentils/" rel="tag">Lentil Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/main-dish/" rel="tag">Main Dish Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/" rel="tag">Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/cost-per-recipe/recipes-under-10/" rel="tag">Recipes under $10</a>, <a href="https://www.budgetbytes.com/category/recipes/soy-free/" rel="tag">Soy Free Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/cost-per-serving/under-3-per-serving/" rel="tag">Under $3 per serving</a>, <a href="https://www.budgetbytes.com/category/recipes/vegetarian/vegan/" rel="tag">Vegan Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/vegetarian/" rel="tag">Vegetarian Recipes</a></p><div class="single-post-author"><a class="single-post-author__avatar" href="https://www.budgetbytes.com/author/beth/" aria-hidden="true" tabindex="-1"><img alt src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='96'%20height='96'%20viewBox='0%200%2096%2096'%3E%3C/svg%3E" class="avatar avatar-96 photo perfmatters-lazy" height="96" width="96" decoding="async" data-src="https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-96x96.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-192x192.jpg 2x" /><noscript><img alt='' src='https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-96x96.jpg' srcset='https://www.budgetbytes.com/wp-content/uploads/2022/07/Beth-2022-3-192x192.jpg 2x' class='avatar avatar-96 photo' height='96' width='96' decoding='async'/></noscript></a><div class="single-post-author__info"><span class="single-post-author__name">Beth Moncel</span><span class="single-post-author__bio">I’m a food lover, number cruncher, and meticulous budgeter. I love science and art, and the way they come together when I cook. I love to create, problem solve, and learn new things. Making great food is my passion, my purpose, and my favorite thing to share with others.</span><a class="wp-block-button__link has-secondary-color has-primary-background-color has-text-color has-background" href="https://www.budgetbytes.com/author/beth/">More About Beth</a></div></div></div><div class="block-area block-area-after-post"><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="800" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg" data-pin-title="Creamy Coconut Curry Lentils" data-pin-description="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!" alt="Overhead view of a plate of Creamy Coconut Curry Lentils with Spinach along side roasted carrots, rice, and naan" class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-no-lazy="1" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg"></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span><div class="block-email-subscribe alignfull has-background has-secondary-background-color has-text-color has-background-color"><div class="block-email-subscribe__inner"><div class="block-email-subscribe__innerBlocks no-social-links">
<h2 class="is-style-no-margin has-background-color has-text-color has-huge-font-size wp-block-heading">Eat More. Spend Less.</h2>
<p class="is-style-smaller-margin has-background-color has-text-color has-small-font-size">Sign up for the Budget Bytes newsletter and you’ll get new content delivered by email weekly, helpful tips, PLUS my FREE 14 Day Pantry Meal Plan!</p>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript"></script>
<div class="gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework" data-form-theme="gravity-theme" data-form-index="0" id="gform_wrapper_6"><div id="gf_6" class="gform_anchor" tabindex="-1"></div><form method="post" enctype="multipart/form-data" target="gform_ajax_frame_6" id="gform_6" action="/creamy-coconut-curry-lentils-with-spinach/#gf_6" data-formid="6">
<div class="gform-body gform_body"><div id="gform_fields_6" class="gform_fields top_label form_sublabel_below description_below"><div id="field_6_1" class="gfield gfield--type-text gfield--width-five-twelfths gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible" data-js-reload="field_6_1"><label class="gfield_label gform-field-label" for="input_6_1">First NAme<span class="gfield_required"><span class="gfield_required gfield_required_text">(Required)</span></span></label><div class="ginput_container ginput_container_text"><input name="input_1" id="input_6_1" type="text" value="" class="large" placeholder="First Name..." aria-required="true" aria-invalid="false"> </div></div><div id="field_6_3" class="gfield gfield--type-email gfield--width-five-twelfths gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible" data-js-reload="field_6_3"><label class="gfield_label gform-field-label" for="input_6_3">Email Address<span class="gfield_required"><span class="gfield_required gfield_required_text">(Required)</span></span></label><div class="ginput_container ginput_container_email">
<input name="input_3" id="input_6_3" type="text" value="" class="large" placeholder="Email address..." aria-required="true" aria-invalid="false">
</div></div><div id="field_submit" class="gfield gfield--type-submit gfield--width-one-sixth field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible" data-field-class="gform_editor_submit_container" data-field-position="inline" data-js-reload="true"><input type="submit" id="gform_submit_button_6" class="gform-button gform-button--white button" value="Sign Me Up" onclick='if(window["gf_submitting_6"]){return false;} window["gf_submitting_6"]=true; ' onkeypress='if( event.keyCode == 13 ){ if(window["gf_submitting_6"]){return false;} window["gf_submitting_6"]=true; jQuery("#gform_6").trigger("submit",[true]); }'></div></div></div>
<div class="gform_footer top_label"> <input type="hidden" name="gform_ajax" value="form_id=6&title=&description=&tabindex=0">
<input type="hidden" class="gform_hidden" name="is_submit_6" value="1">
<input type="hidden" class="gform_hidden" name="gform_submit" value="6">
<input type="hidden" class="gform_hidden" name="gform_unique_id" value="">
<input type="hidden" class="gform_hidden" name="state_6" value="WyJbXSIsIjhlYWY2YmY3ZjhmYzhkYzQ4YmM5NTQyOWVkNjNhNTcxIl0=">
<input type="hidden" class="gform_hidden" name="gform_target_page_number_6" id="gform_target_page_number_6" value="0">
<input type="hidden" class="gform_hidden" name="gform_source_page_number_6" id="gform_source_page_number_6" value="1">
<input type="hidden" name="gform_field_values" value="">
</div>
<p style="display: none !important;"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="248"><script type="rocketlazyloadscript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form>
</div>
<iframe style="display:none;width:0px;height:0px;" src="about:blank" name="gform_ajax_frame_6" id="gform_ajax_frame_6" title="This iframe contains the logic required to handle Ajax powered Gravity Forms."></iframe>
<script type="rocketlazyloadscript">
gform.initializeOnLoaded( function() {gformInitSpinner( 6, 'https://www.budgetbytes.com/wp-content/plugins/gravityforms/images/spinner.svg', true );jQuery('#gform_ajax_frame_6').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_6');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_6').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_6').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_6').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_6').removeClass('gform_validation_error');}setTimeout( function() { /* delay the scroll by 50 milliseconds to fix a bug in chrome */ jQuery(document).scrollTop(jQuery('#gform_wrapper_6').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_6').val();gformInitSpinner( 6, 'https://www.budgetbytes.com/wp-content/plugins/gravityforms/images/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [6, current_page]);window['gf_submitting_6'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}setTimeout(function(){jQuery('#gform_wrapper_6').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_6').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [6]);window['gf_submitting_6'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_6').text());}, 50);}else{jQuery('#gform_6').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger('gform_post_render', [6, current_page]);gform.utils.trigger({ event: 'gform/postRender', native: false, data: { formId: 6, currentPage: current_page } });} );} );
</script>
</div></div></div><span class="cp-load-after-post"></span></div>
<div id="comments" class="entry-comments">
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">Leave a Comment <small><a rel="nofollow" id="cancel-comment-reply-link" href="/creamy-coconut-curry-lentils-with-spinach/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://www.budgetbytes.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><div class="comment-form-wprm-rating">
<label for="wprm-comment-rating-1928502821">Recipe Rating</label> <span class="wprm-rating-stars">
<fieldset class="wprm-comment-ratings-container" data-original-rating="0" data-current-rating="0">
<legend>Recipe Rating</legend>
<input aria-label="Don't rate this recipe" name="wprm-comment-rating" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -27px !important; width: 30px !important; height: 30px !important;" checked="checked"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-0" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
</defs>
<use xlink:href="#wprm-star-empty-0" x="3" y="3" />
<use xlink:href="#wprm-star-empty-0" x="33" y="3" />
<use xlink:href="#wprm-star-empty-0" x="63" y="3" />
<use xlink:href="#wprm-star-empty-0" x="93" y="3" />
<use xlink:href="#wprm-star-empty-0" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-comment-rating" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-1" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-1" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-1" x="3" y="3" />
<use xlink:href="#wprm-star-empty-1" x="33" y="3" />
<use xlink:href="#wprm-star-empty-1" x="63" y="3" />
<use xlink:href="#wprm-star-empty-1" x="93" y="3" />
<use xlink:href="#wprm-star-empty-1" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-comment-rating" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-2" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-2" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-2" x="3" y="3" />
<use xlink:href="#wprm-star-full-2" x="33" y="3" />
<use xlink:href="#wprm-star-empty-2" x="63" y="3" />
<use xlink:href="#wprm-star-empty-2" x="93" y="3" />
<use xlink:href="#wprm-star-empty-2" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-comment-rating" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-3" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-3" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-3" x="3" y="3" />
<use xlink:href="#wprm-star-full-3" x="33" y="3" />
<use xlink:href="#wprm-star-full-3" x="63" y="3" />
<use xlink:href="#wprm-star-empty-3" x="93" y="3" />
<use xlink:href="#wprm-star-empty-3" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-comment-rating" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-4" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-4" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-4" x="3" y="3" />
<use xlink:href="#wprm-star-full-4" x="33" y="3" />
<use xlink:href="#wprm-star-full-4" x="63" y="3" />
<use xlink:href="#wprm-star-full-4" x="93" y="3" />
<use xlink:href="#wprm-star-empty-4" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-comment-rating" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" id="wprm-comment-rating-1928502821" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<path class="wprm-star-full" id="wprm-star-full-5" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-5" x="3" y="3" />
<use xlink:href="#wprm-star-full-5" x="33" y="3" />
<use xlink:href="#wprm-star-full-5" x="63" y="3" />
<use xlink:href="#wprm-star-full-5" x="93" y="3" />
<use xlink:href="#wprm-star-full-5" x="123" y="3" />
</svg></span> </fieldset>
</span>
</div>
<p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p>
<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit wp-block-button__link" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='44653' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="9112d2135a" /></p><p style="display: none !important;"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_2" name="ak_js" value="56"/><script type="rocketlazyloadscript">document.getElementById( "ak_js_2" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div><!-- #respond -->
<p class="akismet_comment_form_privacy_notice">This site uses Akismet to reduce spam. <a href="https://akismet.com/privacy/" target="_blank" rel="nofollow noopener">Learn how your comment data is processed</a>.</p>
<div class="comments-title-wrap">
<h3 class="comments-title">Comments</h3>
<a class="comments-leave-link wp-block-button__link" href="#reply-title">Leave a Comment</a>
</div>
<ol class="comment-list">
<li id="comment-667180" class="comment even thread-even depth-1">
<article id="div-comment-667180" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Jen</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-667180"><time datetime="2023-10-04T17:44:10-05:00">10.04.23 at 5:44 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Easy weeknight meal that is delicious and filling.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-667180' data-commentid="667180" data-postid="44653" data-belowelement="div-comment-667180" data-respondelement="respond" data-replyto="Reply to Jen" aria-label='Reply to Jen'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-665869" class="comment odd alt thread-odd thread-alt depth-1">
<article id="div-comment-665869" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Tristin</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-665869"><time datetime="2023-09-02T20:12:16-05:00">09.02.23 at 8:12 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>This was delicious! I made it exactly as the recipe called for, but at the end I wanted a little extra richness so I added about 1/2 a can of cream of coconut and a little extra curry. It definitely took it up just that extra notch that I was wanting. Great easy recipe. Thanks!</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-665869' data-commentid="665869" data-postid="44653" data-belowelement="div-comment-665869" data-respondelement="respond" data-replyto="Reply to Tristin" aria-label='Reply to Tristin'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-665649" class="comment even thread-even depth-1">
<article id="div-comment-665649" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Colette</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-665649"><time datetime="2023-08-27T15:27:19-05:00">08.27.23 at 3:27 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>I made this as a weekly meal prep and it turned out delicious! I made this with rice roasted sweet potatoes.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-665649' data-commentid="665649" data-postid="44653" data-belowelement="div-comment-665649" data-respondelement="respond" data-replyto="Reply to Colette" aria-label='Reply to Colette'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-664267" class="comment odd alt thread-odd thread-alt depth-1">
<article id="div-comment-664267" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Sarah</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-664267"><time datetime="2023-07-21T15:14:19-05:00">07.21.23 at 3:14 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>This recipe is so simple and so shockingly delicious. I make it for lunch for the week all the time. Thank you!</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-664267' data-commentid="664267" data-postid="44653" data-belowelement="div-comment-664267" data-respondelement="respond" data-replyto="Reply to Sarah" aria-label='Reply to Sarah'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-663964" class="comment even thread-even depth-1">
<article id="div-comment-663964" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Alex</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-663964"><time datetime="2023-07-17T10:35:52-05:00">07.17.23 at 10:35 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>This is literally amazing and it couldn’t have been easier to make. Such a comforting and flavorful vegetarian meal! This was the second recipe I have tried from this website and both times I have been really happy with the exciting flavors and the recipes being simple and quick enough for weeknights</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663964' data-commentid="663964" data-postid="44653" data-belowelement="div-comment-663964" data-respondelement="respond" data-replyto="Reply to Alex" aria-label='Reply to Alex'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-663809" class="comment odd alt thread-odd thread-alt depth-1">
<article id="div-comment-663809" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Cam</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-663809"><time datetime="2023-07-12T04:39:57-05:00">07.12.23 at 4:39 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Fantastic recipe! I added a serrano and used green lentils since I didn’t have brown and it still turned out great. I cooked them in the instant pot for 9 minutes followed by immediate pressure release.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663809' data-commentid="663809" data-postid="44653" data-belowelement="div-comment-663809" data-respondelement="respond" data-replyto="Reply to Cam" aria-label='Reply to Cam'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-663090" class="comment even thread-even depth-1">
<article id="div-comment-663090" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Jenn</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-663090"><time datetime="2023-06-20T17:10:57-05:00">06.20.23 at 5:10 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Simple. Delicious.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663090' data-commentid="663090" data-postid="44653" data-belowelement="div-comment-663090" data-respondelement="respond" data-replyto="Reply to Jenn" aria-label='Reply to Jenn'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-663007" class="comment odd alt thread-odd thread-alt depth-1">
<article id="div-comment-663007" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Natalie Jortner</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-663007"><time datetime="2023-06-17T13:05:18-05:00">06.17.23 at 1:05 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>This was so delicious with lime and naan! I will definitely be making it again.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663007' data-commentid="663007" data-postid="44653" data-belowelement="div-comment-663007" data-respondelement="respond" data-replyto="Reply to Natalie Jortner" aria-label='Reply to Natalie Jortner'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-661375" class="comment even thread-even depth-1">
<article id="div-comment-661375" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Rosa Gallagher</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-661375"><time datetime="2023-04-28T13:17:34-05:00">04.28.23 at 1:17 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>I am making this as we speak, for the second time. I eat it with buttered naan, Greek yogurt, and LOTS of lime to make it extra flavorful. Great nourishing recipe :-)</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-661375' data-commentid="661375" data-postid="44653" data-belowelement="div-comment-661375" data-respondelement="respond" data-replyto="Reply to Rosa Gallagher" aria-label='Reply to Rosa Gallagher'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-660155" class="comment odd alt thread-odd thread-alt depth-1">
<article id="div-comment-660155" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Hans</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-10/#comment-660155"><time datetime="2023-03-27T18:30:52-05:00">03.27.23 at 6:30 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>I make this all the time, at least once a month. I just throw the carrots in with the onions. Also threw in some diced sweet potato recently, which was delicious.</p>
<p>A pro tip that I only just realized makes this 10x better is to drizzle some lime juice over the top when serving. It’s the missing ingredient I didn’t know was missing, really takes it up a notch.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-660155' data-commentid="660155" data-postid="44653" data-belowelement="div-comment-660155" data-respondelement="respond" data-replyto="Reply to Hans" aria-label='Reply to Hans'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .comment-list -->
<nav id="comment-nav-after" class="navigation comment-navigation" role="navigation"><h4 class="screen-reader-text">Comment navigation</h4><div class="nav-links"><div class="nav-previous"><a href="https://www.budgetbytes.com/creamy-coconut-curry-lentils-with-spinach/comment-page-9/#comments" class="wp-block-button__link">Older Comments</a></div><div class="nav-next"></div></div></nav>
</div><!-- #comments -->
</main><aside class="sidebar-primary" role="complementary"><div class="block-area block-area-sidebar"><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="800" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg" data-pin-title="Creamy Coconut Curry Lentils" data-pin-description="These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!" alt="Overhead view of a plate of Creamy Coconut Curry Lentils with Spinach along side roasted carrots, rice, and naan" class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-no-lazy="1" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2019/07/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg"></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span><div class="block-callout logo-icon headline-callout"><h4 class="block-callout__header"><span>About Budget Bytes</span></h4><div class="block-callout__innerBlocks">
<p>As food lovers and number crunchers, we’ve decided that cooking on a budget shouldn’t mean canned beans and ramen noodles night after night. Join us for delicious recipes designed for small budgets.</p>
<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="/about/">Learn More</a></div>
</div>
</div></div>
<h2 class="wp-block-heading has-text-align-center is-style-shadow" id="h-new-here">NEW HERE?</h2>
<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex">
<div class="wp-block-button is-style-outline"><a class="wp-block-button__link wp-element-button" href="https://www.budgetbytes.com/welcome-to-budget-bytes/">Start Here</a></div>
</div>
<div style="height:16px" aria-hidden="true" class="wp-block-spacer"></div>
<section class="block-post-listing layout-gamma"><header><h2>Reader Favorite Recipes</h2></header><div class="block-post-listing__inner"><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/make-soft-boiled-eggs/" aria-label="ViewHow To Make Soft Boiled Eggs"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="a soft boiled egg cut in half on a blue background" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="a soft boiled egg cut in half on a blue background" decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">How To Make Soft Boiled Eggs</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/creamy-cucumber-salad/" aria-label="ViewCreamy Cucumber Salad"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Close up overhead view of a plate full of creamy cucumber salad." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Close up overhead view of a plate full of creamy cucumber salad." decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Creamy Cucumber Salad</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/6-ways-to-upgrade-instant-ramen/" aria-label="View6 Ways to Upgrade Instant Ramen"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="An upgraded bowl of instant ramen, viewed from above, being eaten with chopsticks" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="An upgraded bowl of instant ramen, viewed from above, being eaten with chopsticks" decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">6 Ways to Upgrade Instant Ramen</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/baked-chicken-drumsticks/" aria-label="ViewBaked Chicken Drumsticks"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Oven roasted chicken drumsticks on a baking sheet with tongs" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Oven roasted chicken drumsticks on a baking sheet with tongs" decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Baked Chicken Drumsticks</h3></div></a></article></div><footer><a class="block-post-listing__more" href="https://www.budgetbytes.com/category/recipes/top-recipes/">More Trending Recipes</a></footer></section>
<section class="block-post-listing layout-gamma"><header><h2>Fall Recipes</h2></header><div class="block-post-listing__inner"><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/basic-chili/" aria-label="ViewClassic Homemade Chili"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Overhead view of a bowl full of chili with toppings and a spoon in the center." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Overhead view of a bowl full of chili with toppings and a spoon in the center." decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Classic Homemade Chili</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/chicken-noodle-soup/" aria-label="ViewChicken Noodle Soup"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Close up overhead view of a bowl of chicken noodle soup." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-380x380.jpg 380w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-200x200.jpg 200w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-150x150.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-70x70.jpg 70w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Close up overhead view of a bowl of chicken noodle soup." decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-380x380.jpg 380w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-200x200.jpg 200w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-150x150.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-70x70.jpg 70w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Chicken Noodle Soup</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/easy-vegetable-beef-soup/" aria-label="ViewEasy Vegetable Beef Soup"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Overhead view of a bowl of vegetable beef soup." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Overhead view of a bowl of vegetable beef soup." decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Easy Vegetable Beef Soup</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/chicken-stew/" aria-label="ViewChicken Stew"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Close up of a pot full of chicken stew" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Close up of a pot full of chicken stew" decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Chicken Stew</h3></div></a></article></div><footer><a class="block-post-listing__more" href="https://www.budgetbytes.com/category/recipes/seasonal/summer-recipes/">More Fall Recipes</a></footer></section><span class="cp-load-after-post"></span></div></aside></div></div><footer class="site-footer" role="contentinfo"><div class="wrap">
<div class="site-footer__main">
<div class="site-footer__main-icon">
<img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='100px'%20height='100px'%20viewBox='0%200%20100px%20100px'%3E%3C/svg%3E" alt="Budget Bytes Icon" width="100px" height="100px" class="perfmatters-lazy" data-src="https://www.budgetbytes.com/wp-content/uploads/2022/05/budget-bytes-icon.svg" /><noscript><img src="https://www.budgetbytes.com/wp-content/uploads/2022/05/budget-bytes-icon.svg" alt="Budget Bytes Icon" width="100px" height="100px" /></noscript>
</div>
<div class="site-footer__main-right">
<span class="site-footer__heading">
Small Budget? No Problem! </span>
<span class="site-footer__description">
<p>Cooking on a budget shouldn't mean canned beans and ramen noodles night after night. Welcome to the world of delicious recipes designed for small budgets.</p>
</span>
</div>
</div>
<div class="site-footer__menu-column site-footer__menu-column--1">
<span class="site-footer__heading">
Recipes </span>
<div class="footer-menu-wrap"><ul id="menu-footer-1" class="menu menu--footer"><li id="menu-item-70689" class="menu-item current-post-ancestor current-menu-parent current-post-parent"><a href="https://www.budgetbytes.com/category/recipes/"><span>Recipes</span></a></li>
<li id="menu-item-70690" class="menu-item"><a href="https://www.budgetbytes.com/category/how-to/"><span>How-To</span></a></li>
<li id="menu-item-70691" class="menu-item"><a href="https://www.budgetbytes.com/kitchen-basics/"><span>Kitchen Basics</span></a></li>
<li id="menu-item-70692" class="menu-item"><a href="https://www.budgetbytes.com/stock-kitchen-pantry-staples/"><span>Pantry Staples</span></a></li>
<li id="menu-item-70693" class="menu-item"><a href="https://www.budgetbytes.com/category/extra-bytes/"><span>Extra Bytes</span></a></li>
</ul></div>
</div>
<div class="site-footer__menu-column site-footer__menu-column--2">
<span class="site-footer__heading">
About </span>
<div class="footer-menu-wrap"><ul id="menu-footer-2" class="menu menu--footer"><li id="menu-item-70694" class="menu-item"><a href="https://www.budgetbytes.com/about/"><span>About Budget Bytes</span></a></li>
<li id="menu-item-70696" class="menu-item"><a href="https://www.budgetbytes.com/faq/"><span>FAQ</span></a></li>
<li id="menu-item-70695" class="menu-item"><a href="https://www.budgetbytes.com/contact/"><span>Contact</span></a></li>
</ul></div>
</div>
<div class="site-footer__menu-column site-footer__menu-column--3">
<span class="site-footer__heading">
Contact </span>
<div class="footer-menu-wrap"><ul id="menu-footer-3" class="menu menu--footer"><li id="menu-item-30066" class="social-item social-item--facebook menu-item"><a target="_blank" rel="noopener" href="http://facebook.com/budgetbytes1"><span>Facebook</span></a></li>
<li id="menu-item-30065" class="social-item social-item--pinterest menu-item"><a target="_blank" rel="noopener" href="http://www.pinterest.com/budgetbytes/"><span>Pinterest</span></a></li>
<li id="menu-item-30062" class="social-item social-item--instagram menu-item"><a target="_blank" rel="noopener" href="http://instagram.com/budgetbytes"><span>Instagram</span></a></li>
<li id="menu-item-30063" class="social-item social-item--twitter menu-item"><a target="_blank" rel="noopener" href="https://twitter.com/budget_bytes"><span>Twitter</span></a></li>
<li id="menu-item-30064" class="social-item social-item--youtube menu-item"><a target="_blank" rel="noopener" href="https://www.youtube.com/channel/UC17vdVOZBVxTSDcldUBBlRg"><span>Youtube</span></a></li>
<li id="menu-item-70698" class="social-item social-item--tiktok menu-item"><a href="https://www.tiktok.com/@budget_bytes?lang=en"><span>TikTok</span></a></li>
</ul></div>
</div>
<div class="site-footer__bottom">
<span class="site-footer__copyright">
© 2023 Budget Bytes. All rights reserved.
</span>
<div class="site-footer__links">
<a class="site-footer__links-item" href="https://www.budgetbytes.com/privacy-policy/" target="">
Privacy Policy </a>
<a class="site-footer__links-item" href="https://www.budgetbytes.com/terms-conditions/" target="">
Terms & Conditions </a>
<a class="site-footer__links-item" href="https://www.budgetbytes.com/budget-bytes-web-accessibility-policy/" target="">
Accessibility Statement </a>
<span data-acsb-custom-trigger="true" class="site-footer__links-item access-options">Accessibility Options</span>
</div>
</div>
</div></footer></div><script type="rocketlazyloadscript" async data-rocket-src="https://www.scgrocery.net/widget/"></script><div id="mv-grow-data" data-settings='{"general":{"contentSelector":false,"show_count":{"content":false,"sidebar":false,"pop_up":false,"sticky_bar":false},"isTrellis":false},"post":{"ID":44653,"categories":[{"ID":58},{"ID":1383},{"ID":1384},{"ID":60},{"ID":22},{"ID":45},{"ID":43},{"ID":6},{"ID":55},{"ID":10051},{"ID":1385},{"ID":10047},{"ID":14},{"ID":7}]},"shareCounts":{"pinterest":11331,"reddit":7,"twitter":0},"shouldRun":true,"utmParams":{"utm_source":"","utm_medium":"social","utm_campaign":"grow-social-pro"},"pinterest":{"pinDescriptionSource":"image_title","pinDescription":"These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!","pinTitle":"Creamy Coconut Curry Lentils","pinImageURL":"https:\/\/www.budgetbytes.com\/wp-content\/uploads\/2019\/07\/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg","pinnableImages":"all_images","postImageHidden":"yes","postImageHiddenMultiple":"yes","lazyLoadCompatibility":"yes","buttonPosition":"top-left","buttonShape":"rectangular","showButtonLabel":null,"buttonLabelText":"","buttonShareBehavior":"all_images","hoverButtonShareBehavior":"hover_image","minimumImageWidth":"","minimumImageHeight":"","showImageOverlay":null,"postTypeDisplay":["post"],"imagePinIt":"1","hasContent":"1","shareURL":"https:\/\/www.budgetbytes.com\/creamy-coconut-curry-lentils-with-spinach\/?utm_source=pinterest&utm_medium=social&utm_campaign=grow-social-pro","bypassClasses":["mv-grow-bypass","no_pin"],"bypassDenyClasses":["dpsp-post-pinterest-image-hidden-inner","mv-create-pinterest"],"ignoreSelectors":[],"hoverButtonIgnoreClasses":["lazyloaded","lazyload","td-animation-stack","ezlazyloaded","penci-lazy","ut-lazy","ut-image-loaded","ut-animated-image"],"disableIframes":null}}'></div><script type="rocketlazyloadscript">window.wprm_recipes = {"recipe-44661":{"id":44661,"type":"food","name":"Creamy Coconut Curry Lentils with Spinach"}}</script><script type="rocketlazyloadscript"> (
function(){
var s = document.createElement('script');
var h = document.querySelector('head') || document.body;
s.src = 'https://acsbapp.com/apps/app/dist/js/app.js';
s.async = true;
s.onload = function(){
acsbJS.init({
statementLink : '', footerHtml : '',
hideMobile : true,
hideTrigger : true,
disableBgProcess : false,
language : 'en',
position : 'left',
leadColor : '#146ff8',
triggerColor : '#146ff8',
triggerRadius : '50%',
triggerPositionX : 'right',
triggerPositionY : 'bottom',
triggerIcon : 'people',
triggerSize : 'medium',
triggerOffsetX : 20,
triggerOffsetY : 20,
mobile : {
triggerSize : 'small',
triggerPositionX : 'right',
triggerPositionY : 'center',
triggerOffsetX : 10,
triggerOffsetY : 0,
triggerRadius : '50%'
}
});
};
h.appendChild(s);
})();
</script>
<div class="cpro-onload cp-popup-global cp-custom-cls-manual_trigger_53340 " data-class-id="53340" data-inactive-time='60' ></div>
<div id="cp_popup_id_53340" class="cp-popup-container cp-popup-live-wrap cp_style_53340 cp-module-modal_popup " data-style="cp_style_53340" data-module-type="modal_popup" data-class-id="53340" data-styleslug="pop-up-lightbox">
<div class="cpro-overlay">
<div class="cp-popup-wrapper cp-auto " >
<div class="cp-popup cpro-animate-container ">
<form class="cpro-form" method="post">
<input type='hidden' class='panel-settings' data-style_id= '53340' data-section='configure' value='{"enable_custom_cookies":"0","enable_cookies_class":"","enable_adblock_detection":"","enable_visitors":"1","visitor_type":"first-time","referrer_type":"hide-from","hide_custom_cookies":"0","hide_cookies_class":"subscriber_cookie","show_for_logged_in":"0","hide_on_device":"mobile","cp_hide_on_device":"mobile","cookies_enabled":"1","conversion_cookie":"365","closed_cookie":"30","cookies_enabled_submit":"1","enable_cookies_class_submit":"after_submission_popup","conversion_cookie_submit":"365","cookies_enabled_closed":"1","enable_cookies_class_closed":"30_days_close","closed_cookie_new":"30"}' ><input type='hidden' class='panel-rulesets' data-style_id= '53340' data-section='configure' value='[{"name":"Ruleset 1","autoload_on_duration":true,"load_on_duration":"45","modal_exit_intent":false,"autoload_on_scroll":false,"load_after_scroll":"75","inactivity":false,"inactivity_link":"","enable_after_post":false,"enable_custom_scroll":"0","enable_scroll_class":"","on_scroll_txt":"","show_cta_info":"","enable_custom_cookies":"0","enable_cookies_class":"","on_cookie_txt":"","hide_cta_link":"","enable_adblock_detection":false,"all_visitor_info":"","enable_visitors":"1","visitor_type":"first-time","enable_referrer":"","referrer_type":"hide-from","display_to":"","hide_from":"","enable_scheduler":false,"enable_scheduler_txt":"","start_date":"","end_date":"","custom_cls_text_head":"","enable_custom_class":false,"copy_link_code_button":"Copy Link Code","copy_link_cls_code_button":"","custom_class":"","custom_cls_text":"","autoload_on_no_page_visit":"1","load_on_page_visit_type":"is-more-than","load_on_no_page_visit":"1"}]' ><style id='cp_popup_style_53340' type='text/css'>.cp_style_53340 .cp-popup-content {font-family:Montserrat;font-style:Normal;font-weight:Normal;}.cp_style_53340 .cp-popup-content{ border-style:none;border-color:#e1e1e1;border-width:1px 1px 1px 1px;border-radius:3px 3px 3px 3px;mobile-breakpoint:767;}.cp_style_53340 #panel-1-53340 .cp-target:hover { }.cp_style_53340 #panel-1-53340 { }.cp_style_53340 .cpro-overlay{background:rgba(0,0,0,0.8);}.cp_style_53340 .cp-popup-wrapper .cpro-overlay {height:420px;}.cp_style_53340 .cp-popup-content { width:538px;height:420px;background-color:#fff;}@media ( max-width: 767px ) {.cp_style_53340 .cp-popup-content{ border-style:none;border-color:#e1e1e1;border-width:1px 1px 1px 1px;border-radius:3px 3px 3px 3px;mobile-breakpoint:767;}.cp_style_53340 #panel-1-53340 .cp-target:hover { }.cp_style_53340 #panel-1-53340 { }.cp_style_53340 .cpro-overlay{background:rgba(0,0,0,0.8);}.cp_style_53340 .cp-popup-wrapper .cpro-overlay {height:235px;}.cp_style_53340 .cp-popup-content { width:320px;height:235px;background-color:#fff;}}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field{ font-family:inherit;font-style:Inherit;font-weight:Inherit;text-transform:none;font-size:20px;letter-spacing:0;text-align:center;color:#999999;background-color:#fff;border-style:solid;border-width:2px 2px 2px 2px;border-radius:1px 1px 1px 1px;border-color:#000000;active-border-color:#666;padding:0px 10px 0px 10px;}.cp_style_53340 #form_field-53340 .cp-target:hover { }.cp_style_53340 #form_field-53340 placeholder { color:#666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field input[type='radio'], .cp_style_53340 .cp-popup .cpro-form .cp-form-input-field input[type='checkbox'] {color:#999999;background-color:#fff;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field:focus {border-color: #666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field::-webkit-input-placeholder {color:#666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field::-moz-placeholder {color:#666;}.cp_style_53340 .cp-popup .cpro-form .pika-lendar table tbody button:hover { background :#666;}.cp_style_53340 .cp-popup .cpro-form .pika-lendar table tbody .is-selected .pika-button { background :#999999;box-shadow : inset 0 1px 3px #999999;}.cp_style_53340 #form_field-53340 { }@media ( max-width: 767px ) {.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field{ font-family:inherit;font-style:Inherit;font-weight:Inherit;text-transform:none;font-size:11px;letter-spacing:0;text-align:left;color:#999999;background-color:#fff;border-style:solid;border-width:2px 2px 2px 2px;border-radius:1px 1px 1px 1px;border-color:#000000;active-border-color:#666;padding:0px 10px 0px 10px;}.cp_style_53340 #form_field-53340 .cp-target:hover { }.cp_style_53340 #form_field-53340 placeholder { color:#666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field input[type='radio'], .cp_style_53340 .cp-popup .cpro-form .cp-form-input-field input[type='checkbox'] {color:#999999;background-color:#fff;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field:focus {border-color: #666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field::-webkit-input-placeholder {color:#666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field::-moz-placeholder {color:#666;}.cp_style_53340 .cp-popup .cpro-form .pika-lendar table tbody button:hover { background :#666;}.cp_style_53340 .cp-popup .cpro-form .pika-lendar table tbody .is-selected .pika-button { background :#999999;box-shadow : inset 0 1px 3px #999999;}.cp_style_53340 #form_field-53340 { }}.cp_style_53340 #cp_heading-4-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:40px;line-height:1.2;letter-spacing:0px;text-align:center;color:#2a2a2a;width:528px;height:46px;}.cp_style_53340 #cp_heading-4-53340 .cp-target:hover { }.cp_style_53340 #cp_heading-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_heading-4-53340 { left: 5px;top: 18.963073730469px;z-index:2;}@media ( max-width: 767px ) {.cp_style_53340 #cp_heading-4-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:22px;line-height:1.2;letter-spacing:0px;text-align:center;color:#2a2a2a;width:315px;height:26px;}.cp_style_53340 #cp_heading-4-53340 .cp-target:hover { }.cp_style_53340 #cp_heading-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_heading-4-53340 { left: 2px;top: 13px;z-index:2;}}.cp_style_53340 #cp_image-4-53340 .cp-target { width:150px;height:150px;}.cp_style_53340 #cp_image-4-53340 .cp-target:hover { }.cp_style_53340 #cp_image-4-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target > .cp-close-link { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target > .cp-close-image { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target { }.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { }.cp_style_53340 #cp_image-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_image-4-53340 .cp-target:hover { }.cp_style_53340 #cp_image-4-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_image-4-53340 { left: -0.01416015625px;top: 86.519897460938px;z-index:3;}@media ( max-width: 767px ) {.cp_style_53340 #cp_image-4-53340 .cp-target { width:95px;height:95px;}.cp_style_53340 #cp_image-4-53340 .cp-target:hover { }.cp_style_53340 #cp_image-4-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target > .cp-close-link { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target > .cp-close-image { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target { }.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { }.cp_style_53340 #cp_image-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_image-4-53340 .cp-target:hover { }.cp_style_53340 #cp_image-4-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_image-4-53340 { left: 9px;top: 50px;z-index:3;}}.cp_style_53340 #cp_paragraph-4-53340 .cp-target { font-family:inherit;font-style:Inherit;font-weight:Inherit;font-size:18px;line-height:1.6;letter-spacing:0px;text-align:center;color:#2a2a2a;width:379px;height:120px;}.cp_style_53340 #cp_paragraph-4-53340 .cp-target:hover { }.cp_style_53340 #cp_paragraph-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_paragraph-4-53340 { left: 148.97729492188px;top: 80.539764404297px;z-index:4;}@media ( max-width: 767px ) {.cp_style_53340 #cp_paragraph-4-53340 .cp-target { font-family:inherit;font-style:Inherit;font-weight:Inherit;font-size:10px;line-height:1.6;letter-spacing:0px;text-align:center;color:#2a2a2a;width:211px;height:67px;}.cp_style_53340 #cp_paragraph-4-53340 .cp-target:hover { }.cp_style_53340 #cp_paragraph-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_paragraph-4-53340 { left: 102px;top: 50px;z-index:4;}}.cp_style_53340 #cp_email-4-53340 .cp-target { width:490px;height:50px;}.cp_style_53340 #cp_email-4-53340 .cp-target:hover { }.cp_style_53340 #cp_email-4-53340 { left: 22.911987304688px;top: 253.96304321289px;z-index:7;}@media ( max-width: 767px ) {.cp_style_53340 #cp_email-4-53340 .cp-target { width:289px;height:27px;}.cp_style_53340 #cp_email-4-53340 .cp-target:hover { }.cp_style_53340 #cp_email-4-53340 { left: 17px;top: 156px;z-index:7;}}.cp_style_53340 #cp_button-4-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:23px;letter-spacing:0px;text-align:center;color:#fff;background:#000000;width:490px;height:50px;padding:0px 15px 0px 15px;}.cp_style_53340 #cp_button-4-53340 .cp-target:hover { color:#fff;background:#000000;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_button-4-53340 .cp-target:hover { }.cp_style_53340 #cp_button-4-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_button-4-53340 { left: 22.911987304688px;top: 308.96304321289px;z-index:5;}@media ( max-width: 767px ) {.cp_style_53340 #cp_button-4-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:13px;letter-spacing:0px;text-align:center;color:#fff;background:#000000;width:289px;height:28px;padding:0px 15px 0px 15px;}.cp_style_53340 #cp_button-4-53340 .cp-target:hover { color:#fff;background:#000000;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_button-4-53340 .cp-target:hover { }.cp_style_53340 #cp_button-4-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_button-4-53340 { left: 17px;top: 187px;z-index:5;}}.cp_style_53340 #cp_button-5-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:12px;letter-spacing:0px;text-align:center;color:#666666;background:#ffffff;width:134px;height:25px;padding:0px 15px 0px 15px;}.cp_style_53340 #cp_button-5-53340 .cp-target:hover { color:#999999;background:#ffffff;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-5-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_button-5-53340 .cp-target:hover { }.cp_style_53340 #cp_button-5-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_button-5-53340 { left: 200.90905761719px;top: 366.97439575195px;z-index:9;}@media ( max-width: 767px ) {.cp_style_53340 #cp_button-5-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:13px;letter-spacing:0px;text-align:center;color:#666666;background:#ffffff;width:289px;height:28px;padding:0px 15px 0px 15px;}.cp_style_53340 #cp_button-5-53340 .cp-target:hover { color:#999999;background:#ffffff;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-5-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_button-5-53340 .cp-target:hover { }.cp_style_53340 #cp_button-5-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_button-5-53340 { left: 15px;top: 239.9609375px;z-index:9;}}@media ( max-width: 767px ) {.cp_style_53340 .cp-invisible-on-mobile {display: none !important;}}</style>
<div class="cp-popup-content cpro-active-step cp-modal_popup cp-panel-1" data-entry-animation = "cp-slideInRight" data-overlay-click ="1" data-title="Pop Up Lightbox" data-module-type="modal_popup" data-step="1" data-width="538" data-mobile-width="320" data-height="420" data-mobile-height="235" data-mobile-break-pt="767" data-mobile-responsive="yes">
<div class="cpro-form-container">
<div id="cp_heading-4-53340" class="cp-field-html-data cp-none cp_has_editor" data-type="cp_heading" ><div class="cp-rotate-wrap"><div class="cp-target cp-field-element cp-heading tinymce" name="cp_heading-4"><p>EAT MORE, SPEND LESS.</p></div></div>
</div><div id="cp_image-4-53340" class="cp-field-html-data cp-none cp-image-ratio" data-type="cp_image" data-action="none" data-step="1" >
<div class="cp-rotate-wrap">
<div class="cp-image-main"><img width="150" height="150" data-cp-src="https://www.budgetbytes.com/wp-content/uploads/2018/12/subscribe_icon-1.png" class="cp-img-lazy cp-target cp-field-element cp-image" name="cp_image-4" alt="" src="">
<div class="cp-field-shadow"></div>
</div>
</div>
</div><div id="cp_paragraph-4-53340" class="cp-field-html-data cp-none cp_has_editor" data-type="cp_paragraph" data-field-title="Paragraph" ><div class="cp-rotate-wrap"><div class="cp-target cp-field-element cp-paragraph tinymce" name="{{name}}"><p><strong>Sign up</strong> for our newsletter and you'll get new content delivered by email weekly, helpful tips, PLUS my <strong>FREE 14 Day Pantry Meal Plan!</strong> </p></div></div>
</div><div id="cp_email-4-53340" class="cp-field-html-data cp-none" data-type="cp_email" >
<input type="email" class="cp-target cp-field-element cp-form-input-field cp-form-field cp-email cp-form-field cp-email-field" aria-label="Email Address" placeholder="Email Address" name="param[email]" value="" required="required" data-email-error-msg="{{email-error}}" autocomplete="on" />
</div><div id="cp_button-4-53340" class="cp-field-html-data cp-none" data-type="cp_button" data-action="submit_n_goto_url" data-step="1" data-redirect="https://www.budgetbytes.com/email-subscription-confirmation/?utm_source=lightbox&utm_medium=confirmation&utm_term=popup" data-redirect-target="_self" >
<div class="cp-rotate-wrap"><button type="submit" class=" cp-target cp-field-element cp-button cp-button-field" data-success-message="" data-get-param="false">Join Us!</button>
<div class="cp-btn-tooltip"></div>
</div></div><div id="cp_button-5-53340" class="cp-field-html-data cp-none" data-type="cp_button" data-action="close" data-step="1" >
<div class="cp-rotate-wrap"><button type="button" class=" cp-target cp-field-element cp-button cp-button-field" data-success-message="" data-get-param="false">no thanks (close)</button>
<div class="cp-btn-tooltip"></div>
</div></div> </div>
</div><!-- .cp-popup-content -->
<input type="hidden" name="param[date]" value="10.07.23" />
<input type='text' class='cpro-hp-field' name='cpro_hp_field_53340' value=''>
<input type="hidden" name="action" value="cp_v2_add_subscriber" />
<input type="hidden" name="style_id" value="53340" />
</form>
</div>
</div><!-- .cp-popup-wrapper -->
</div><!-- Overlay -->
</div><!-- Modal popup container -->
<!-- Custom Feeds for Instagram JS -->
<script type="rocketlazyloadscript" data-rocket-type="text/javascript">
var sbiajaxurl = "https://www.budgetbytes.com/wp-admin/admin-ajax.php";
window.sbi_custom_js = function(){
$ = jQuery;
jQuery('.sbi_item').each(function() {
var $item = jQuery(this);
var srcSet = JSON.parse($item.find('.sbi_photo').attr('data-img-src-set').replace(///g, '/'));
if (typeof srcSet[150] !== 'undefined' && $item.find('.sbi_photo img').attr('data-lazy-src').indexOf('placeholder') > -1) {
$item.find('.sbi_photo img').attr('src', srcSet[150]);
$item.find('.sbi_photo').css('background-image', 'url(' + srcSet[150] + ')');
}
});}
</script>
<!-- YouTube Feed JS -->
<script type="rocketlazyloadscript" data-rocket-type="text/javascript">
</script>
<link rel='stylesheet' id='gravity_forms_theme_reset-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-reset.min.css?ver=2.7.14' media='all' />
<link rel='stylesheet' id='gravity_forms_theme_foundation-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-foundation.min.css?ver=2.7.14' media='all' />
<link data-minify="1" rel='stylesheet' id='gravity_forms_theme_framework-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-framework.min.css?ver=1696258883' media='all' />
<link rel='stylesheet' id='gravity_forms_orbital_theme-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-orbital-theme.min.css?ver=2.7.14' media='all' />
<link data-minify="1" rel='stylesheet' id='wprm-public-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker/dist/public-modern.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='wprmp-public-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='block-acf-callout-block-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/inc/blocks/callout/block-callout.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='gform_basic-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/gravityforms/assets/css/dist/basic.min.css?ver=1696258883' media='all' />
<link rel='stylesheet' id='gform_theme_components-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/theme-components.min.css?ver=2.7.14' media='all' />
<link rel='stylesheet' id='gform_theme_ie11-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/theme-ie11.min.css?ver=2.7.14' media='all' />
<link rel='stylesheet' id='gform_theme-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/theme.min.css?ver=2.7.14' media='all' />
<link data-minify="1" rel='stylesheet' id='block-acf-email-subscribe-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/inc/blocks/email-subscribe/block-email-subscribe.css?ver=1696258883' media='all' />
<style id='core-block-supports-inline-css'>
.wp-container-2.wp-container-2{justify-content:center;}
</style>
<script type="rocketlazyloadscript" id="dpsp-frontend-js-pro-js-before">
var dpsp_pin_button_data = {"pin_description_source":"image_title","pinterest_pinnable_images":"all_images","pinterest_button_share_behavior":"all_images","post_pinterest_image_hidden":"yes","post_multiple_hidden_pinterest_images":"yes","lazy_load_compatibility":"yes","button_position":"top_left","button_shape":"rectangular","minimum_image_width":"","minimum_image_height":"","button_text_label":"","button_share_behavior":"hover_image","post_type_display":["post"],"pinterest_title":"Creamy Coconut Curry Lentils","pinterest_description":"These rich, creamy, and earthy Coconut Curry Lentils are an easy and delicious vegan option for dinner or weekly meal prep!","pinterest_image_url":"https:\/\/www.budgetbytes.com\/wp-content\/uploads\/2019\/07\/Creamy-Coconut-Curried-Lentils-with-Spinach-PIN.jpg"}
</script>
<script data-minify="1" async data-noptimize src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/social-pug/assets/dist/front-end-pro.2.16.4.js?ver=1696258883' id='dpsp-frontend-js-pro-js'></script>
<script type="rocketlazyloadscript" id="rocket-browser-checker-js-after">
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
</script>
<script id='rocket-preload-links-js-extra'>
var RocketPreloadLinksConfig = {"excludeUris":"\/login\/|\/register|\/lostpassword|\/resetpass|\/resetpass\/|\/web-stories\/|\/random|\/instagram\/|\/(?:.+\/)?feed(?:\/(?:.+\/?)?)?$|\/(?:.+\/)?embed\/|\/(index.php\/)?(.*)wp-json(\/.*|$)|\/refer\/|\/go\/|\/recommend\/|\/recommends\/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https:\/\/www.budgetbytes.com","onHoverDelay":"100","rateThrottle":"3"};
</script>
<script type="rocketlazyloadscript" id="rocket-preload-links-js-after">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
<script data-minify="1" src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/assets/js/global.js?ver=1696258883' id='global-js'></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/assets/js/theme.js?ver=1696258883' id='theme-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/comment-reply.min.js?ver=6.3.1' id='comment-reply-js' defer></script>
<script id="perfmatters-lazy-load-js-before">
window.lazyLoadOptions={elements_selector:"img[data-src],.perfmatters-lazy,.perfmatters-lazy-css-bg",thresholds:"100px 0px",class_loading:"pmloading",class_loaded:"pmloaded",callback_loaded:function(element){if(element.tagName==="IFRAME"){if(element.classList.contains("pmloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}};window.addEventListener("LazyLoad::Initialized",function(e){var lazyLoadInstance=e.detail.instance;});
</script>
<script async src='https://www.budgetbytes.com/wp-content/plugins/perfmatters/js/lazyload.min.js?ver=2.1.7' id='perfmatters-lazy-load-js'></script>
<script id='wprm-public-js-extra'>
var wprm_public = {"endpoints":{"analytics":"https:\/\/www.budgetbytes.com\/wp-json\/wp-recipe-maker\/v1\/analytics"},"settings":{"features_comment_ratings":true,"template_color_comment_rating":"#fcc51c","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":false,"google_analytics_enabled":false,"print_new_tab":true},"post_id":"44653","home_url":"https:\/\/www.budgetbytes.com\/","print_slug":"wprm_print","permalinks":"\/%postname%\/","ajax_url":"https:\/\/www.budgetbytes.com\/wp-admin\/admin-ajax.php","nonce":"143c377f3b","api_nonce":"eea9814ebd","translations":{"Select a collection":"Select a collection","Select a column":"Select a column","Select a group":"Select a group","Shopping List":"Shopping List","Print":"Print","Print Collection":"Print Collection","Print Recipes":"Print Recipes","Hide Nutrition Facts":"Hide Nutrition Facts","Show Nutrition Facts":"Show Nutrition Facts","Are you sure you want to remove all items from this collection?":"Are you sure you want to remove all items from this collection?","Clear Items":"Clear Items","Description for this collection:":"Description for this collection:","Change Description":"Change Description","Set Description":"Set Description","Save to my Collections":"Save to my Collections","None":"None","Blue":"Blue","Red":"Red","Green":"Green","Yellow":"Yellow","Note":"Note","Color":"Color","Name":"Name","Ingredients":"Ingredients","cup":"cup","olive oil":"olive oil","Add Ingredient":"Add Ingredient","Edit Ingredients":"Edit Ingredients","Text":"Text","Nutrition Facts (per serving)":"Nutrition Facts (per serving)","Add Column":"Add Column","Edit Columns":"Edit Columns","Add Group":"Add Group","Edit Groups":"Edit Groups","Add Item":"Add Item","Remove Items":"Remove Items","Columns & Groups":"Columns & Groups","Remove All Items":"Remove All Items","Stop Removing Items":"Stop Removing Items","Actions":"Actions","Click to add:":"Click to add:","Drag and drop to add:":"Drag and drop to add:","Load more...":"Load more...","Search Recipes":"Search Recipes","Search Ingredients":"Search Ingredients","Add Custom Recipe":"Add Custom Recipe","Add Note":"Add Note","Add from Collection":"Add from Collection","Start typing to search...":"Start typing to search...","Your Collections":"Your Collections","Editing User":"Editing User","Cancel":"Cancel","Go Back":"Go Back","Edit Item":"Edit Item","Change Name":"Change Name","Move Left":"Move Left","Move Right":"Move Right","Duplicate":"Duplicate","Delete Column":"Delete Column","Are you sure you want to delete?":"Are you sure you want to delete?","Click to set name":"Click to set name","Set a new amount for this ingredient:":"Set a new amount for this ingredient:","Set the number of servings":"Set the number of servings","servings":"servings","View Recipe":"View Recipe","Edit Custom Recipe":"Edit Custom Recipe","Edit Note":"Edit Note","Duplicate Item":"Duplicate Item","Change Servings":"Change Servings","Remove Item":"Remove Item","Move Up":"Move Up","Move Down":"Move Down","Delete Group":"Delete Group","Nutrition Facts":"Nutrition Facts","Click to confirm...":"Click to confirm...","Are you sure you want to delete all items in":"Are you sure you want to delete all items in","Stop Editing":"Stop Editing","Recipe":"Recipe","Regenerate Shopping List":"Regenerate Shopping List","Print Shopping List":"Print Shopping List","The link copied to your clipboard will allow others to edit this shopping list.":"The link copied to your clipboard will allow others to edit this shopping list.","Copy this link to allow others to edit this shopping list:":"Copy this link to allow others to edit this shopping list:","Share Edit Link":"Share Edit Link","Save Shopping List":"Save Shopping List","Edit Shopping List":"Edit Shopping List","Generate Shopping List":"Generate Shopping List","Remove All":"Remove All","Shopping List Options":"Shopping List Options","Include ingredient notes":"Include ingredient notes","Preferred Unit System":"Preferred Unit System","Deselect all":"Deselect all","Select all":"Select all","Collection":"Collection","Unnamed":"Unnamed","remove":"remove","There are unsaved changes. Are you sure you want to leave this page?":"There are unsaved changes. Are you sure you want to leave this page?","Make sure to select some recipes for the shopping list first.":"Make sure to select some recipes for the shopping list first.","Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.":"Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.","The shopping list could not be saved. Try again later.":"The shopping list could not be saved. Try again later.","Are you sure you want to remove all recipes from this shopping list?":"Are you sure you want to remove all recipes from this shopping list?","Back":"Back","Make sure to save the shopping list before printing.":"Make sure to save the shopping list before printing.","No recipes have been added to the shopping list yet.":"No recipes have been added to the shopping list yet.","Click the cart icon in the top right to generate the shopping list.":"Click the cart icon in the top right to generate the shopping list.","Select recipes and click the cart icon in the top right to generate the shopping list.":"Select recipes and click the cart icon in the top right to generate the shopping list.","Click the cart icon in the top right to generate a new shopping list.":"Click the cart icon in the top right to generate a new shopping list.","Right click and copy this link to allow others to edit this shopping list.":"Right click and copy this link to allow others to edit this shopping list.","List":"List","Are you sure you want to delete this group, and all of the items in it?":"Are you sure you want to delete this group, and all of the items in it?","Your shopping list is empty.":"Your shopping list is empty.","Group":"Group","Add Collection":"Add Collection","Empty Collection":"Empty Collection","Add Pre-made Collection":"Add Pre-made Collection","Edit Collections":"Edit Collections","Select a collection to add for this user":"Select a collection to add for this user","Add Saved Collection":"Add Saved Collection","Delete":"Delete","Recipes":"Recipes","Decrease serving size by 1":"Decrease serving size by 1","Increase serving size by 1":"Increase serving size by 1","Nothing to add products to yet.":"Nothing to add products to yet.","In recipe":"In recipe","Product":"Product","Amount needed":"Amount needed","Change Product":"Change Product","A name is required for this saved nutrition ingredient.":"A name is required for this saved nutrition ingredient.","Save a new Custom Ingredient":"Save a new Custom Ingredient","Amount":"Amount","Unit":"Unit","Name (required)":"Name (required)","Save for Later & Use":"Save for Later & Use","Use":"Use","Select a saved ingredient":"Select a saved ingredient","Match this equation to get the correct amounts:":"Match this equation to get the correct amounts:","Cancel Calculation":"Cancel Calculation","Go to Next Step":"Go to Next Step","Use These Values":"Use These Values","Nutrition Calculation":"Nutrition Calculation","n\/a":"n\/a","Values of all the checked ingredients will be added together and":"Values of all the checked ingredients will be added together and","divided by":"divided by","the number of servings for this recipe.":"the number of servings for this recipe.","Values of all the checked ingredients will be added together.":"Values of all the checked ingredients will be added together.","API Ingredients":"API Ingredients","Custom Ingredients":"Custom Ingredients","Recipe Nutrition Facts Preview":"Recipe Nutrition Facts Preview","Changes to these values can be made after confirming with the blue button.":"Changes to these values can be made after confirming with the blue button.","Select or search for a saved ingredient":"Select or search for a saved ingredient","No ingredients set for this recipe.":"No ingredients set for this recipe.","Used in Recipe":"Used in Recipe","Used for Calculation":"Used for Calculation","Nutrition Source":"Nutrition Source","Match & Units":"Match & Units","API":"API","Saved\/Custom":"Saved\/Custom","no match found":"no match found","Units n\/a":"Units n\/a","Find a match for:":"Find a match for:","Search":"Search","No ingredients found for":"No ingredients found for","No ingredients found.":"No ingredients found.","Results for":"Results for","Editing Equipment Affiliate Fields":"Editing Equipment Affiliate Fields","The fields you set here will affect all recipes using this equipment.":"The fields you set here will affect all recipes using this equipment.","Regular Links":"Regular Links","Images":"Images","HTML Code":"HTML Code","Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.":"Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.","Save Changes":"Save Changes","other recipe(s) affected":"other recipe(s) affected","This can affect other recipes":"This can affect other recipes","Edit Link":"Edit Link","Remove Link":"Remove Link","Are you sure you want to delete this link?":"Are you sure you want to delete this link?","Set Affiliate Link":"Set Affiliate Link","Edit Image":"Edit Image","Remove Image":"Remove Image","Add Image":"Add Image","This feature is only available in":"This feature is only available in","You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.":"You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.","Original Unit System for this recipe":"Original Unit System for this recipe","Use Default":"Use Default","First Unit System":"First Unit System","Second Unit System":"Second Unit System","Conversion":"Conversion","Converted":"Converted","Original":"Original","Convert All Automatically":"Convert All Automatically","Convert":"Convert","Keep Unit":"Keep Unit","Automatically":"Automatically","Weight Units":"Weight Units","Volume Units":"Volume Units","Convert...":"Convert...","Ingredient Link Type":"Ingredient Link Type","Global: the same link will be used for every recipe with this ingredient":"Global: the same link will be used for every recipe with this ingredient","Custom: these links will only affect the recipe below":"Custom: these links will only affect the recipe below","Use Global Links":"Use Global Links","Custom Links for this Recipe only":"Custom Links for this Recipe only","Edit Global Links":"Edit Global Links","Affiliate Link":"Affiliate Link","No link set":"No link set","No equipment set for this recipe.":"No equipment set for this recipe.","Regular Link":"Regular Link","Image":"Image","Edit Affiliate Fields":"Edit Affiliate Fields","No HTML set":"No HTML set","Editing Global Ingredient Links":"Editing Global Ingredient Links","All fields are required.":"All fields are required.","Something went wrong. Make sure this key does not exist yet.":"Something went wrong. Make sure this key does not exist yet.","Are you sure you want to close without saving changes?":"Are you sure you want to close without saving changes?","Editing Custom Field":"Editing Custom Field","Creating new Custom Field":"Creating new Custom Field","Type":"Type","Key":"Key","my-custom-field":"my-custom-field","My Custom Field":"My Custom Field","Save":"Save","Editing Product":"Editing Product","Setting Product":"Setting Product","Product ID":"Product ID","No product set yet":"No product set yet","Product Name":"Product Name","Unset Product":"Unset Product","Search for products":"Search for products","No products found":"No products found","A label and key are required.":"A label and key are required.","Editing Nutrient":"Editing Nutrient","Creating new Nutrient":"Creating new Nutrient","Custom":"Custom","Calculated":"Calculated","my-custom-nutrient":"my-custom-nutrient","Label":"Label","My Custom Nutrient":"My Custom Nutrient","mg":"mg","Daily Need":"Daily Need","Calculation":"Calculation","Learn more":"Learn more","Decimal Precision":"Decimal Precision","Order":"Order","Loading...":"Loading...","Editing Nutrition Ingredient":"Editing Nutrition Ingredient","Creating new Nutrition Ingredient":"Creating new Nutrition Ingredient","Are you sure you want to overwrite the existing values?":"Are you sure you want to overwrite the existing values?","Import values from recipe":"Import values from recipe","Cancel import":"Cancel import","Use this recipe":"Use this recipe","Sort:":"Sort:","Filter:":"Filter:","Edit Recipe Submission":"Edit Recipe Submission","Approve Submission":"Approve Submission","Approve Submission & Add to new Post":"Approve Submission & Add to new Post","Delete Recipe Submission":"Delete Recipe Submission","Are you sure you want to delete":"Are you sure you want to delete","ID":"ID","Date":"Date","User":"User","Edit Nutrient":"Edit Nutrient","Delete Custom Nutrient":"Delete Custom Nutrient","Active":"Active","View and edit collections for this user":"View and edit collections for this user","User ID":"User ID","Display Name":"Display Name","Email":"Email","# Collections":"# Collections","Show All":"Show All","Has Saved Collections":"Has Saved Collections","Does not have Saved Collections":"Does not have Saved Collections","# Items in Inbox":"# Items in Inbox","# Items in Collections":"# Items in Collections","Your Custom Fields":"Your Custom Fields","Custom Field":"Custom Field","Custom Fields":"Custom Fields","Custom Nutrition Ingredient":"Custom Nutrition Ingredient","Custom Nutrition":"Custom Nutrition","Custom Nutrient":"Custom Nutrient","Custom Nutrients":"Custom Nutrients","Features":"Features","Saved Collection":"Saved Collection","Saved Collections":"Saved Collections","User Collection":"User Collection","User Collections":"User Collections","Recipe Submissions":"Recipe Submissions","Recipe Submission":"Recipe Submission","Edit Field":"Edit Field","Delete Field":"Delete Field","Edit Custom Ingredient":"Edit Custom Ingredient","Delete Custom Ingredient":"Delete Custom Ingredient","Edit Saved Collection":"Edit Saved Collection","Reload Recipes":"Reload Recipes","Duplicate Saved Collection":"Duplicate Saved Collection","Delete Saved Collection":"Delete Saved Collection","Description":"Description","Default":"Default","Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.":"Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.","Push to All":"Push to All","Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.":"Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.","Template":"Template","Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".":"Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".","Quick Add":"Quick Add","Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.":"Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.","What do you want the new order to be?":"What do you want the new order to be?","Save Collection Link":"Save Collection Link","# Items":"# Items"}};
</script>
<script data-minify="1" src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=1696258883' id='wprm-public-js' defer></script>
<script id='wprmp-public-js-extra'>
var wprmp_public = {"endpoints":{"private_notes":"https:\/\/www.budgetbytes.com\/wp-json\/wp-recipe-maker\/v1\/private-notes","collections":"https:\/\/www.budgetbytes.com\/wp-json\/wp\/v2\/wprm_collection","collections_helper":"https:\/\/www.budgetbytes.com\/wp-json\/wp-recipe-maker\/v1\/recipe-collections","nutrition":"https:\/\/www.budgetbytes.com\/wp-json\/wp-recipe-maker\/v1\/nutrition"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_round_to_decimals":"2","unit_conversion_remember":true,"unit_conversion_temperature":"none","unit_conversion_system_1_temperature":"F","unit_conversion_system_2_temperature":"C","unit_conversion_advanced_servings_conversion":false,"unit_conversion_system_1_length_unit":"inch","unit_conversion_system_2_length_unit":"cm","fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","unit_conversion_system_1_fractions":true,"unit_conversion_system_2_fractions":true,"unit_conversion_enabled":true,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":false,"user_ratings_thank_you_message":"Thank you for voting!","user_ratings_force_comment":"never","user_ratings_force_comment_scroll_to":"","servings_changer_display":"text_field","template_ingredient_list_style":"disc","template_instruction_list_style":"decimal","template_color_icon":"#343434","recipe_collections_scroll_to_top":true,"recipe_collections_scroll_to_top_offset":"30"},"timer":{"sound_file":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/wp-recipe-maker-premium\/assets\/sounds\/alarm.mp3","text":{"start_timer":"Click to Start Timer"},"icons":{"pause":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M9,2H4C3.4,2,3,2.4,3,3v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C10,2.4,9.6,2,9,2z\"\/><path fill=\"#fffefe\" d=\"M20,2h-5c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C21,2.4,20.6,2,20,2z\"\/><\/g><\/svg>","play":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M6.6,2.2C6.3,2,5.9,1.9,5.6,2.1C5.2,2.3,5,2.6,5,3v18c0,0.4,0.2,0.7,0.6,0.9C5.7,22,5.8,22,6,22c0.2,0,0.4-0.1,0.6-0.2l12-9c0.3-0.2,0.4-0.5,0.4-0.8s-0.1-0.6-0.4-0.8L6.6,2.2z\"\/><\/g><\/svg>","close":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M22.7,4.3l-3-3c-0.4-0.4-1-0.4-1.4,0L12,7.6L5.7,1.3c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4L7.6,12l-6.3,6.3c-0.4,0.4-0.4,1,0,1.4l3,3c0.4,0.4,1,0.4,1.4,0l6.3-6.3l6.3,6.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4L16.4,12l6.3-6.3C23.1,5.3,23.1,4.7,22.7,4.3z\"\/><\/g><\/svg>"}},"recipe_submission":{"max_file_size":1073741824,"text":{"image_size":"The image file is too large"}},"collections":{"default":{"inbox":{"id":0,"name":"Inbox","nbrItems":0,"columns":[{"id":0,"name":"Recipes"}],"groups":[{"id":0,"name":""}],"items":{"0-0":[]}},"user":[]}},"user":"0","add_to_collection":{"access":"everyone","behaviour":"inbox","placement":"bottom","not_logged_in":"hide","not_logged_in_redirect":"","not_logged_in_tooltip":"","collections":{"inbox":"Inbox","user":[]}},"quick_access_shopping_list":{"access":"everyone"}};
</script>
<script data-minify="1" src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.js?ver=1696258883' id='wprmp-public-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js?ver=3.1.2' id='wp-polyfill-inert-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.13.11' id='regenerator-runtime-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0' id='wp-polyfill-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/dom-ready.min.js?ver=392bdd43726760d1f3ca' id='wp-dom-ready-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/hooks.min.js?ver=c6aec9a8d4e5a5d543a1' id='wp-hooks-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/i18n.min.js?ver=7701b0c3857f914212ef' id='wp-i18n-js'></script>
<script type="rocketlazyloadscript" id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/a11y.min.js?ver=7032343a947cfccf5608' id='wp-a11y-js' defer></script>
<script defer='defer' src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/js/jquery.json.min.js?ver=2.7.14' id='gform_json-js'></script>
<script id='gform_gravityforms-js-extra'>
var gform_i18n = {"datepicker":{"days":{"monday":"Mo","tuesday":"Tu","wednesday":"We","thursday":"Th","friday":"Fr","saturday":"Sa","sunday":"Su"},"months":{"january":"January","february":"February","march":"March","april":"April","may":"May","june":"June","july":"July","august":"August","september":"September","october":"October","november":"November","december":"December"},"firstDay":1,"iconText":"Select date"}};
var gf_legacy_multi = [];
var gform_gravityforms = {"strings":{"invalid_file_extension":"This type of file is not allowed. Must be one of the following:","delete_file":"Delete this file","in_progress":"in progress","file_exceeds_limit":"File exceeds size limit","illegal_extension":"This type of file is not allowed.","max_reached":"Maximum number of files reached","unknown_error":"There was a problem while saving the file on the server","currently_uploading":"Please wait for the uploading to complete","cancel":"Cancel","cancel_upload":"Cancel this upload","cancelled":"Cancelled"},"vars":{"images_url":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/gravityforms\/images"}};
var gf_global = {"gf_currency_config":{"name":"U.S. Dollar","symbol_left":"$","symbol_right":"","symbol_padding":"","thousand_separator":",","decimal_separator":".","decimals":2,"code":"USD"},"base_url":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/gravityforms","number_formats":[],"spinnerUrl":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg","version_hash":"9332dbcd44975482ef1e2d947a00716d","strings":{"newRowAdded":"New row added.","rowRemoved":"Row removed","formSaved":"The form has been saved. The content contains the link to return and complete the form."}};
</script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/js/gravityforms.min.js?ver=2.7.14' id='gform_gravityforms-js'></script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/js/placeholders.jquery.min.js?ver=2.7.14' id='gform_placeholder-js'></script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/js/dist/utils.min.js?ver=59d951b75d934ae23e0ea7f9776264aa' id='gform_gravityforms_utils-js'></script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/js/dist/vendor-theme.min.js?ver=4ef53fe41c14a48b294541d9fc37387e' id='gform_gravityforms_theme_vendors-js'></script>
<script id='gform_gravityforms_theme-js-extra'>
var gform_theme_config = {"common":{"form":{"honeypot":{"version_hash":"9332dbcd44975482ef1e2d947a00716d"}}},"hmr_dev":"","public_path":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/gravityforms\/assets\/js\/dist\/"};
</script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/js/dist/scripts-theme.min.js?ver=f4d12a887a23a8c5755fd2b956bc8fcf' id='gform_gravityforms_theme-js'></script>
<script type="rocketlazyloadscript" data-minify="1" defer data-rocket-src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1696258883' id='akismet-frontend-js'></script>
<script id='cp-popup-script-js-extra'>
var cp_ajax = {"url":"https:\/\/www.budgetbytes.com\/wp-admin\/admin-ajax.php","ajax_nonce":"1b31274888","assets_url":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/convertpro\/assets\/","not_connected_to_mailer":"This form is not connected with any mailer service! Please contact web administrator.","timer_labels":"Years,Months,Weeks,Days,Hours,Minutes,Seconds","timer_labels_singular":"Year,Month,Week,Day,Hour,Minute,Second","image_on_ready":"1","cpro_mx_valid":"0","invalid_email_id":"Invalid Email Address!"};
var cp_pro = {"inactive_time":"60"};
var cp_pro_url_cookie = {"days":"30"};
var cp_v2_ab_tests = {"cp_v2_ab_tests_object":[]};
</script>
<script type="rocketlazyloadscript" defer="defer" data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/convertpro/assets/modules/js/cp-popup.min.js?ver=1.7.7' id='cp-popup-script-js'></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript">
jQuery(document).on( "cp_after_form_submit", function( e, element, response
, style_slug ) {
if( false == response.data.error ) {
if( 'undefined' !== typeof response.data['cfox_data'] ) {
var form_data = JSON.parse( response.data['cfox_data'] );
form_data.overwrite_tags = false;
if( 'undefined' !== typeof convertfox ) {
convertfox.identify( form_data );
}
}
}
});
</script>
<svg style="display:none;"><defs><symbol id="utility-menu3"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M14 16a1 1 0 01.117 1.993L14 18H4a1 1 0 01-.117-1.993L4 16h10zm4-5a1 1 0 01.117 1.993L18 13H4a1 1 0 01-.117-1.993L4 11h14zm2-5a1 1 0 01.117 1.993L20 8H4a1 1 0 01-.117-1.993L4 6h16z"/></symbol><symbol id="utility-close"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M17.786 7.62l-.079.087L13.415 12l4.292 4.293a1 1 0 01-1.32 1.497l-.094-.083L12 13.415l-4.293 4.292a1 1 0 01-1.497-1.32l.083-.094L10.585 12 6.293 7.707a1 1 0 011.32-1.497l.094.083L12 10.585l4.293-4.292.087-.08c.88-.729 2.08.419 1.473 1.318l-.067.09z"/></symbol><symbol id="utility-search-fat"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M11 3a8 8 0 016.32 12.905L20.415 19a1 1 0 01-1.32 1.497L19 20.414l-3.095-3.093A8 8 0 1111 3zm0 2a6 6 0 100 12 6 6 0 000-12z"/></symbol><symbol id="utility-pinterest"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12.009 1C5.929 1 1 5.921 1 11.991c0 4.659 2.9 8.639 6.995 10.24-.1-.868-.181-2.207.036-3.157.2-.86 1.287-5.464 1.287-5.464s-.326-.66-.326-1.628c0-1.529.888-2.669 1.993-2.669.942 0 1.396.706 1.396 1.547 0 .941-.598 2.352-.916 3.664-.262 1.094.553 1.99 1.631 1.99 1.958 0 3.462-2.063 3.462-5.03 0-2.632-1.894-4.468-4.603-4.468-3.135 0-4.975 2.343-4.975 4.767 0 .94.363 1.954.816 2.506.09.108.1.208.072.316-.081.344-.272 1.095-.308 1.249-.045.199-.163.244-.371.144-1.378-.642-2.238-2.641-2.238-4.26 0-3.465 2.519-6.65 7.275-6.65 3.815 0 6.787 2.715 6.787 6.351 0 3.79-2.392 6.839-5.708 6.839-1.115 0-2.166-.579-2.52-1.266l-.688 2.614c-.244.959-.915 2.153-1.368 2.886 1.033.316 2.12.488 3.262.488C18.07 23 23 18.079 23 12.009 23.018 5.921 18.089 1 12.009 1z"/></symbol><symbol id="utility-facebook"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M23 12.067C23 5.955 18.075 1 12 1S1 5.955 1 12.067C1 17.592 5.022 22.17 10.281 23v-7.733H7.488v-3.2h2.793V9.63c0-2.773 1.643-4.305 4.155-4.305 1.204 0 2.463.215 2.463.215v2.724h-1.387c-1.367 0-1.793.853-1.793 1.728v2.076h3.05l-.487 3.2h-2.563V23C18.978 22.17 23 17.592 23 12.067"/></symbol><symbol id="utility-twitter"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M24 4.368a9.705 9.705 0 01-2.828.796 5.045 5.045 0 002.165-2.794 9.685 9.685 0 01-3.127 1.225A4.86 4.86 0 0016.616 2c-2.72 0-4.924 2.261-4.924 5.05 0 .396.043.78.127 1.15C7.728 7.99 4.1 5.98 1.672 2.926a5.111 5.111 0 00-.667 2.538 5.08 5.08 0 002.19 4.2 4.822 4.822 0 01-2.23-.63v.064c0 2.446 1.696 4.486 3.95 4.95a4.853 4.853 0 01-1.297.178c-.318 0-.626-.032-.926-.092.626 2.006 2.445 3.466 4.598 3.507A9.721 9.721 0 010 19.732 13.688 13.688 0 007.548 22c9.057 0 14.01-7.694 14.01-14.365 0-.22-.006-.436-.015-.653A10.155 10.155 0 0024 4.37v-.001z"/></symbol><symbol id="utility-email1"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M20 4c.8 0 1.527.313 2.064.823.036.03.071.064.104.1l.02.024A2.99 2.99 0 0123 7v10a2.99 2.99 0 01-.826 2.067.75.75 0 01-.05.056l-.057.051A2.99 2.99 0 0120 20H4a2.988 2.988 0 01-1.902-.68.919.919 0 01-.13-.106l-.051-.055A2.991 2.991 0 011 17V7c0-.787.303-1.503.799-2.038a1.007 1.007 0 01.16-.162A2.996 2.996 0 014 4zm-5.396 9.018l-1.275 1.139a2 2 0 01-2.522.11l-.138-.112-1.264-1.131L4.548 18h15.037l-4.981-4.982zM3 7.297v9.426l4.913-5.033L3 7.297zm18 .009l-4.902 4.378L21 16.585V7.306zM19.459 6H4.55l5.413 4.84c.033.025.066.053.097.083l.015.018 1.924 1.721 1.893-1.692a1.016 1.016 0 01.167-.15l5.4-4.82z"/></symbol></defs></svg><style type="text/css">.wprm-recipe.wprm-recipe-template-2022--nutrition-disclaimer {
overflow: visible;
}
.bb-recipe-card {
border: 2px solid var(--wp--preset--color--secondary);
box-shadow: 4px 4px 0 var(--wp--preset--color--primary);
margin-top: 70px;
padding: 20px;
position: relative;
}
@media (max-width: 600px) {
.bb-recipe-card {
padding: 14px;
}
}
.bb-recipe-card h3 {
font-size: var(--wp--preset--font-size--big);
text-transform: uppercase;
margin-top: 40px;
margin-bottom: var(--wp--custom--layout--block-gap);
}
.bb-recipe-card h4 {
font-size: var(--wp--preset--font-size--normal);
color: #424242;
letter-spacing: 1.38px;
margin-bottom: 10px;
}
.bb-recipe-card ul:not(.wprm-recipe-instructions) {
margin-bottom: 24px;
}
.bb-recipe-card ul:not(.wprm-recipe-instructions) li {
position: relative;
list-style-type: none !important;
}
.bb-recipe-card ul:not(.wprm-recipe-instructions) li::after {
content: "";
width: 4px;
height: 4px;
border-radius: 4px;
background-color: var(--wp--preset--color--foreground);
position: absolute;
left: -24px;
top: 12px;
}
.bb-recipe-card ul.wprm-recipe-instructions {
counter-reset: cwp-counter;
}
.bb-recipe-card ul.wprm-recipe-instructions li {
counter-increment: cwp-counter;
position: relative;
list-style-type: none !important;
}
.bb-recipe-card ul.wprm-recipe-instructions li::after {
content: counter(cwp-counter);
width: 20px;
height: 20px;
border: 2px solid black;
background-color: var(--wp--preset--color--primary);
font-family: var(--wp--preset--font-family--serif);
font-size: 12px;
font-weight: 900;
position: absolute;
top: 4px;
left: -32px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 0 black;
}
.bb-recipe-card__note p {
font-size: var(--wp--preset--font-size--small);
font-style: italic;
color: #616161;
margin-top: 16px;
}
.bb-recipe-card__note p > a {
color: #616161 !important;
}
.bb-recipe-card__top {
display: flex;
width: 100%;
margin-bottom: 0;
}
.bb-recipe-card__top-left {
flex: 1;
position: relative;
margin-bottom: 32px;
}
.bb-recipe-card__top-right {
width: 268px;
}
.bb-recipe-card__top-right img {
transform: translateY(-40px);
}
@media (max-width: 600px) {
.bb-recipe-card__top {
flex-wrap: wrap;
margin-bottom: 24px;
margin-top: -40px;
}
.bb-recipe-card__top-left {
flex: none;
order: 2;
width: 100%;
}
.bb-recipe-card__top-right {
width: 100%;
display: flex;
justify-content: center;
order: 1;
}
.bb-recipe-card__top-right img {
width: 200px;
transform: translateY(0);
}
}
.bb-recipe-card__title {
display: block;
position: relative;
z-index: 1;
background-color: var(--wp--preset--color--primary);
margin: 0 -40px 20px;
padding: 10px 20px;
}
.bb-recipe-card__title h2 {
color: white;
text-shadow: 4px 4px #000, 2px -2px #000, -2px -2px #000, -2px 2px #000, 2px 2px #000;
letter-spacing: 0.1em;
text-transform: uppercase;
}
@media (max-width: 600px) {
.bb-recipe-card__title {
margin: 0 0 20px -24px;
}
}
.bb-recipe-card .wprm-recipe-rating {
margin-bottom: 18px;
}
.bb-recipe-card__meta {
display: flex;
justify-content: space-between;
margin-bottom: 32px;
}
@media (max-width: 600px) {
.bb-recipe-card__meta {
flex-direction: column;
margin-bottom: 12px;
}
}
.bb-recipe-card .wprm-recipe-servings-container {
position: relative;
padding-left: 44px;
}
.bb-recipe-card .wprm-recipe-servings-icon {
position: absolute;
left: 0;
top: 0;
}
.bb-recipe-card .wprm-recipe-servings-icon img {
width: 28px;
height: 28px;
}
.bb-recipe-card .wprm-recipe-details-label {
font-family: var(--wp--preset--font-family--serif);
font-weight: 900;
text-transform: uppercase;
font-size: 14px;
line-height: 18px;
letter-spacing: 1.17px;
margin-bottom: 5px;
}
.bb-recipe-card .wprm-recipe-servings-unit {
color: #757575;
font-style: italic;
font-size: 14px;
line-height: 18px;
}
.bb-recipe-card .wprm-recipe-times-container {
display: flex;
justify-content: flex-end;
padding-left: 32px;
position: relative;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-recipe-times-container {
justify-content: flex-start;
flex-wrap: wrap;
margin-top: 24px;
}
}
.bb-recipe-card .wprm-recipe-times-container::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 28px;
height: 28px;
background-size: cover;
background-image: url("../wp-content/themes/budgetbytes-2022/assets/icons/blocks/quick.svg");
}
.bb-recipe-card .wprm-recipe-times-container .wprm-recipe-block-container {
display: flex;
flex-direction: column;
margin-left: 12px;
margin-right: 24px;
}
.bb-recipe-card .wprm-recipe-times-container .wprm-recipe-block-container * {
font-size: 16px;
line-height: 24px;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-recipe-times-container .wprm-recipe-block-container {
width: 100%;
margin-bottom: 12px;
flex-direction: row;
align-items: center;
}
.bb-recipe-card .wprm-recipe-times-container .wprm-recipe-block-container .wprm-recipe-details-label {
margin: 0 8px 0 0;
}
}
.bb-recipe-card__buttons {
display: flex;
justify-content: flex-start;
margin-bottom: 28px;
}
.bb-recipe-card__buttons > a,
.bb-recipe-card__buttons .wprm-recipe-grow-container {
width: 220px !important;
max-width: calc(50% - 9px) !important;
}
.bb-recipe-card__buttons .wprm-recipe-grow-container {
margin-right: 18px;
}
.bb-recipe-card__buttons a {
border-width: 2px !important;
white-space: nowrap;
font-weight: 900 !important;
font-family: var(--wp--preset--font-family--serif);
letter-spacing: 2px;
text-transform: uppercase;
font-size: 14px;
transition: all 0.2s ease-in-out;
}
.bb-recipe-card__buttons a:hover, .bb-recipe-card__buttons a:focus {
background-color: #eee !important;
}
.bb-recipe-card .wprm-recipe-ingredient-notes {
color: #616161;
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-item {
width: calc((100% - 36px) / 4);
margin-right: 12px;
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-item:nth-child(4) {
margin-right: 0;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-item {
width: calc((100% - 12px) / 2);
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-item:nth-child(2n) {
margin-right: 0;
}
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-name {
display: block;
width: 100%;
text-align: left;
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-name a {
font-family: var(--wp--preset--font-family--serif);
text-transform: uppercase;
font-weight: 900;
color: var(--wp--preset--color--secondary);
text-decoration: none;
}
.bb-recipe-card .wprm-nutrition-label-text-nutrition-unit {
padding-left: 4px;
}
.bb-recipe-card .wprm-call-to-action {
width: calc(100% + 40px);
margin: 32px -20px -20px -20px !important;
flex-wrap: wrap;
text-align: center;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-call-to-action {
width: calc(100% + 28px);
margin: 24px -14px -14px -14px !important;
}
}
.bb-recipe-card .wprm-call-to-action .wprm-recipe-icon {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 12px;
}
.bb-recipe-card .wprm-call-to-action .wprm-recipe-icon img {
width: 48px;
height: 48px;
}
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header {
display: block;
position: relative;
font-size: 22px !important;
font-weight: 900 !important;
line-height: var(--wp--custom--line-height--small);
font-family: var(--wp--preset--font-family--serif);
text-transform: uppercase;
letter-spacing: 1.22px;
text-align: center;
margin-bottom: 12px;
padding: 0 156px;
overflow: hidden;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header {
padding: 0 62px;
}
}
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::before, .bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::after {
content: "";
background-image: url("../wp-content/themes/budgetbytes-2022/assets/images/zig-zag-left-white.svg");
width: 120px;
height: 12px;
background-position: right center;
background-size: cover;
position: absolute;
left: 15px;
top: calc(50% - 6px);
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::before, .bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::after {
left: -63px;
}
}
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::after {
background-image: url("../wp-content/themes/budgetbytes-2022/assets/images/zig-zag-right-white.svg");
left: auto;
right: 15px;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::after {
right: -63px;
}
}
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-text {
font-size: var(--wp--preset--font-size--medium);
}
@media (min-width: 767px) {
.wprm-recipe-header.wprm-recipe-video-header {
display: none;
}
}</style><script type="rocketlazyloadscript">
gform.initializeOnLoaded( function() { jQuery(document).on('gform_post_render', function(event, formId, currentPage){if(formId == 6) {if(typeof Placeholders != 'undefined'){
Placeholders.enable();
}} } );jQuery(document).bind('gform_post_conditional_logic', function(event, formId, fields, isInit){} ) } );
</script>
<script type="rocketlazyloadscript">
gform.initializeOnLoaded( function() {jQuery(document).trigger('gform_post_render', [6, 1]);gform.utils.trigger({ event: 'gform/postRender', native: false, data: { formId: 6, currentPage: 1 } });} );
</script>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/v8b253dfea2ab4077af8c6f58422dfbfd1689876627854" integrity="sha512-bjgnUKX4azu3dLTVtie9u6TKqgx29RBwfj3QXYt5EKfWM/9hPSAI/4qcV5NACjwAo8UtTeWefx6Zq5PHcMm7Tg==" data-cf-beacon='{"rayId":"8128c2e38ab64d13","version":"2023.8.0","b":1,"token":"e94a53d306d84a1da1436edf74dfcc6c","si":100}' crossorigin="anonymous"></script>
</body></html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1696689839 -->
|