Spaces:
Running
Running
File size: 140,522 Bytes
4b630e2 |
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 |
<head data-webtasks-id="488de35c-1599-4c73">
<meta charset="UTF-8" data-webtasks-id="4ebcd0f1-07f4-4f18">
<meta name="viewport" content="width=device-width, initial-scale=1" data-webtasks-id="788c691a-6ffc-4525">
<meta name="robots" content="max-image-preview:large" data-webtasks-id="436dea3c-2b35-41e0">
<meta name="google-site-verification" content="ygsTPKJ-qtcut0ujXl5-KgYTLhXlC-TvnMU07ni5_KU" data-webtasks-id="27ca781b-8a30-4538">
<!-- Async WordPress.com Remote Login -->
<title data-webtasks-id="72a3bb31-24bb-4aae">Jack’s food blog Recipes – Jack's Food Blog</title>
<link rel="dns-prefetch" href="//s0.wp.com" data-webtasks-id="7da451e8-3050-4a69">
<link rel="dns-prefetch" href="//wordpress.com" data-webtasks-id="eaa0fb1c-7c92-4784">
<link rel="dns-prefetch" href="//s.pubmine.com" data-webtasks-id="0c4d3d8e-54a2-48c7">
<link rel="dns-prefetch" href="//x.bidswitch.net" data-webtasks-id="83713ed1-3cc1-446c">
<link rel="dns-prefetch" href="//static.criteo.net" data-webtasks-id="238096a4-728f-4fcf">
<link rel="dns-prefetch" href="//ib.adnxs.com" data-webtasks-id="57d4ac98-27e7-42c5">
<link rel="dns-prefetch" href="//aax.amazon-adsystem.com" data-webtasks-id="59f55b0d-4e55-403d">
<link rel="dns-prefetch" href="//bidder.criteo.com" data-webtasks-id="8e07a614-9eb5-4bb5">
<link rel="dns-prefetch" href="//cas.criteo.com" data-webtasks-id="8ec3bbd8-2e9c-4c07">
<link rel="dns-prefetch" href="//gum.criteo.com" data-webtasks-id="666f2ce1-2716-41cb">
<link rel="dns-prefetch" href="//ads.pubmatic.com" data-webtasks-id="68faf7ee-6443-4d24">
<link rel="dns-prefetch" href="//gads.pubmatic.com" data-webtasks-id="0bc4c65f-e953-4ce1">
<link rel="dns-prefetch" href="//tpc.googlesyndication.com" data-webtasks-id="f71dcd7d-2cbb-4122">
<link rel="dns-prefetch" href="//ad.doubleclick.net" data-webtasks-id="42831714-b7f0-4674">
<link rel="dns-prefetch" href="//googleads.g.doubleclick.net" data-webtasks-id="bfee4264-1c13-4986">
<link rel="dns-prefetch" href="//www.googletagservices.com" data-webtasks-id="6c23c9e8-7bf7-4934">
<link rel="dns-prefetch" href="//cdn.switchadhub.com" data-webtasks-id="103e60ee-4de6-42a6">
<link rel="dns-prefetch" href="//delivery.g.switchadhub.com" data-webtasks-id="09725395-5007-4b79">
<link rel="dns-prefetch" href="//delivery.swid.switchadhub.com" data-webtasks-id="4b08ef49-287b-4654">
<link rel="dns-prefetch" href="//a.teads.tv" data-webtasks-id="290b28a7-9df0-4597">
<link rel="dns-prefetch" href="//prebid.media.net" data-webtasks-id="6e6dbe98-3e23-44ce">
<link rel="dns-prefetch" href="//adserver-us.adtech.advertising.com" data-webtasks-id="9840340a-5f26-4392">
<link rel="dns-prefetch" href="//fastlane.rubiconproject.com" data-webtasks-id="b4ada45d-387d-4991">
<link rel="dns-prefetch" href="//prebid-server.rubiconproject.com" data-webtasks-id="7c74be1f-ded1-4e16">
<link rel="dns-prefetch" href="//hb-api.omnitagjs.com" data-webtasks-id="824a994b-a498-436f">
<link rel="dns-prefetch" href="//mtrx.go.sonobi.com" data-webtasks-id="5cd0209c-ee68-415c">
<link rel="dns-prefetch" href="//apex.go.sonobi.com" data-webtasks-id="7366acd4-42ff-4796">
<link rel="dns-prefetch" href="//u.openx.net" data-webtasks-id="a79a7393-cad7-48e6">
<link href="https://fonts.gstatic.com" crossorigin="" rel="preconnect" data-webtasks-id="a4ee4023-59ec-4878">
<link rel="alternate" type="application/rss+xml" title="Jack's Food Blog » Feed" href="https://jacksfoodblog.com/feed/" data-webtasks-id="2acf103d-88e8-4d03">
<link rel="alternate" type="application/rss+xml" title="Jack's Food Blog » Comments Feed" href="https://jacksfoodblog.com/comments/feed/" data-webtasks-id="e620fe3b-53bc-4865">
<script type="text/javascript" data-webtasks-id="947df4e2-d35d-42b0">
/* <![CDATA[ */
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function () {
oldonload();
func();
}
}
}
/* ]]> */
</script>
<script data-webtasks-id="9c313b11-a1c4-48dd">
window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s0.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1677072837i&ver=6.3-alpha-56011"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
</script><script src="https://s0.wp.com/wp-includes/js/wp-emoji-release.min.js?m=1677072837i&ver=6.3-alpha-56011" type="text/javascript" defer="" data-webtasks-id="7e782e6c-603e-489e"></script>
<style data-webtasks-id="6607a7f2-e441-4243">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-0-1" href="https://s0.wp.com/_static/??/wp-content/blog-plugins/wordads/global.css,/wp-content/mu-plugins/likes/jetpack-likes.css?m=1683897436j&cssminify=yes" type="text/css" media="all" data-webtasks-id="ae12e1f1-6d8c-489f">
<style id="wp-block-paragraph-inline-css" data-webtasks-id="1ba14455-1f1e-441d">
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}p.has-background{padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}
</style>
<style id="wp-block-group-inline-css" data-webtasks-id="75a8bdcd-3988-4795">
.wp-block-group{box-sizing:border-box}
</style>
<style id="wp-block-site-logo-inline-css" data-webtasks-id="26f2ffe8-0961-4375">
.wp-block-site-logo{box-sizing:border-box;line-height:0}.wp-block-site-logo a{display:inline-block}.wp-block-site-logo.is-default-size img{height:auto;width:120px}.wp-block-site-logo img{height:auto;max-width:100%}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-left:auto;margin-right:auto;text-align:center}.wp-block-site-logo.is-style-rounded{border-radius:9999px}
</style>
<style id="wp-block-site-title-inline-css" data-webtasks-id="ac7faf04-962e-4fa2">
.wp-block-site-title a{color:inherit}
.wp-block-site-title{font-family: var(--wp--preset--font-family--heading-font);font-size: var(--wp--preset--font-size--medium);font-weight: 600;text-decoration: none;}
</style>
<style id="wp-block-navigation-link-inline-css" data-webtasks-id="939d33d2-1d65-47c5">
.wp-block-navigation .wp-block-navigation-item__label{overflow-wrap:break-word;word-break:normal}.wp-block-navigation .wp-block-navigation-item__description{display:none}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-12-1" href="https://s0.wp.com/_static/??-eJytzEEOwiAQheELWV5xQbsxngWQkNFxaBio6e3FGG/g8nsv+fHaplikJWnYuGcSRe6DIdU8npqwW2dmMyN04hsCl/iYmEL19fhKIX6n7BsVgbaDk4mqJ/wlrSWS57HKB7/49XmxbnXLujh7vr8BEyRHJw==&cssminify=yes" type="text/css" media="all" data-webtasks-id="d2ad6141-363b-4411">
<style id="wp-block-navigation-inline-css" data-webtasks-id="93ba9454-cc27-4bf7">
.wp-block-navigation{font-size: var(--wp--preset--font-size--normal);}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
</style>
<style id="wp-block-columns-inline-css" data-webtasks-id="c9fdcc95-f881-4f2d">
.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}
</style>
<style id="wp-block-post-title-inline-css" data-webtasks-id="2e54f6f6-51e8-4a5d">
.wp-block-post-title{box-sizing:border-box;word-break:break-word}.wp-block-post-title a{display:inline-block}
.wp-block-post-title{font-family: var(--wp--preset--font-family--heading-font);font-size: 5rem;font-weight: 600;line-height: 1.125;margin-bottom: 0;}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-18-1" href="https://s0.wp.com/wp-content/plugins/gutenberg-core/v16.0.0/build/block-library/blocks/cover/style.css?m=1686787612i&cssminify=yes" type="text/css" media="all" data-webtasks-id="984c5dda-96b4-4da9">
<style id="wp-block-spacer-inline-css" data-webtasks-id="eac18316-d983-4bb7">
.wp-block-spacer{clear:both}
</style>
<style id="wp-block-heading-inline-css" data-webtasks-id="0efc46ea-2b7e-444c">
h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}
.wp-block-heading{font-family: var(--wp--preset--font-family--heading-font);font-weight: 400;line-height: 1.125;}
</style>
<style id="wp-block-image-inline-css" data-webtasks-id="1bcae4d4-5b8e-4032">
.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}.wp-block-image[style*=border-radius]>a,.wp-block-image[style*=border-radius] img{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image.aligncenter,.wp-block-image .aligncenter,.wp-block-image.alignleft,.wp-block-image .alignleft,.wp-block-image.alignright,.wp-block-image .alignright{display:table}.wp-block-image.aligncenter>figcaption,.wp-block-image .aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image.alignright>figcaption,.wp-block-image .alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}.wp-block-image :where(.has-border-color){border-style:solid}.wp-block-image :where([style*=border-top-color]){border-top-style:solid}.wp-block-image :where([style*=border-right-color]){border-right-style:solid}.wp-block-image :where([style*=border-bottom-color]){border-bottom-style:solid}.wp-block-image :where([style*=border-left-color]){border-left-style:solid}.wp-block-image :where([style*=border-width]){border-style:solid}.wp-block-image :where([style*=border-top-width]){border-top-style:solid}.wp-block-image :where([style*=border-right-width]){border-right-style:solid}.wp-block-image :where([style*=border-bottom-width]){border-bottom-style:solid}.wp-block-image :where([style*=border-left-width]){border-left-style:solid}.wp-block-image figure{margin:0}.wp-lightbox-container .img-container{position:relative}.wp-lightbox-container button{background:none;border:none;cursor:zoom-in;height:100%;position:absolute;width:100%;z-index:100}.wp-lightbox-container button:focus-visible{outline:5px auto #212121;outline:5px auto -webkit-focus-ring-color;outline-offset:5px}.wp-lightbox-overlay{height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100vw;z-index:100000}.wp-lightbox-overlay .close-button{cursor:pointer;padding:0;position:absolute;right:12.5px;top:12.5px;z-index:5000000}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;flex-direction:column;height:100%;justify-content:center;padding:30px;position:absolute;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay .wp-block-image img{max-height:100%;max-width:100%;width:auto}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.initialized{animation:turn-off-visibility .3s both}.wp-lightbox-overlay.initialized img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.initialized.active{animation:turn-on-visibility .25s both;visibility:visible}.wp-lightbox-overlay.initialized.active img{animation:turn-on-visibility .3s both}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}html.has-lightbox-open{overflow:hidden}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-24-1" href="https://s0.wp.com/_static/??-eJydjEEKgCAQAD+UrR6KLtFbTJfQdJXWxe9HUB/oOMMw0KtyhRpSgyyqJjkCMURs1brzZWAhyMVLQgZnryKMCbiHipfahXzC0TEP8H/2NZ94fltezbxMxkx61vEGx+U/hQ==&cssminify=yes" type="text/css" media="all" data-webtasks-id="86d5fef7-2691-4e46">
<style id="wp-block-comments-inline-css" data-webtasks-id="5d3ab7a7-a0a1-4daa">
.wp-block-post-comments{box-sizing:border-box}.wp-block-post-comments .alignleft{float:left}.wp-block-post-comments .alignright{float:right}.wp-block-post-comments .navigation:after{clear:both;content:"";display:table}.wp-block-post-comments .commentlist{clear:both;list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-left:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:1em;line-height:1.8;margin:1em 0}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;margin-top:.5em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{font-size:.875em;line-height:1.5}.wp-block-post-comments .comment-meta b{font-weight:400}.wp-block-post-comments .comment-meta .comment-awaiting-moderation{display:block;margin-bottom:1em;margin-top:1em}.wp-block-post-comments .comment-body .commentmetadata{font-size:.875em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments .comment-reply-title{margin-bottom:0}.wp-block-post-comments .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments .reply{font-size:.875em;margin-bottom:1.4em}.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea{border:1px solid #949494;font-family:inherit;font-size:1em}.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-comments input[type=submit]){border:none}
</style>
<style id="wp-block-latest-posts-inline-css" data-webtasks-id="747bbb93-2088-46d4">
.wp-block-latest-posts{box-sizing:border-box}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none;padding-left:0}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-bottom:1em;margin-top:.5em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;max-width:100%;width:auto}.wp-block-latest-posts__featured-image.alignleft{float:left;margin-right:1em}.wp-block-latest-posts__featured-image.alignright{float:right;margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}
</style>
<style id="wp-block-library-inline-css" data-webtasks-id="f8605325-e722-4f29">
:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px;--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
.has-text-align-justify {
text-align:justify;
}
.wp-block-cover__image-background.has-parallax {
background-size: cover;
}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-32-1" href="https://s0.wp.com/_static/??-eJx9jEEOAiEQBD/kQECjeDC+ZWEnijIwYWA3/l72op689KFTVXplCCU3zE1z6reYRYfiUwlP0VYZpwxIJE4IFRd10HOU9iFA2iuhCiI7/ROiDt9WxfETT20jCOc4YUIa2D9t5eGA91xRBMZS7ATtPkTZvCtdzNEZt7f2fHq8Afl7R7w=&cssminify=yes" type="text/css" media="all" data-webtasks-id="d25119d4-4bae-438e">
<style id="global-styles-inline-css" data-webtasks-id="c2e5a5da-f362-421b">
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--primary: #FF9900;--wp--preset--color--secondary: #2b2b2b;--wp--preset--color--foreground: #010101;--wp--preset--color--background: #FFF8EE;--wp--preset--color--tertiary: #ffffff;--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: 1rem;--wp--preset--font-size--medium: 1.5rem;--wp--preset--font-size--large: 2rem;--wp--preset--font-size--x-large: 2.5rem;--wp--preset--font-size--normal: 1.125rem;--wp--preset--font-family--body-font: "Inter", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Helvetica', sans-serif;--wp--preset--font-family--heading-font: "Arvo", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Helvetica', sans-serif;--wp--preset--font-family--albert-sans: 'Albert Sans';--wp--preset--font-family--alegreya: Alegreya;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda';--wp--preset--font-family--cabin: Cabin;--wp--preset--font-family--chivo: Chivo;--wp--preset--font-family--commissioner: Commissioner;--wp--preset--font-family--cormorant: Cormorant;--wp--preset--font-family--courier-prime: 'Courier Prime';--wp--preset--font-family--crimson-pro: 'Crimson Pro';--wp--preset--font-family--dm-mono: 'DM Mono';--wp--preset--font-family--dm-sans: 'DM Sans';--wp--preset--font-family--domine: Domine;--wp--preset--font-family--eb-garamond: 'EB Garamond';--wp--preset--font-family--epilogue: Epilogue;--wp--preset--font-family--figtree: Figtree;--wp--preset--font-family--fira-sans: 'Fira Sans';--wp--preset--font-family--fraunces: Fraunces;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono';--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans';--wp--preset--font-family--josefin-sans: 'Josefin Sans';--wp--preset--font-family--jost: Jost;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville';--wp--preset--font-family--libre-franklin: 'Libre Franklin';--wp--preset--font-family--literata: Literata;--wp--preset--font-family--lora: Lora;--wp--preset--font-family--merriweather: Merriweather;--wp--preset--font-family--montserrat: Montserrat;--wp--preset--font-family--newsreader: Newsreader;--wp--preset--font-family--nunito: Nunito;--wp--preset--font-family--open-sans: 'Open Sans';--wp--preset--font-family--overpass: Overpass;--wp--preset--font-family--petrona: Petrona;--wp--preset--font-family--piazzolla: Piazzolla;--wp--preset--font-family--playfair-display: 'Playfair Display';--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans';--wp--preset--font-family--poppins: Poppins;--wp--preset--font-family--raleway: Raleway;--wp--preset--font-family--roboto-slab: 'Roboto Slab';--wp--preset--font-family--roboto: Roboto;--wp--preset--font-family--rubik: Rubik;--wp--preset--font-family--sora: Sora;--wp--preset--font-family--source-sans-pro: 'Source Sans Pro';--wp--preset--font-family--source-serif-pro: 'Source Serif Pro';--wp--preset--font-family--space-mono: 'Space Mono';--wp--preset--font-family--texturina: Texturina;--wp--preset--font-family--work-sans: 'Work Sans';--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--gap--horizontal: min(30px, 5vw);--wp--custom--gap--vertical: min(30px, 5vw);}body { margin: 0;--wp--style--global--content-size: 650px;--wp--style--global--wide-size: 1000px;}.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: 30px; 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: 30px; }: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: 30px;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: 30px;margin-block-end: 0;}:where(body .is-layout-flex) {gap: 30px;}:where(body .is-layout-grid) {gap: 30px;}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--body-font);font-size: var(--wp--preset--font-size--normal);line-height: 1.6;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){color: var(--wp--preset--color--primary);text-decoration: underline;}h1{font-size: 3rem;}h2{font-size: var(--wp--preset--font-size--x-large);font-weight: 600;}h3{font-size: var(--wp--preset--font-size--large);}h4{font-size: var(--wp--preset--font-size--medium);}h5{font-size: 1.125rem;}h6{font-size: var(--wp--preset--font-size--small);}.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-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-foreground-color{color: var(--wp--preset--color--foreground) !important;}.has-background-color{color: var(--wp--preset--color--background) !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-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !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-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-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !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-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-normal-font-size{font-size: var(--wp--preset--font-size--normal) !important;}.has-body-font-font-family{font-family: var(--wp--preset--font-family--body-font) !important;}.has-heading-font-font-family{font-family: var(--wp--preset--font-family--heading-font) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-pro-font-family{font-family: var(--wp--preset--font-family--source-sans-pro) !important;}.has-source-serif-pro-font-family{font-family: var(--wp--preset--font-family--source-serif-pro) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
</style>
<style id="core-block-supports-inline-css" data-webtasks-id="ea2a1ce3-f219-497b">
.wp-elements-9fdbcc2062518aa65c671b61fdc4df96 a{color:var(--wp--preset--color--tertiary);}.wp-container-1.wp-container-1{flex-wrap:nowrap;gap:5%;justify-content:flex-end;}.wp-container-2.wp-container-2 > *{margin-block-start:0;margin-block-end:0;}.wp-container-2.wp-container-2.wp-container-2.wp-container-2 > * + *{margin-block-start:0px;margin-block-end:0;}.wp-elements-c3fcee080946d94ec567c05ca0abf29e a{color:var(--wp--preset--color--custom-color-1);}.wp-container-6.wp-container-6{justify-content:center;}.wp-container-8.wp-container-8{justify-content:flex-end;}.wp-elements-a98fa52be2f5ebc5affb0f2852228aa0 a{color:var(--wp--preset--color--white);}.wp-container-34.wp-container-34{flex-wrap:nowrap;gap:75px;}.wp-container-36.wp-container-36{gap:11px;}.wp-container-37.wp-container-37{justify-content:space-between;}.wp-elements-6e234fb46fec8e2c95e9cc867d2ed20b a,.wp-elements-e2c4f0d1fc3ea9487825492a112981e4 a{color:var(--wp--preset--color--primary);}.wp-container-3.wp-container-3,.wp-container-10.wp-container-10,.wp-container-15.wp-container-15,.wp-container-22.wp-container-22,.wp-container-27.wp-container-27{flex-wrap:nowrap;}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-36-1" href="https://s0.wp.com/_static/??-eJx9juEKwjAMhF/IWpxssB/is8wSu2jSlDZFfHujgk4F/919ySXnL9kFSQpJPTeXqUVM1QdhNuQIz2CufpG1kZVHn0TR0vUlnoPFTZ2B7UIuwNjYXqQwo4GqV4Kf7UWDCOJIwqQo6cO4I01Y/kULHEiiyfho/rb30J53m6Eft93YD93pBnHYXzQ=&cssminify=yes" type="text/css" media="all" data-webtasks-id="77eb2469-840e-44f8">
<style id="jetpack-global-styles-frontend-style-inline-css" data-webtasks-id="89d252c9-4d57-4fb9">
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-38-1" href="https://s0.wp.com/_static/??-eJyNjcsKAjEMRX/IGmR0HBfip0hMS9sxTYppGfx7H7gRN+7ugcs5sFRHKi1Ig9Jd5R6zGMyhVaTrh8G6QFHfORhYwlvw6P39PbPENZmt4G/ROQuBKWVkxxrVvuBH1lIoz2zaQmS9IL8Op3LcjNN+N4yHaZgfuUVIcA==&cssminify=yes" type="text/css" media="all" data-webtasks-id="1ab098af-afc6-4302">
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/wp-content/js/mobile-useragent-info.js?m=1609849039i" data-webtasks-id="4379fbac-441c-4c88"></script>
<script defer="" crossorigin="anonymous" src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v16.0.0/build/block-library/interactivity/vendors.min.js?m=1686787612i&ver=53ab8a5d7f849191c6d2" id="wp-interactivity-vendors-js" data-webtasks-id="f67785ff-971d-48c1"></script>
<script defer="" crossorigin="anonymous" src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v16.0.0/build/block-library/interactivity/runtime.min.js?m=1686787612i&ver=a85d55e8a0e34b0d9216" id="wp-interactivity-runtime-js" data-webtasks-id="b8fd0082-ad4b-45ee"></script>
<script defer="" crossorigin="anonymous" src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v16.0.0/build/block-library/blocks/navigation/interactivity.min.js?m=1686787612i&ver=ffd6c65f9b5e2d3e3697" id="wp-block-navigation-view-js" data-webtasks-id="89d4fde2-01fc-405a"></script>
<script id="wpcom-actionbar-placeholder-js-extra" data-webtasks-id="f3c80309-41e8-40d6">
var actionbardata = {"siteID":"93195613","siteURL":"https:\/\/jacksfoodblog.com","xhrURL":"https:\/\/jacksfoodblog.com\/wp-admin\/admin-ajax.php","nonce":"ceb7cae7fd","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https:\/\/s0.wp.com\/wp-content\/js\/wpcom-proxy-request.js?ver=20211021","shortlink":"https:\/\/wp.me\/P6j2r3-Ht","i18n":{"followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/read\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar"}};
</script>
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/_static/??/wp-content/js/rlt-proxy.js,/wp-content/blog-plugins/wordads-classes/js/cmp-non-gdpr.js?m=1653088172j" data-webtasks-id="804df822-d081-47ab"></script>
<script type="text/javascript" data-webtasks-id="1ce56e03-d735-41e6">
window.addEventListener( 'DOMContentLoaded', function() {
rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
} );
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://jacksgrub.wordpress.com/xmlrpc.php?rsd" data-webtasks-id="80675b79-81f7-482f">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s0.wp.com/wp-includes/wlwmanifest.xml" data-webtasks-id="f25e1f00-3c71-4593">
<meta name="generator" content="WordPress.com" data-webtasks-id="7d577f20-73a3-43b9">
<link rel="canonical" href="https://jacksfoodblog.com/recipes/" data-webtasks-id="dcd2b66a-d772-46e0">
<link rel="shortlink" href="https://wp.me/P6j2r3-Ht" data-webtasks-id="b402a69b-c0a4-4f61">
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/?format=json&url=https%3A%2F%2Fjacksfoodblog.com%2Frecipes%2F&for=wpcom-auto-discovery" data-webtasks-id="1ae3417a-94b4-4f89"><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/?format=xml&url=https%3A%2F%2Fjacksfoodblog.com%2Frecipes%2F&for=wpcom-auto-discovery" data-webtasks-id="30b7c71e-620d-4d19">
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" data-webtasks-id="0e3dc7c6-5731-41e9">
<meta property="og:title" content="Jack’s food blog Recipes" data-webtasks-id="9555142e-fc15-44ff">
<meta property="og:url" content="https://jacksfoodblog.com/recipes/" data-webtasks-id="d96df614-3171-4f4f">
<meta property="og:description" content="Discover Jack’s Food Blog’s original recipes here, we specialise in one pot and pasta recipes" data-webtasks-id="88910f2f-234a-4c7d">
<meta property="article:published_time" content="2023-01-09T01:16:35+00:00" data-webtasks-id="71f27950-3fe0-4b56">
<meta property="article:modified_time" content="2023-01-12T04:26:09+00:00" data-webtasks-id="8caf7847-189b-48a6">
<meta property="og:site_name" content="Jack's Food Blog" data-webtasks-id="3dbf2a8f-1efa-4b14">
<meta property="og:image" content="https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=1200" data-webtasks-id="6afa92bd-93d0-49b0">
<meta property="og:image:width" content="1200" data-webtasks-id="051c251f-5fc5-4ad1">
<meta property="og:image:height" content="800" data-webtasks-id="25bbd073-a5e9-44c4">
<meta property="og:image:alt" content="" data-webtasks-id="6ce0e9c1-19a1-4a84">
<meta property="og:locale" content="en_US" data-webtasks-id="97d96109-4ab8-4d8a">
<meta property="article:publisher" content="https://www.facebook.com/WordPresscom" data-webtasks-id="2724b94c-3e25-4365">
<meta name="twitter:creator" content="@JackTelford" data-webtasks-id="42ccd366-ccf2-4cba">
<meta name="twitter:site" content="@JackTelford" data-webtasks-id="28274dd7-3b45-4bb5">
<meta name="twitter:text:title" content="Jack’s food blog Recipes" data-webtasks-id="0d212751-4275-4ad3">
<meta name="twitter:image" content="https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=640" data-webtasks-id="de9060b3-5426-4253">
<meta name="twitter:card" content="summary_large_image" data-webtasks-id="5c2a8bd8-6801-4bbb">
<!-- End Jetpack Open Graph Tags -->
<link rel="openid.server" href="https://jacksfoodblog.com/?openidserver=1" data-webtasks-id="efebca8b-b1d7-4d22">
<link rel="openid.delegate" href="https://jacksfoodblog.com/" data-webtasks-id="378d96bb-3748-41b1">
<link rel="search" type="application/opensearchdescription+xml" href="https://jacksfoodblog.com/osd.xml" title="Jack's Food Blog" data-webtasks-id="4b9d3c30-63cc-4169">
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" data-webtasks-id="af325ced-c017-4a05">
<style type="text/css" data-webtasks-id="c42ee87b-9e4e-4417">
.recentcomments a {
display: inline !important;
padding: 0 !important;
margin: 0 !important;
}
table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
border: 0px;
margin: 0;
}
table.recentcommentsavatartop a, table.recentcommentsavatarend a {
border: 0px !important;
background-color: transparent !important;
}
td.recentcommentsavatarend, td.recentcommentsavatartop {
padding: 0px 0px 1px 0px;
margin: 0px;
}
td.recentcommentstextend {
border: none !important;
padding: 0px 0px 2px 10px;
}
.rtl td.recentcommentstextend {
padding: 0px 10px 2px 0px;
}
td.recentcommentstexttop {
border: none;
padding: 0px 0px 0px 10px;
}
.rtl td.recentcommentstexttop {
padding: 0px 10px 0px 0px;
}
</style>
<meta name="application-name" content="Jack's Food Blog" data-webtasks-id="e46c9f64-9fa5-4550"><meta name="msapplication-window" content="width=device-width;height=device-height" data-webtasks-id="d107abb5-fa9f-4330"><meta name="msapplication-tooltip" content="Balanced, Delicious Recipes for the Home Cook" data-webtasks-id="8fbe4980-f238-4598"><meta name="msapplication-task" content="name=Subscribe;action-uri=https://jacksfoodblog.com/feed/;icon-uri=https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=16" data-webtasks-id="4a9a6e79-94d1-4827"><meta name="msapplication-task" content="name=Sign up for a free blog;action-uri=http://wordpress.com/signup/;icon-uri=https://s0.wp.com/i/favicon.ico" data-webtasks-id="87581367-41c3-44be"><meta name="msapplication-task" content="name=WordPress.com Support;action-uri=http://support.wordpress.com/;icon-uri=https://s0.wp.com/i/favicon.ico" data-webtasks-id="50808609-f0ba-44f6"><meta name="msapplication-task" content="name=WordPress.com Forums;action-uri=http://forums.wordpress.com/;icon-uri=https://s0.wp.com/i/favicon.ico" data-webtasks-id="25cc65ca-32f9-4e11"><meta name="description" content="Discover Jack's Food Blog's original recipes here, we specialise in one pot and pasta recipes" data-webtasks-id="9c6f4238-a400-4e08">
<script type="text/javascript" data-webtasks-id="f9df7338-1811-402c">
function __ATA_CC() {var v = document.cookie.match('(^|;) ?personalized-ads-consent=([^;]*)(;|$)');return v ? 1 : 0;}
var __ATA_PP = { 'pt': 2, 'ht': 1, 'tn': 'munchies', 'uloggedin': 0, 'amp': false, 'consent': __ATA_CC(), 'gdpr_applies': false, 'ad': { 'label': { 'text': 'Advertisements' }, 'reportAd': { 'text': 'Report this ad' } }, 'disabled_slot_formats': [], 'siteid': 93195613 };
var __ATA = __ATA || {};
__ATA.cmd = __ATA.cmd || [];
__ATA.criteo = __ATA.criteo || {};
__ATA.criteo.cmd = __ATA.criteo.cmd || [];
</script>
<script type="text/javascript" data-webtasks-id="5a7bdfed-4a7f-4212">
(function(){var g=Date.now||function(){return+new Date};function h(a,b){a:{for(var c=a.length,d="string"==typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a)){b=e;break a}b=-1}return 0>b?null:"string"==typeof a?a.charAt(b):a[b]};function k(a,b,c){c=null!=c?"="+encodeURIComponent(String(c)):"";if(b+=c){c=a.indexOf("#");0>c&&(c=a.length);var d=a.indexOf("?");if(0>d||d>c){d=c;var e=""}else e=a.substring(d+1,c);a=[a.substr(0,d),e,a.substr(c)];c=a[1];a[1]=b?c?c+"&"+b:b:c;a=a[0]+(a[1]?"?"+a[1]:"")+a[2]}return a};var l=0;function m(a,b){var c=document.createElement("script");c.src=a;c.onload=function(){b&&b(void 0)};c.onerror=function(){b&&b("error")};a=document.getElementsByTagName("head");var d;a&&0!==a.length?d=a[0]:d=document.documentElement;d.appendChild(c)}function n(a){var b=void 0===b?document.cookie:b;return(b=h(b.split("; "),function(c){return-1!=c.indexOf(a+"=")}))?b.split("=")[1]:""}function p(a){return"string"==typeof a&&0<a.length}
function r(a,b,c){b=void 0===b?"":b;c=void 0===c?".":c;var d=[];Object.keys(a).forEach(function(e){var f=a[e],q=typeof f;"object"==q&&null!=f||"function"==q?d.push(r(f,b+e+c)):null!==f&&void 0!==f&&(e=encodeURIComponent(b+e),d.push(e+"="+encodeURIComponent(f)))});return d.filter(p).join("&")}function t(a,b){a||((window.__ATA||{}).config=b.c,m(b.url))}var u=Math.floor(1E13*Math.random()),v=window.__ATA||{};window.__ATA=v;window.__ATA.cmd=v.cmd||[];v.rid=u;v.createdAt=g();var w=window.__ATA||{},x="s.pubmine.com";
w&&w.serverDomain&&(x=w.serverDomain);var y="//"+x+"/conf",z=window.top===window,A=window.__ATA_PP&&window.__ATA_PP.gdpr_applies,B="boolean"===typeof A?Number(A):null,C=window.__ATA_PP||null,D=z?document.referrer?document.referrer:null:null,E=z?window.location.href:document.referrer?document.referrer:null,F,G=n("__ATA_tuuid");F=G?G:null;var H=window.innerWidth+"x"+window.innerHeight,I=n("usprivacy"),J=r({gdpr:B,pp:C,rid:u,src:D,ref:E,tuuid:F,vp:H,us_privacy:I?I:null},"",".");
(function(a){var b=void 0===b?"cb":b;l++;var c="callback__"+g().toString(36)+"_"+l.toString(36);a=k(a,b,c);window[c]=function(d){t(void 0,d)};m(a,function(d){d&&t(d)})})(y+"?"+J);}).call(this);
</script><script src="//s.pubmine.com/conf?gdpr=0&pp.pt=2&pp.ht=1&pp.tn=munchies&pp.uloggedin=0&pp.amp=false&pp.consent=0&pp.gdpr_applies=false&pp.ad.label.text=Advertisements&pp.ad.reportAd.text=Report%20this%20ad&pp.siteid=93195613&rid=2188700759869&src=https%3A%2F%2Fjacksfoodblog.com%2F&ref=https%3A%2F%2Fjacksfoodblog.com%2Frecipes%2F&tuuid=006be387-a1aa-4bb5-ac8d-c07bbaa0d88b&vp=1536x746&cb=callback__ljo3ga7u_1" data-webtasks-id="737fde0e-e11e-48da"></script> <script data-webtasks-id="4b1ff2fb-c369-4b60">
</script><style id="wp-fonts-local" data-webtasks-id="80d24bda-dd67-4ebb">
@font-face{font-family:Arvo;font-style:normal;font-weight:400;font-display:block;src:url('https://s0.wp.com/wp-content/themes/premium/munchies/assets/fonts/Arvo-Regular.ttf') format('truetype');font-stretch:normal;}@font-face{font-family:Arvo;font-style:bold;font-weight:600;font-display:block;src:url('https://s0.wp.com/wp-content/themes/premium/munchies/assets/fonts/Arvo-Bold.ttf') format('truetype');font-stretch:normal;}@font-face{font-family:Arvo;font-style:italic;font-weight:400;font-display:block;src:url('https://s0.wp.com/wp-content/themes/premium/munchies/assets/fonts/Arvo-Italic.ttf') format('truetype');font-stretch:normal;}@font-face{font-family:Arvo;font-style:italic;font-weight:600;font-display:block;src:url('https://s0.wp.com/wp-content/themes/premium/munchies/assets/fonts/Arvo-BoldItalic.ttf') format('truetype');font-stretch:normal;}
</style>
<style id="wp-fonts-jetpack-google-fonts" data-webtasks-id="95b05d2c-e546-415c">
/* latin */
@font-face {
font-family: 'Arvo';
font-style: italic;
font-weight: 400;
font-display: fallback;
src: url(https://fonts.wp.com/s/arvo/v20/tDbN2oWUg0MKqSIg75Tv.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
font-family: 'Arvo';
font-style: italic;
font-weight: 700;
font-display: fallback;
src: url(https://fonts.wp.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLH68dr_.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
font-family: 'Arvo';
font-style: normal;
font-weight: 400;
font-display: fallback;
src: url(https://fonts.wp.com/s/arvo/v20/tDbD2oWUg0MKqScQ7Q.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
font-family: 'Arvo';
font-style: normal;
font-weight: 700;
font-display: fallback;
src: url(https://fonts.wp.com/s/arvo/v20/tDbM2oWUg0MKoZw1-LPK8w.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
</style>
<link rel="icon" href="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=32" sizes="32x32" data-webtasks-id="864883b6-c60c-4b05">
<link rel="icon" href="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=192" sizes="192x192" data-webtasks-id="f5fc1689-519c-43a2">
<link rel="apple-touch-icon" href="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=180" data-webtasks-id="b2162a13-4e69-4aa4">
<meta name="msapplication-TileImage" content="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=270" data-webtasks-id="a3a1f34e-2694-4124">
<!-- Your Google Analytics Plugin is missing the tracking ID -->
<link rel="stylesheet" type="text/css" id="gravatar-card-css" href="https://0.gravatar.com/dist/css/hovercard.min.css?ver=202327a38e82b72ca7b7f7489a6e0d2e13bda8e1ecaa4ef340fc6b01754378626ee67e" data-webtasks-id="34e97464-4548-4eca"><link rel="stylesheet" type="text/css" id="gravatar-card-services-css" href="https://0.gravatar.com/dist/css/services.min.css?ver=202327a38e82b72ca7b7f7489a6e0d2e13bda8e1ecaa4ef340fc6b01754378626ee67e" data-webtasks-id="8dafd0c7-7be0-48e5"><script src="https://c0.pubmine.com/2.37.11677685674593/ata.js" data-webtasks-id="0fcbb383-f79c-446c"></script><link href="https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20210915" type="text/css" rel="stylesheet" data-webtasks-id="6c87b0fd-bc38-434b"></head>
<body class="page-template-default page page-id-2695 wp-embed-responsive customizer-styles-applied highlander-enabled highlander-light" data-webtasks-id="9e3c2f80-a0e6-4244">
<a class="skip-link screen-reader-text" href="#wp--skip-link--target" data-webtasks-id="8e75bca3-e1c7-4670">Skip to content</a><div class="wp-site-blocks" data-webtasks-id="fc64021f-f65f-4ed9"><header class="wp-block-template-part" data-webtasks-id="d66df22c-e724-4ec5">
<div class="wp-block-group alignfull is-layout-flow wp-container-2 wp-block-group-is-layout-flow" data-webtasks-id="4949c9d9-8cea-4280">
<div class="wp-block-group alignfull site-header has-tertiary-color has-secondary-background-color has-text-color has-background has-link-color wp-elements-9fdbcc2062518aa65c671b61fdc4df96 is-content-justification-right is-nowrap is-layout-flex wp-container-1 wp-block-group-is-layout-flex" style="padding-top:1%;padding-bottom:1%" data-webtasks-id="a9e7bbf1-e4a5-42b1">
<p style="font-size:12px" data-webtasks-id="23839ca1-5aaa-4efb">Jack’s Food Blog – 2023</p>
</div>
</div>
<div class="wp-block-columns alignfull are-vertically-aligned-center has-tertiary-color has-foreground-background-color has-text-color has-background has-link-color wp-elements-6e234fb46fec8e2c95e9cc867d2ed20b is-layout-flex wp-container-10 wp-block-columns-is-layout-flex" style="margin-bottom:0px" data-webtasks-id="15a21e63-ccef-4c02">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%" data-webtasks-id="60fda0c0-b084-417c">
<div class="wp-block-group is-nowrap is-layout-flex wp-container-3 wp-block-group-is-layout-flex" data-webtasks-id="0ab99dc5-69a7-4a7e">
<h1 style="padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px; text-transform:uppercase;" class="has-link-color has-text-color has-custom-color-1-color wp-block-site-title has-medium-font-size wp-elements-c3fcee080946d94ec567c05ca0abf29e" data-webtasks-id="526668d8-619e-4408"><a href="https://jacksfoodblog.com" target="_self" rel="home" data-webtasks-id="1449595f-f3e7-47e8">Jack's Food Blog</a></h1></div>
</div>
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%" data-webtasks-id="429838ca-2901-4279"><nav class="is-responsive items-justified-center wp-block-navigation is-horizontal is-content-justification-center is-layout-flex wp-container-6 wp-block-navigation-is-layout-flex" aria-label="top-navigation" data-wp-interactive="" data-wp-context="{ "core": { "navigation": { "isMenuOpen": { "click": false, "hover": false }, "overlay": true, "roleAttribute": "" } } }" data-webtasks-id="5ce9beee-ccb8-46f5"><button aria-haspopup="true" aria-label="Open menu" class="wp-block-navigation__responsive-container-open " data-wp-on--click="actions.core.navigation.openMenuOnClick" data-wp-on--keydown="actions.core.navigation.handleMenuKeydown" data-webtasks-id="c68b44a6-6e58-469f"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false" data-webtasks-id="0e3eb4e1-1cf6-4bbd"><rect x="4" y="7.5" width="16" height="1.5" data-webtasks-id="2f111ab4-af66-4d4c"></rect><rect x="4" y="15" width="16" height="1.5" data-webtasks-id="2a4bfd3d-73a7-4262"></rect></svg></button>
<div class="wp-block-navigation__responsive-container" style="" id="modal-5" data-wp-class--has-modal-open="selectors.core.navigation.isMenuOpen" data-wp-class--is-menu-open="selectors.core.navigation.isMenuOpen" data-wp-effect="effects.core.navigation.initMenu" data-wp-on--keydown="actions.core.navigation.handleMenuKeydown" data-wp-on--focusout="actions.core.navigation.handleMenuFocusout" tabindex="-1" data-webtasks-id="6cf32c4b-a5e7-4c80">
<div class="wp-block-navigation__responsive-close" tabindex="-1" data-webtasks-id="a3c166df-339e-4fa0">
<div class="wp-block-navigation__responsive-dialog" aria-label="Menu" data-wp-bind--aria-modal="selectors.core.navigation.isMenuOpen" data-wp-bind--role="selectors.core.navigation.roleAttribute" data-wp-effect="effects.core.navigation.focusFirstElement" aria-modal="false" role="" data-webtasks-id="f719e514-fd45-40e8">
<button aria-label="Close menu" class="wp-block-navigation__responsive-container-close" data-wp-on--click="actions.core.navigation.closeMenuOnClick" data-webtasks-id="319a7995-50c7-457f"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" aria-hidden="true" focusable="false" data-webtasks-id="78257d8a-083e-411a"><path d="M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z" data-webtasks-id="aaf45302-0aa3-4b86"></path></svg></button>
<div class="wp-block-navigation__responsive-container-content" id="modal-5-content" data-webtasks-id="55877747-b624-4645">
<ul class="wp-block-navigation__container is-responsive items-justified-center wp-block-navigation" data-webtasks-id="380f5d8b-2679-4d1a"><li class=" wp-block-navigation-item menu-item menu-item-type-post_type menu-item-object-post wp-block-navigation-link" data-webtasks-id="edeb3ade-9939-4e50"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/best-food-blogs/" title="" data-webtasks-id="2ff7fe9c-0515-4259"><span class="wp-block-navigation-item__label" data-webtasks-id="c802e4e1-cdcd-4e13">Best Food Blogs</span></a></li><li class=" wp-block-navigation-item menu-item menu-item-type-post_type menu-item-object-post wp-block-navigation-link" data-webtasks-id="6ae65044-a296-46d2"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/recipes/" title="" data-webtasks-id="839fefe7-5647-471b"><span class="wp-block-navigation-item__label" data-webtasks-id="bd553fe7-1204-47c2">Recipes</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link" data-webtasks-id="b1b327e6-556f-4fa7"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/diet-tips-advice/" data-webtasks-id="b3e54bb1-52c8-4667"><span class="wp-block-navigation-item__label" data-webtasks-id="7558898f-73b2-4387">Tips & Advice</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link" data-webtasks-id="7eef1f05-3ec7-43f1"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/2018/10/17/portuguese-sausage-linguica-pasta-sauce/" data-webtasks-id="eed77ef7-3bdd-4a05"><span class="wp-block-navigation-item__label" data-webtasks-id="eafc0db4-5c2e-467c">Featured: Linguiça Pasta Sauce</span></a></li></ul>
</div>
</div>
</div>
</div></nav></div>
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%" data-webtasks-id="cc2f8fdf-ae51-4b65">
<ul class="wp-block-social-links has-icon-color has-icon-background-color is-content-justification-right is-layout-flex wp-container-8 wp-block-social-links-is-layout-flex" data-webtasks-id="75882f34-e0c3-4faf"></ul>
</div>
</div>
</header>
<main class="wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow" style="margin-top:0px" id="wp--skip-link--target" data-webtasks-id="824661ae-0bef-4659">
<div class="wp-block-cover alignfull is-light" style="min-height:300px" data-webtasks-id="c7816a31-83a4-4ebe"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-70 has-background-dim" data-webtasks-id="9d7e24f3-6511-4e67"></span><img width="1024" height="682" src="https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=1024" class="wp-block-cover__image-background wp-post-image" alt="" decoding="async" loading="lazy" data-object-fit="cover" srcset="https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=1024 1024w, https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=150 150w, https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=300 300w, https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=768 768w, https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg 1880w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="2784" data-permalink="https://jacksfoodblog.com/recipes/pexels-photo-66639/" data-orig-file="https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg" data-orig-size="1880,1253" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="man wearing black apron near two silver metal cooking pot" data-image-description="" data-image-caption="<p>Photo by Timur Saglambilek on <a href="https://www.pexels.com/photo/man-wearing-black-apron-near-two-silver-metal-cooking-pot-66639/" rel="nofollow">Pexels.com</a></p>
" data-medium-file="https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2023/01/pexels-photo-66639.jpeg?w=1024" data-webtasks-id="1c40a735-5532-41dc"><div class="wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow" data-webtasks-id="fd2f825a-a287-4ecc"><h2 style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;" class="has-text-align-center has-link-color has-text-color has-white-color wp-block-post-title has-medium-font-size wp-elements-a98fa52be2f5ebc5affb0f2852228aa0" data-webtasks-id="8ae34c5b-05fa-44b8">Jack’s food blog Recipes</h2></div></div>
<div style="height:33px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="df7e3b1a-0751-495e"></div>
<div class="entry-content wp-block-post-content is-layout-constrained wp-block-post-content-is-layout-constrained" data-webtasks-id="224dd25a-ba70-47dd">
<p class="has-text-align-center has-normal-font-size" data-webtasks-id="b167b5e9-1186-40a9">Recipes were the starting point of Jack’s Food Blog, and they’re still the area where we see the most interest from our readers. Take a look through some of our favourite recipes here. We specialise in batch cooking recipes and one pot favourites.</p>
<div style="height:39px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="11ae3723-5e6a-474a"></div>
<h2 class="wp-block-heading has-text-align-center" data-webtasks-id="6718aa92-0246-48fb"><strong data-webtasks-id="3cf515de-888e-4473">The classics</strong></h2>
<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained" data-webtasks-id="6de5fd73-8010-4a50">
<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained" data-webtasks-id="dcc6acb9-1757-4968">
<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained" data-webtasks-id="0ebfc72a-c1e0-4738">
<div class="wp-block-columns is-layout-flex wp-container-15 wp-block-columns-is-layout-flex" data-webtasks-id="6b7e6ddd-bc2b-4f61">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="637384d7-2feb-4a75">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="5c52ccd2-7e81-43c2"><a href="https://jacksfoodblog.com/2018/10/17/portuguese-sausage-linguica-pasta-sauce/" data-webtasks-id="6686b367-de25-4290">Linguica Pasta Sauce</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="4129cd15-a0c4-4c78"><a href="https://jacksfoodblog.com/2018/10/17/portuguese-sausage-linguica-pasta-sauce/" data-webtasks-id="56d11e8c-5c7b-4fbf"><img decoding="async" width="327" height="327" data-attachment-id="2721" data-permalink="https://jacksfoodblog.com/linguica-sausage-2/" data-orig-file="https://jacksgrub.files.wordpress.com/2023/01/linguica-sausage.jpg" data-orig-size="327,327" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"1"}" data-image-title="linguica-sausage" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2023/01/linguica-sausage.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2023/01/linguica-sausage.jpg?w=327" src="https://jacksgrub.files.wordpress.com/2023/01/linguica-sausage.jpg?w=327" alt="" class="wp-image-2721" srcset="https://jacksgrub.files.wordpress.com/2023/01/linguica-sausage.jpg 327w, https://jacksgrub.files.wordpress.com/2023/01/linguica-sausage.jpg?w=150 150w, https://jacksgrub.files.wordpress.com/2023/01/linguica-sausage.jpg?w=300 300w" sizes="(max-width: 327px) 100vw, 327px" data-webtasks-id="af85ca55-0903-4840"></a></figure>
<p class="has-text-align-center" data-webtasks-id="260bbfce-7bce-43a1">View our Linguica pasta sauce recipe here</p>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="df8d2b31-c239-47e5">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="8147de0f-36cb-450f"><a href="https://jacksfoodblog.com/2016/03/29/chicken-and-chorizo-jambalaya-recipe/" data-webtasks-id="6c01dc4f-cf74-4cf9">Chicken Jambalaya</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="725d8387-5c46-4db8"><a href="https://jacksfoodblog.com/2016/03/29/chicken-and-chorizo-jambalaya-recipe/" data-webtasks-id="753df034-1f7e-49d1"><img decoding="async" width="327" height="327" data-attachment-id="2722" data-permalink="https://jacksfoodblog.com/jambalaya/" data-orig-file="https://jacksgrub.files.wordpress.com/2023/01/jambalaya.jpg" data-orig-size="327,327" data-comments-opened="1" data-image-meta="{"aperture":"2.2","credit":"","camera":"iPhone 6s","caption":"","created_timestamp":"1588970013","copyright":"","focal_length":"4.15","iso":"80","shutter_speed":"0.03030303030303","title":"","orientation":"1","latitude":"51.114569444444","longitude":"-0.97881111111111"}" data-image-title="jambalaya" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2023/01/jambalaya.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2023/01/jambalaya.jpg?w=327" src="https://jacksgrub.files.wordpress.com/2023/01/jambalaya.jpg?w=327" alt="" class="wp-image-2722" srcset="https://jacksgrub.files.wordpress.com/2023/01/jambalaya.jpg 327w, https://jacksgrub.files.wordpress.com/2023/01/jambalaya.jpg?w=150 150w, https://jacksgrub.files.wordpress.com/2023/01/jambalaya.jpg?w=300 300w" sizes="(max-width: 327px) 100vw, 327px" data-webtasks-id="7632c3e0-bbfc-434c"></a></figure>
<p class="has-text-align-center" data-webtasks-id="79d4dc65-1ca5-46fb">View our hearty chicken Jambalaya recipe here</p>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="14f6b55b-16f0-4b08">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="74560c5b-dcd8-4112"><a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/" data-webtasks-id="721a78ba-9f69-4849">Tomato & Chilli Batch Sauce</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="40662504-754c-4e55"><a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/" data-webtasks-id="90b4623f-baff-40b7"><img decoding="async" width="220" height="220" data-attachment-id="2646" data-permalink="https://jacksfoodblog.com/home/food-blogs-image/" data-orig-file="https://jacksgrub.files.wordpress.com/2023/01/food-blogs-image.jpg" data-orig-size="220,220" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"1"}" data-image-title="food-blogs-image" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2023/01/food-blogs-image.jpg?w=220" data-large-file="https://jacksgrub.files.wordpress.com/2023/01/food-blogs-image.jpg?w=220" src="https://jacksgrub.files.wordpress.com/2023/01/food-blogs-image.jpg?w=220" alt="" class="wp-image-2646" srcset="https://jacksgrub.files.wordpress.com/2023/01/food-blogs-image.jpg 220w, https://jacksgrub.files.wordpress.com/2023/01/food-blogs-image.jpg?w=150 150w" sizes="(max-width: 220px) 100vw, 220px" data-webtasks-id="f1a20282-aa66-4dbb"></a></figure>
<p class="has-text-align-center" data-webtasks-id="8a912775-db4e-488f">View our classic tomato and chilli pasta sauce recipe here</p>
</div>
</div>
</div>
</div>
</div>
<p class="has-text-align-center has-x-large-font-size" data-webtasks-id="40a6fb58-fa16-4e0c"><strong data-webtasks-id="7c02dc14-cf76-498b">Off the beaten track</strong></p>
<div style="height:20px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="cd8ed62d-530c-419d"></div>
<p class="has-text-align-center has-normal-font-size" data-webtasks-id="6e3fc318-9fc3-43fc">These recipes are great if you fancy something a bit different to your usual kitchen essentials. Expect big, impactful flavours.</p>
<div style="height:20px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="0131e6f4-c7f1-4a40"></div>
<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained" data-webtasks-id="9a56ea27-3ec6-45a8">
<div class="wp-block-columns is-layout-flex wp-container-22 wp-block-columns-is-layout-flex" data-webtasks-id="551b932e-fa43-4be4">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="fe239faa-77aa-4345">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="d3dd6d16-edc5-4994"><a href="https://jacksfoodblog.com/2015/06/07/moroccan-chicken-recipe/" data-webtasks-id="ce089e40-6403-4c30">Moroccan Chicken</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="9be814ae-0e25-4157"><a href="https://jacksfoodblog.com/2015/06/07/moroccan-chicken-recipe/" data-webtasks-id="e1fac8a2-df59-4fd6"><img decoding="async" width="327" height="327" data-attachment-id="2723" data-permalink="https://jacksfoodblog.com/moroccan-chicken-2/" data-orig-file="https://jacksgrub.files.wordpress.com/2023/01/moroccan-chicken.jpg" data-orig-size="327,327" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"1"}" data-image-title="moroccan-chicken" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2023/01/moroccan-chicken.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2023/01/moroccan-chicken.jpg?w=327" src="https://jacksgrub.files.wordpress.com/2023/01/moroccan-chicken.jpg?w=327" alt="" class="wp-image-2723" srcset="https://jacksgrub.files.wordpress.com/2023/01/moroccan-chicken.jpg 327w, https://jacksgrub.files.wordpress.com/2023/01/moroccan-chicken.jpg?w=150 150w, https://jacksgrub.files.wordpress.com/2023/01/moroccan-chicken.jpg?w=300 300w" sizes="(max-width: 327px) 100vw, 327px" data-webtasks-id="796ab64b-7159-40dd"></a></figure>
<p class="has-text-align-center" data-webtasks-id="a8317ca6-384e-4e0b">Discover this fragrant, tangy and distinctive Moroccan Chicken Recipe</p>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="70c9d4b0-3cd6-40f4">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="4deec162-ce0e-49d7"><a href="https://jacksfoodblog.com/2015/06/07/jalapeno-falafels-recipe/" data-webtasks-id="c9e762ae-8584-4bfe">Jalapeno Falafels Recipe</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="6b4c9303-72b5-4beb"><a href="https://jacksfoodblog.com/2015/06/07/jalapeno-falafels-recipe/" data-webtasks-id="467a827b-9ef9-4b65"><img decoding="async" width="1497" height="1497" data-attachment-id="970" data-permalink="https://jacksfoodblog.com/2015/06/06/jacks-grub-my-food-blog/jalapeno-falafels/" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg" data-orig-size="1497,1497" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="jalapeno-falafels" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg?w=1024" src="https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg?w=1024" alt="" class="wp-image-970" srcset="https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg?w=1024 1024w, https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg?w=150 150w, https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg?w=300 300w, https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg?w=768 768w, https://jacksgrub.files.wordpress.com/2015/06/jalapeno-falafels-e1586596418944.jpg 1497w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="c05fc63c-fcee-4701"></a></figure>
<p class="has-text-align-center" data-webtasks-id="0bc7a00b-a762-4062">Indulgent and delicious Jalapenos are a reliable crowd-pleaser</p>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="35a3cbbd-70aa-4029">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="c491e50a-81ae-4c55"><a href="https://jacksfoodblog.com/2020/05/01/bake-sourdough-beginners-guide/" data-webtasks-id="5cd9c0a0-814e-4e43">How to Make Sourdough</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="e00c0fce-800a-4b5e"><a href="https://jacksfoodblog.com/2020/05/01/bake-sourdough-beginners-guide/" data-webtasks-id="fe915ff5-1f29-40d6"><img decoding="async" width="327" height="327" data-attachment-id="2657" data-permalink="https://jacksfoodblog.com/home/bread-jack/" data-orig-file="https://jacksgrub.files.wordpress.com/2023/01/bread-jack.jpg" data-orig-size="327,327" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"1"}" data-image-title="bread-jack" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2023/01/bread-jack.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2023/01/bread-jack.jpg?w=327" src="https://jacksgrub.files.wordpress.com/2023/01/bread-jack.jpg?w=327" alt="" class="wp-image-2657" srcset="https://jacksgrub.files.wordpress.com/2023/01/bread-jack.jpg 327w, https://jacksgrub.files.wordpress.com/2023/01/bread-jack.jpg?w=150 150w, https://jacksgrub.files.wordpress.com/2023/01/bread-jack.jpg?w=300 300w" sizes="(max-width: 327px) 100vw, 327px" data-webtasks-id="c5b8beed-1eb3-43b8"></a></figure>
<p class="has-text-align-center" data-webtasks-id="634c401d-f65d-4c1c">It’s not easy, but it’s always worth making fresh sourdough</p>
</div>
</div>
</div>
<p class="has-text-align-center has-large-font-size" data-webtasks-id="d190cdb6-5e84-4617"><strong data-webtasks-id="de1b8774-a058-4301">My Favourite Pasta recipes</strong></p>
<div style="height:20px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="432072b9-ca26-4a1d"></div>
<p class="has-text-align-center has-normal-font-size" data-webtasks-id="68fd3138-022f-4ca0">If there’s one thing we do more than anything else at Jack’s Food Blog, it’s create pasta sauce recipes. Discover the best of the collection here.</p>
<div style="height:29px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="f7c8b1b5-3c70-4176"></div>
<div class="wp-block-columns is-layout-flex wp-container-27 wp-block-columns-is-layout-flex" data-webtasks-id="75923e48-83d3-4cae">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="09da9956-6b51-41b3">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="dd30d218-fad6-4d29"><a href="https://jacksfoodblog.com/2018/12/23/chestnut-fennel-and-sausage-pasta-sauce-recipe-with-conchiglioni/" data-webtasks-id="6feff36d-8324-4c32">Chestnut, Fennel and Sausage Pasta</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="68d29617-455e-4f77"><a href="https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg" data-webtasks-id="d803356a-5173-4b5f"><img decoding="async" width="2448" height="2323" data-attachment-id="1434" data-permalink="https://jacksfoodblog.com/2018/12/23/chestnut-fennel-and-sausage-pasta-sauce-recipe-with-conchiglioni/sausage-chestnut-conchiglioni-cooked/" data-orig-file="https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg" data-orig-size="2448,2323" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="sausage-chestnut-conchiglioni-cooked" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg?w=1024" src="https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg?w=1024" alt="sausage-chestnut-conchiglioni-cooked" class="wp-image-1434" srcset="https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg?w=1024 1024w, https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg?w=2048 2048w, https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg?w=150 150w, https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg?w=300 300w, https://jacksgrub.files.wordpress.com/2018/12/sausage-chestnut-conchiglioni-cooked-e1545601455508.jpg?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="296a3100-615b-4e7e"></a></figure>
<p class="has-text-align-center" data-webtasks-id="76cf5000-883a-4a10">If you’re looking for a warming winter one pot dish this is a good choice</p>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="a09320ff-b4a5-4e38">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="301cb256-40b6-4918"><a href="https://jacksfoodblog.com/2019/09/15/creamy-cheesy-easy-pappardelle-sauce-recipe/" data-webtasks-id="7ad21004-2999-4ac9">Creamy Pappardelle Recipe</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="1d233f17-8cf0-446e"><a href="https://jacksgrub.files.wordpress.com/2019/09/whatsapp-image-2019-09-15-at-20.40.56.jpeg" data-webtasks-id="9e7a17a1-5697-4434"><img decoding="async" width="1200" height="1200" data-attachment-id="2777" data-permalink="https://jacksfoodblog.com/whatsapp-image-2019-09-15-at-20-40-56-2/" data-orig-file="https://jacksgrub.files.wordpress.com/2023/01/whatsapp-image-2019-09-15-at-20.40.56-edited.jpeg" data-orig-size="1200,1200" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="WhatsApp Image 2019-09-15 at 20.40.56" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2023/01/whatsapp-image-2019-09-15-at-20.40.56-edited.jpeg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2023/01/whatsapp-image-2019-09-15-at-20.40.56-edited.jpeg?w=1024" src="https://jacksgrub.files.wordpress.com/2023/01/whatsapp-image-2019-09-15-at-20.40.56-edited.jpeg" alt="" class="wp-image-2777" data-webtasks-id="11e075a2-6e25-42b8" scale="0"></a></figure>
<p class="has-text-align-center" data-webtasks-id="41ec0e5d-53d8-4562">Hard to beat a creamy, cheesy pasta sauce – try this one our</p>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" data-webtasks-id="aed9208b-6bac-436b">
<h2 class="wp-block-heading has-text-align-center has-medium-font-size" data-webtasks-id="fdbe1721-475a-4271"><a href="https://jacksfoodblog.com/2019/03/17/braised-pork-shortloin-pasta-sauce-recipe/" data-webtasks-id="00aab5e6-63ef-4632">Braised Pork Batch Pasta Recipe</a></h2>
<figure class="wp-block-image size-large" data-webtasks-id="1404e4c3-cdec-4f46"><a href="https://jacksgrub.files.wordpress.com/2019/03/pulled-pork-pasta.jpg" data-webtasks-id="53427165-b5ec-4916"><img decoding="async" width="1069" height="1070" data-attachment-id="2778" data-permalink="https://jacksfoodblog.com/pulled-pork-pasta-2/" data-orig-file="https://jacksgrub.files.wordpress.com/2023/01/pulled-pork-pasta-edited.jpg" data-orig-size="1069,1070" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="pulled-pork-pasta" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2023/01/pulled-pork-pasta-edited.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2023/01/pulled-pork-pasta-edited.jpg?w=1024" src="https://jacksgrub.files.wordpress.com/2023/01/pulled-pork-pasta-edited.jpg" alt="" class="wp-image-2778" data-webtasks-id="9022826f-6738-4d7e" scale="0"></a></figure>
<p class="has-text-align-center" data-webtasks-id="53452384-55b5-4f79">Slow cooking pork always brings out a whole load of flavour – enjoy</p>
</div>
</div>
<p class="has-text-align-center" data-webtasks-id="4899bfb8-5b88-416e">I hope you’ve enjoyed this curated list of our top recipes. Hopefully there’s been something here which suits your needs. If not, you can view all of our latest posts at the bottom of this page.</p>
<div id="atatags-931956131-64a3e7c1ef57a" data-webtasks-id="99ecba8b-5740-4143" data-adtags-width="650"></div>
<script data-webtasks-id="eedd86db-3125-4c6d">
__ATA.cmd.push(function() {
__ATA.initDynamicSlot({
id: 'atatags-931956131-64a3e7c1ef57a',
location: 120,
formFactor: '001',
label: {
text: 'Advertisements',
},
creative: {
reportAd: {
text: 'Report this ad',
},
privacySettings: {
text: 'Privacy',
}
}
});
});
</script><div id="jp-post-flair" class="sharedaddy sd-like-enabled" data-webtasks-id="958de66d-9264-46b4"><div class="sharedaddy sd-sharing-enabled" data-webtasks-id="997a4d1b-f85a-40d6"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing" data-webtasks-id="9567d959-ae99-49c0"><h3 class="sd-title" data-webtasks-id="79958cff-ff30-4ca6">Share this:</h3><div class="sd-content" data-webtasks-id="35b80a49-71a3-4270"><ul data-sharing-events-added="true" data-webtasks-id="fdaed343-bd70-4a27"><li class="share-twitter" data-webtasks-id="faf7328d-7367-41a1"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-2695" class="share-twitter sd-button share-icon" href="https://jacksfoodblog.com/recipes/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter" data-webtasks-id="92658cbe-782f-42aa"><span data-webtasks-id="7a227956-9ec7-42f5">Twitter</span></a></li><li class="share-facebook" data-webtasks-id="2127d4d4-4f08-4c85"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-2695" class="share-facebook sd-button share-icon" href="https://jacksfoodblog.com/recipes/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook" data-webtasks-id="a159d66f-fb16-4349"><span data-webtasks-id="34e74762-ac8e-4c03">Facebook</span></a></li><li class="share-end" data-webtasks-id="fb1249b2-1bf1-4829"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-93195613-2695-64a3e7c1f0d6f" data-src="//widgets.wp.com/likes/index.html?ver=20230309#blog_id=93195613&post_id=2695&origin=jacksgrub.wordpress.com&obj_id=93195613-2695-64a3e7c1f0d6f&domain=jacksfoodblog.com" data-name="like-post-frame-93195613-2695-64a3e7c1f0d6f" data-title="Like or Reblog" data-webtasks-id="e8bb7a25-0855-460d"><h3 class="sd-title" data-webtasks-id="e38cc402-ebd8-4b53">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;" data-webtasks-id="4bf65604-5e5c-4345"><span class="button" data-webtasks-id="25224679-8b20-4c7a"><span data-webtasks-id="d9e89d92-f6f1-4dc3">Like</span></span> <span class="loading" data-webtasks-id="0d199f36-1457-4f82">Loading…</span></div><iframe class="post-likes-widget jetpack-likes-widget" name="like-post-frame-93195613-2695-64a3e7c1f0d6f" src="//widgets.wp.com/likes/index.html?ver=20230309#blog_id=93195613&post_id=2695&origin=jacksgrub.wordpress.com&obj_id=93195613-2695-64a3e7c1f0d6f&domain=jacksfoodblog.com" height="55px" width="100%" frameborder="0" scrolling="no" title="Like or Reblog" data-webtasks-id="182d63d5-ab6e-4dbf"></iframe><span class="sd-text-color" data-webtasks-id="ab2ae912-d83c-4f2a"></span><a class="sd-link-color" data-webtasks-id="a8af6a02-dcef-425c"></a></div></div></div></main>
<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained" data-webtasks-id="32a96ea0-a860-4574">
<div style="height:60px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="eb0c4f09-34ff-4c2a"></div>
</div>
<footer class="wp-block-template-part" data-webtasks-id="1d432b9c-46b7-4a7a">
<div class="wp-block-group alignfull has-tertiary-color has-foreground-background-color has-text-color has-background is-layout-flow wp-block-group-is-layout-flow" style="padding-bottom:30px" data-webtasks-id="aa4dce0a-c09b-423b">
<div class="wp-block-group alignfull site-header is-content-justification-space-between is-layout-flex wp-container-37 wp-block-group-is-layout-flex" style="padding-top:var(--wp--custom--gap--vertical);padding-bottom:var(--wp--custom--gap--vertical)" data-webtasks-id="4e843f82-831b-4703">
<div class="wp-block-group has-tertiary-color has-text-color is-nowrap is-layout-flex wp-container-34 wp-block-group-is-layout-flex" data-webtasks-id="74162f50-d559-48c0">
<ul class="wp-block-social-links has-icon-color has-icon-background-color is-layout-flex wp-block-social-links-is-layout-flex" data-webtasks-id="549472bb-3792-4533"></ul>
<nav class="wp-block-navigation is-horizontal is-layout-flex wp-block-navigation-is-layout-flex" aria-label="top-navigation 2" data-webtasks-id="7e348e81-3580-48d7"><ul class="wp-block-navigation__container wp-block-navigation" data-webtasks-id="40f760d9-0a6a-4ce3"><li class=" wp-block-navigation-item menu-item menu-item-type-post_type menu-item-object-post wp-block-navigation-link" data-webtasks-id="b261b1fb-57e9-49bb"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/best-food-blogs/" title="" data-webtasks-id="3570c354-4614-4296"><span class="wp-block-navigation-item__label" data-webtasks-id="9c6ee770-f9d7-485b">Best Food Blogs</span></a></li><li class=" wp-block-navigation-item menu-item menu-item-type-post_type menu-item-object-post wp-block-navigation-link" data-webtasks-id="56dd5177-0b18-4d52"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/recipes/" title="" data-webtasks-id="f4fecbc3-4078-4842"><span class="wp-block-navigation-item__label" data-webtasks-id="5e87647d-bf82-46b7">Recipes</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link" data-webtasks-id="4a7a076a-f5fb-44e9"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/diet-tips-advice/" data-webtasks-id="12d64bbf-60da-4d89"><span class="wp-block-navigation-item__label" data-webtasks-id="97c26529-29ce-4ab7">Tips & Advice</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link" data-webtasks-id="939a4e8f-03bf-4937"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/2018/10/17/portuguese-sausage-linguica-pasta-sauce/" data-webtasks-id="7c5fff92-424c-4cff"><span class="wp-block-navigation-item__label" data-webtasks-id="d3b9d019-262b-405f">Featured: Linguiça Pasta Sauce</span></a></li></ul></nav></div>
<div class="wp-block-group site-brand is-layout-flex wp-container-36 wp-block-group-is-layout-flex" data-webtasks-id="7a3d653a-a195-482e">
<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" data-webtasks-id="14b1382d-f282-4a3e"><h1 style="text-transform:uppercase;" class="has-link-color has-text-color has-primary-color wp-block-site-title has-medium-font-size wp-elements-e2c4f0d1fc3ea9487825492a112981e4" data-webtasks-id="d6b551c1-e9bb-48b8"><a href="https://jacksfoodblog.com" target="_self" rel="home" data-webtasks-id="1e80b8f9-eae5-4c7d">Jack's Food Blog</a></h1></div>
</div>
</div>
<p class="has-text-align-center has-small-font-size" data-webtasks-id="0687b669-566e-478e"><a href="https://wordpress.com/?ref=footer_blog" rel="nofollow" data-webtasks-id="99220241-f00c-40ad">Blog at WordPress.com.</a></p>
</div>
</footer>
<h2 class="wp-block-heading has-medium-font-size" data-webtasks-id="fa792592-9c34-4046"><strong data-webtasks-id="4977f14a-9394-487b">Latest Posts</strong></h2>
<ul class="wp-block-latest-posts__list is-grid columns-3 wp-block-latest-posts" data-webtasks-id="9a949fb9-d4ec-4cf7"><li data-webtasks-id="79b40c16-6953-4007"><a class="wp-block-latest-posts__post-title" href="https://jacksfoodblog.com/2023/01/04/30-indian-food-blogs-to-follow-in-2023-with-pictures/" data-webtasks-id="6c6ff2fe-ab3b-4e9b">30 Indian Food Blogs to Follow in 2023 – With Pictures</a></li>
<li data-webtasks-id="d8eef035-91ce-49eb"><a class="wp-block-latest-posts__post-title" href="https://jacksfoodblog.com/2023/01/02/the-best-italian-food-blogs-to-follow-in-2023/" data-webtasks-id="771c44ca-a1d5-4873">The Best Italian Food Blogs to Follow in 2023</a></li>
<li data-webtasks-id="9a5adb88-9211-45ff"><a class="wp-block-latest-posts__post-title" href="https://jacksfoodblog.com/2022/12/31/the-best-keto-diet-food-blogs-and-resources/" data-webtasks-id="a61c0a0d-2fcf-4e60">The Best Keto Diet Food Blogs and Resources</a></li>
<li data-webtasks-id="b6aee912-699d-4d76"><a class="wp-block-latest-posts__post-title" href="https://jacksfoodblog.com/2022/12/23/the-brain-gut-connection-eating-well-for-happiness/" data-webtasks-id="5e6ab551-5226-4c22">The Brain Gut Connection – Eating Well for Happiness</a></li>
<li data-webtasks-id="2f7809e4-8d56-46f0"><a class="wp-block-latest-posts__post-title" href="https://jacksfoodblog.com/2022/12/23/the-best-low-fodmap-food-blogs-for-2023-with-pictures/" data-webtasks-id="427c68aa-1700-4c14">The Best Low FODMAP Food Blogs for 2023 – With Pictures</a></li>
</ul></div>
<!-- wpcom_wp_footer -->
<style id="skip-link-styles" data-webtasks-id="869c4dfb-451c-4333">
.skip-link.screen-reader-text {
border: 0;
clip: rect(1px,1px,1px,1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
.skip-link.screen-reader-text:focus {
background-color: #eee;
clip: auto !important;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}
</style>
<script data-webtasks-id="eb10dcdb-fe70-42b5">
( function() {
var skipLinkTarget = document.querySelector( 'main' ),
sibling,
skipLinkTargetID,
skipLink;
// Early exit if a skip-link target can't be located.
if ( ! skipLinkTarget ) {
return;
}
// Get the site wrapper.
// The skip-link will be injected in the beginning of it.
sibling = document.querySelector( '.wp-site-blocks' );
// Early exit if the root element was not found.
if ( ! sibling ) {
return;
}
// Get the skip-link target's ID, and generate one if it doesn't exist.
skipLinkTargetID = skipLinkTarget.id;
if ( ! skipLinkTargetID ) {
skipLinkTargetID = 'wp--skip-link--target';
skipLinkTarget.id = skipLinkTargetID;
}
// Create the skip link.
skipLink = document.createElement( 'a' );
skipLink.classList.add( 'skip-link', 'screen-reader-text' );
skipLink.href = '#' + skipLinkTargetID;
skipLink.innerHTML = 'Skip to content';
// Inject the skip link.
sibling.parentElement.insertBefore( skipLink, sibling );
}() );
</script>
<script src="//0.gravatar.com/js/gprofiles.js?ver=202327a38e82b72ca7b7f7489a6e0d2e13bda8e1ecaa4ef340fc6b01754378626ee67e" id="grofiles-cards-js" data-webtasks-id="eb8cfa9a-1aa6-4c33"></script>
<script id="wpgroho-js-extra" data-webtasks-id="acf5a08e-b206-439d">
var WPGroHo = {"my_hash":""};
</script>
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i" data-webtasks-id="e8281408-135a-4aba"></script>
<script data-webtasks-id="c38293f2-baa0-4efb">
// Initialize and attach hovercards to all gravatars
( function() {
function init() {
if ( typeof Gravatar === 'undefined' ) {
return;
}
if ( typeof Gravatar.init !== 'function' ) {
return;
}
Gravatar.profile_cb = function ( hash, id ) {
WPGroHo.syncProfileData( hash, id );
};
Gravatar.my_hash = WPGroHo.my_hash;
Gravatar.init( 'body', '#wp-admin-bar-my-account' );
}
if ( document.readyState !== 'loading' ) {
init();
} else {
document.addEventListener( 'DOMContentLoaded', init );
}
} )();
</script>
<div style="display:none" data-webtasks-id="2565d43a-3253-41c6">
</div>
<div id="jp-carousel-loading-overlay" data-webtasks-id="621e4ec2-84f2-49ea">
<div id="jp-carousel-loading-wrapper" data-webtasks-id="f186eba1-56db-44dc">
<span id="jp-carousel-library-loading" data-webtasks-id="a17e164b-88d9-41ed"> </span>
</div>
</div>
<div class="jp-carousel-overlay" style="display: none;" data-webtasks-id="2b804e29-56d5-43eb">
<div class="jp-carousel-container" data-webtasks-id="7cfc9f35-94a6-45c9">
<!-- The Carousel Swiper -->
<div class="jp-carousel-wrap swiper-container jp-carousel-swiper-container jp-carousel-transitions" itemscope="" itemtype="https://schema.org/ImageGallery" data-webtasks-id="15527c57-d53c-4b32">
<div class="jp-carousel swiper-wrapper" data-webtasks-id="cabcc008-9a26-4a2b"></div>
<div class="jp-swiper-button-prev swiper-button-prev" data-webtasks-id="287fe1b8-827b-4c4b">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="9729bd51-dd8c-4cfa">
<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12" data-webtasks-id="46f153f3-18ce-455e">
<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white" data-webtasks-id="fb269289-99dd-4674"></path>
</mask>
<g mask="url(#maskPrev)" data-webtasks-id="6fe477b2-e0d8-4adb">
<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="a044a026-7f03-4913"></rect>
</g>
</svg>
</div>
<div class="jp-swiper-button-next swiper-button-next" data-webtasks-id="85964f0a-3662-4055">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="a0911b39-4b37-4453">
<mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12" data-webtasks-id="829991d6-2469-4774">
<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white" data-webtasks-id="ee003ba1-95d8-4082"></path>
</mask>
<g mask="url(#maskNext)" data-webtasks-id="a0e3aa38-e259-4e2f">
<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF" data-webtasks-id="270b082a-bded-40f7"></rect>
</g>
</svg>
</div>
</div>
<!-- The main close buton -->
<div class="jp-carousel-close-hint" data-webtasks-id="7a9f67ca-336c-4347">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="811974f9-43f7-45e3">
<mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14" data-webtasks-id="747e6797-7fc0-415f">
<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white" data-webtasks-id="24ced50f-ad0b-48a3"></path>
</mask>
<g mask="url(#maskClose)" data-webtasks-id="4e9dcef1-b3b4-43c3">
<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="e6c6c820-8eac-4cea"></rect>
</g>
</svg>
</div>
<!-- Image info, comments and meta -->
<div class="jp-carousel-info" data-webtasks-id="5623c2bc-8076-4a38">
<div class="jp-carousel-info-footer" data-webtasks-id="ef78a230-4bdc-425b">
<div class="jp-carousel-pagination-container" data-webtasks-id="d795ee7f-e1cb-4b94">
<div class="jp-swiper-pagination swiper-pagination" data-webtasks-id="1f614b96-8669-4296"></div>
<div class="jp-carousel-pagination" data-webtasks-id="b4de6921-c883-4c45"></div>
</div>
<div class="jp-carousel-photo-title-container" data-webtasks-id="997d9eb1-9e0c-44cf">
<h2 class="jp-carousel-photo-caption" data-webtasks-id="df5775f8-a7b4-4795"></h2>
</div>
<div class="jp-carousel-photo-icons-container" data-webtasks-id="9a8bdbf3-aaa6-4f36">
<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility" data-webtasks-id="63bfde69-dda8-4340">
<span class="jp-carousel-icon" data-webtasks-id="74848651-3984-4c40">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="9194d312-19fa-4467">
<mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20" data-webtasks-id="04c3f50f-8489-4fff">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white" data-webtasks-id="ad49d199-f73a-4085"></path>
</mask>
<g mask="url(#maskInfo)" data-webtasks-id="0318f662-9f34-4c57">
<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="d5abf98c-9f24-4cb9"></rect>
</g>
</svg>
</span>
</a>
<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility" data-webtasks-id="731262e2-5c0e-4a60">
<span class="jp-carousel-icon" data-webtasks-id="d2d5ac05-41ef-4764">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="010146ea-22b7-44d3">
<mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20" data-webtasks-id="5b255db2-e5fb-43cb">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white" data-webtasks-id="c0de7573-4a0a-4d3a"></path>
</mask>
<g mask="url(#maskComments)" data-webtasks-id="c07a393b-1dc2-4ccc">
<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="9f4c121f-31e3-4b6d"></rect>
</g>
</svg>
<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments." data-webtasks-id="80ca74b9-4d73-49ac"></span>
</span>
</a>
</div>
</div>
<div class="jp-carousel-info-extra" data-webtasks-id="6deeceb9-d3bb-45d9">
<div class="jp-carousel-info-content-wrapper" data-webtasks-id="a46e399f-9b48-41a7">
<div class="jp-carousel-photo-title-container" data-webtasks-id="1e3a2966-4911-450d">
<h2 class="jp-carousel-photo-title" data-webtasks-id="13e734ab-5002-472c"></h2>
</div>
<div class="jp-carousel-comments-wrapper" data-webtasks-id="629223a2-6fbe-4ac8">
<div id="jp-carousel-comments-loading" data-webtasks-id="1745a3e6-f111-4590">
<span data-webtasks-id="90a6c4ba-c2cc-4024">Loading Comments...</span>
</div>
<div class="jp-carousel-comments" data-webtasks-id="6afb49b4-0c8e-4d86"></div>
<div id="jp-carousel-comment-form-container" data-webtasks-id="77cf9888-8c60-45d4">
<span id="jp-carousel-comment-form-spinner" data-webtasks-id="8793dbf4-5cd3-435d"> </span>
<div id="jp-carousel-comment-post-results" data-webtasks-id="04281fea-8911-4908"></div>
<form id="jp-carousel-comment-form" data-webtasks-id="64a2cd03-75aa-4dff">
<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text" data-webtasks-id="5089b166-7de3-4a5f">Write a Comment...</label>
<textarea name="comment" class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea" id="jp-carousel-comment-form-comment-field" placeholder="Write a Comment..." data-webtasks-id="6f0bb28d-d884-45a9"></textarea>
<div id="jp-carousel-comment-form-submit-and-info-wrapper" data-webtasks-id="df8e18da-6d55-4ae9">
<div id="jp-carousel-comment-form-commenting-as" data-webtasks-id="59c5f98c-b40a-471c">
<fieldset data-webtasks-id="7be0c3eb-79a9-42c2">
<label for="jp-carousel-comment-form-email-field" data-webtasks-id="9c1ead73-c52d-4d8a">Email (Required)</label>
<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" data-webtasks-id="1f42492f-9df5-44ff">
</fieldset>
<fieldset data-webtasks-id="595f8425-4fbe-429e">
<label for="jp-carousel-comment-form-author-field" data-webtasks-id="611330f1-f8e2-42c4">Name (Required)</label>
<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" data-webtasks-id="e7f29ef4-6866-4e03">
</fieldset>
<fieldset data-webtasks-id="10f633ce-4946-405e">
<label for="jp-carousel-comment-form-url-field" data-webtasks-id="99659523-a0e6-41b5">Website</label>
<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" data-webtasks-id="f0754c2b-b545-4a9b">
</fieldset>
</div>
<input type="submit" name="submit" class="jp-carousel-comment-form-button" id="jp-carousel-comment-form-button-submit" value="Post Comment" data-webtasks-id="a7161903-3721-477a">
</div>
</form>
</div>
</div>
<div class="jp-carousel-image-meta" data-webtasks-id="5852c5a0-1521-4023">
<div class="jp-carousel-title-and-caption" data-webtasks-id="390eb563-5e3a-4eec">
<div class="jp-carousel-photo-info" data-webtasks-id="cfc328a4-3c74-4846">
<h3 class="jp-carousel-caption" itemprop="caption description" data-webtasks-id="d01428f5-fe3c-456f"></h3>
</div>
<div class="jp-carousel-photo-description" data-webtasks-id="51413298-4beb-44e6"></div>
</div>
<ul class="jp-carousel-image-exif" style="display: none;" data-webtasks-id="62efccba-4077-451a"></ul>
<a class="jp-carousel-image-download" target="_blank" style="display: none;" data-webtasks-id="2a479bd7-ddcd-4654">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="d1e3e5b2-9241-43ed">
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18" data-webtasks-id="43a6aeea-b20c-44b8">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white" data-webtasks-id="4a01f593-c8c9-416d"></path>
</mask>
<g mask="url(#mask0)" data-webtasks-id="5e4e918f-d92c-427d">
<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="6d7825d0-e755-46f8"></rect>
</g>
</svg>
<span class="jp-carousel-download-text" data-webtasks-id="00f458c9-b5d2-4223"></span>
</a>
<div class="jp-carousel-image-map" style="display: none;" data-webtasks-id="ec30011b-9aa3-4db1"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" data-webtasks-id="e3d98759-a295-4c50">
window.WPCOM_sharing_counts = {"https:\/\/jacksfoodblog.com\/recipes\/":2695};
</script>
<div id="actionbar" class="actnbr-premium-munchies actnbr-has-follow actnbr-hidden" data-webtasks-id="9a14e412-970e-4b87">
<ul data-webtasks-id="38f38858-3f5e-4cdd">
<li class="actnbr-btn actnbr-hidden" data-webtasks-id="caa748e7-cab1-436e">
<a class="actnbr-action actnbr-actn-follow " href="" data-webtasks-id="2e42dd23-bc76-4775">
<svg class="gridicon gridicons-reader-follow" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-webtasks-id="2c38d006-c605-4305"><g data-webtasks-id="a03b9bda-e0b8-42f6"><path d="M23 16v2h-3v3h-2v-3h-3v-2h3v-3h2v3h3zM20 2v9h-4v3h-3v4H4c-1.1 0-2-.9-2-2V2h18zM8 13v-1H4v1h4zm3-3H4v1h7v-1zm0-2H4v1h7V8zm7-4H4v2h14V4z" data-webtasks-id="be044ef9-a901-45e9"></path></g></svg><span data-webtasks-id="7fda5cff-1ba6-45a3">Follow</span>
</a>
<a class="actnbr-action actnbr-actn-following no-display" href="" data-webtasks-id="dfc1a27c-025d-4944">
<svg class="gridicon gridicons-reader-following" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-webtasks-id="de5f4c42-07da-4c54"><g data-webtasks-id="f4820759-90da-43d4"><path d="M23 13.482L15.508 21 12 17.4l1.412-1.388 2.106 2.188 6.094-6.094L23 13.482zm-7.455 1.862L20 10.89V2H2v14c0 1.1.9 2 2 2h4.538l4.913-4.832 2.095 2.176zM8 13H4v-1h4v1zm3-2H4v-1h7v1zm0-2H4V8h7v1zm7-3H4V4h14v2z" data-webtasks-id="15f23a39-59ac-47d9"></path></g></svg><span data-webtasks-id="5f4f5c92-89a9-4e92">Following</span>
</a>
<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble" data-webtasks-id="2de55cae-0e16-4ae0">
<div class="tip-arrow" data-webtasks-id="5888a7ef-f879-4949"></div>
<div class="tip-inner actnbr-follow-bubble" data-webtasks-id="b0ed2238-ea26-479e">
<ul data-webtasks-id="204a2b5e-0ff3-48c2">
<li class="actnbr-sitename actnbr-hidden" data-webtasks-id="d2a4754e-c049-4ce1">
<a href="https://jacksfoodblog.com" data-webtasks-id="dc6ad6f0-84ea-4198">
<img alt="" src="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=50" class="avatar avatar-50" height="50" width="50" data-webtasks-id="99ef8b09-fecd-43fa" srcset="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=50&zoom=2 1.5x" scale="1.5"> Jack's Food Blog </a>
</li>
<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;" data-webtasks-id="d8583b44-f6a2-4801">
<div class="actnbr-follow-count" data-webtasks-id="d1038241-1632-4e77">Join 60 other followers</div>
<div data-webtasks-id="abb42615-5917-44cd">
<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" data-webtasks-id="c9cccec1-fe3e-4c12">
</div>
<input type="hidden" name="action" value="subscribe" data-webtasks-id="693c044c-2ae9-43e4">
<input type="hidden" name="blog_id" value="93195613" data-webtasks-id="657f1b1e-5bb0-4a55">
<input type="hidden" name="source" value="https://jacksfoodblog.com/recipes/" data-webtasks-id="0cc867ab-b50f-4fa2">
<input type="hidden" name="sub-type" value="actionbar-follow" data-webtasks-id="43ec71ee-bdc6-4914">
<input type="hidden" id="_wpnonce" name="_wpnonce" value="b89728ecd1" data-webtasks-id="d981866b-0bfd-48db"> <div class="actnbr-button-wrap" data-webtasks-id="0958fc63-d8da-4aff">
<button type="submit" value="Sign me up" data-webtasks-id="d5bac28b-95d5-42f0">
Sign me up </button>
</div>
</form>
<li class="actnbr-login-nudge actnbr-hidden" data-webtasks-id="95858af5-a9de-45a9">
<div data-webtasks-id="f75b1fef-d464-430b">
Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fjacksfoodblog.com%252Frecipes%252F" data-webtasks-id="47323f96-3069-4187">Log in now.</a> </div>
</li>
</ul>
</div>
</div>
</li>
<li class="actnbr-ellipsis actnbr-hidden" data-webtasks-id="bb072c58-b2d1-4666">
<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-webtasks-id="5605706b-4ced-416a"><g data-webtasks-id="77b861f4-c0d6-416b"><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z" data-webtasks-id="7c82a579-35ce-4750"></path></g></svg> <div class="actnbr-popover tip tip-top-left actnbr-more" data-webtasks-id="fced174c-7605-416b">
<div class="tip-arrow" data-webtasks-id="a4d118a5-e07a-49d7"></div>
<div class="tip-inner" data-webtasks-id="f3451ae3-6894-4f7a">
<ul data-webtasks-id="7f859730-d0fa-44f6">
<li class="actnbr-sitename actnbr-hidden" data-webtasks-id="c6b3ba18-1b16-47eb">
<a href="https://jacksfoodblog.com" data-webtasks-id="24291542-4bf4-4ec5">
<img alt="" src="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=50" class="avatar avatar-50" height="50" width="50" data-webtasks-id="1b77d1d9-de89-4c7d" srcset="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=50&zoom=2 1.5x" scale="1.5"> Jack's Food Blog </a>
</li>
<li class="actnbr-folded-customize actnbr-hidden" data-webtasks-id="beceeb74-1cbd-4c21">
<a href="https://wordpress.com/site-editor/jacksfoodblog.com" data-webtasks-id="50635c3c-32ea-4c8b">
<svg class="gridicon gridicons-customize" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-webtasks-id="e6522a8b-eab0-4aa2"><g data-webtasks-id="4220927a-d1d0-4fb0"><path d="M2 6c0-1.505.78-3.08 2-4 0 .845.69 2 2 2 1.657 0 3 1.343 3 3 0 .386-.08.752-.212 1.09.74.594 1.476 1.19 2.19 1.81L8.9 11.98c-.62-.716-1.214-1.454-1.807-2.192C6.753 9.92 6.387 10 6 10c-2.21 0-4-1.79-4-4zm12.152 6.848l1.34-1.34c.607.304 1.283.492 2.008.492 2.485 0 4.5-2.015 4.5-4.5 0-.725-.188-1.4-.493-2.007L18 9l-2-2 3.507-3.507C18.9 3.188 18.225 3 17.5 3 15.015 3 13 5.015 13 7.5c0 .725.188 1.4.493 2.007L3 20l2 2 6.848-6.848c1.885 1.928 3.874 3.753 5.977 5.45l1.425 1.148 1.5-1.5-1.15-1.425c-1.695-2.103-3.52-4.092-5.448-5.977z" data-webtasks-id="bf0de97f-30ba-4678"></path></g></svg> <span data-webtasks-id="adc2e7f7-4fe4-4a25">Edit Site</span>
</a>
</li>
<li class="actnbr-folded-follow actnbr-hidden" data-webtasks-id="fd9887cc-8495-415e">
<a class="actnbr-action actnbr-actn-follow " href="" data-webtasks-id="a8c44b2b-42dd-4669">
<svg class="gridicon gridicons-reader-follow" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-webtasks-id="7dba3f55-b07f-4f9a"><g data-webtasks-id="ff859f2c-575a-41ef"><path d="M23 16v2h-3v3h-2v-3h-3v-2h3v-3h2v3h3zM20 2v9h-4v3h-3v4H4c-1.1 0-2-.9-2-2V2h18zM8 13v-1H4v1h4zm3-3H4v1h7v-1zm0-2H4v1h7V8zm7-4H4v2h14V4z" data-webtasks-id="2431cc13-e01b-4c53"></path></g></svg><span data-webtasks-id="f53eb5c0-6389-45a7">Follow</span>
</a>
<a class="actnbr-action actnbr-actn-following no-display" href="" data-webtasks-id="6e38f864-2c45-489b">
<svg class="gridicon gridicons-reader-following" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-webtasks-id="4b2a5b14-f67c-40ce"><g data-webtasks-id="375abfaa-2a58-41a7"><path d="M23 13.482L15.508 21 12 17.4l1.412-1.388 2.106 2.188 6.094-6.094L23 13.482zm-7.455 1.862L20 10.89V2H2v14c0 1.1.9 2 2 2h4.538l4.913-4.832 2.095 2.176zM8 13H4v-1h4v1zm3-2H4v-1h7v1zm0-2H4V8h7v1zm7-3H4V4h14v2z" data-webtasks-id="b65ec651-8293-4b15"></path></g></svg><span data-webtasks-id="8d3731c2-efe4-4954">Following</span>
</a>
</li>
<li class="actnbr-signup actnbr-hidden" data-webtasks-id="6dee02e6-7721-479c"><a href="https://wordpress.com/start/" data-webtasks-id="e5459b8e-36df-403d">Sign up</a></li>
<li class="actnbr-login actnbr-hidden" data-webtasks-id="b81c17cb-c684-457a"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fjacksfoodblog.com%252Frecipes%252F" data-webtasks-id="7ba8ce2f-88c6-442b">Log in</a></li>
<li class="actnbr-shortlink actnbr-hidden" data-webtasks-id="3a9101f0-4393-497a"><a href="https://wp.me/P6j2r3-Ht" data-webtasks-id="6e5ac0ad-1f94-4072">Copy shortlink</a></li>
<li class="flb-report actnbr-hidden" data-webtasks-id="ea1dfd42-b9c2-4331">
<a href="http://en.wordpress.com/abuse/?report_url=https://jacksfoodblog.com/recipes/" target="_blank" data-webtasks-id="07a9be8a-4509-4b33">
Report this content </a>
</li>
<li class="actnbr-reader actnbr-hidden" data-webtasks-id="a51d6404-e531-45c4">
<a href="https://wordpress.com/read/blogs/93195613/posts/2695" data-webtasks-id="1cc1faca-0ff7-4740">
View post in Reader </a>
</li>
<li class="actnbr-subs actnbr-hidden" data-webtasks-id="43102883-0c7b-420d">
<a href="https://subscribe.wordpress.com/" data-webtasks-id="757d9477-3870-4045">Manage subscriptions</a>
</li>
<li class="actnbr-fold actnbr-hidden" data-webtasks-id="61b41651-5784-40d3"><a href="" data-webtasks-id="26e6ab7a-afeb-41e5">Collapse this bar</a></li>
</ul>
</div>
</div>
</li>
</ul>
</div>
<script data-webtasks-id="55c6f755-d6d3-4b2b">
window.addEventListener( "load", function( event ) {
var link = document.createElement( "link" );
link.href = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20210915";
link.type = "text/css";
link.rel = "stylesheet";
document.head.appendChild( link );
var script = document.createElement( "script" );
script.src = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?v=20220329";
script.defer = true;
document.body.appendChild( script );
} );
</script>
<script id="jetpack-carousel-js-extra" data-webtasks-id="898b7129-6893-41fe">
var jetpackSwiperLibraryPath = {"url":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/jetpack-plugin\/sun\/_inc\/build\/carousel\/swiper-bundle.min.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https:\/\/jacksfoodblog.com\/wp-admin\/admin-ajax.php","nonce":"c4922801e1","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","download_original":"View full size <span class=\"photo-size\">{0}<span class=\"photo-size-times\">\u00d7<\/span>{1}<\/span>","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https:\/\/jacksgrub.wordpress.com\/wp-login.php?redirect_to=https%3A%2F%2Fjacksfoodblog.com%2Frecipes%2F","blog_id":"93195613","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=93195613&v=wpcom&tz=1&user_id=0&subd=jacksgrub","is_public":"1"};
</script>
<script id="comment-like-js-extra" data-webtasks-id="fc7190c7-ead0-478c">
var comment_like_text = {"loading":"Loading...","swipeUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/comment-likes\/js\/lib\/swipe.js?ver=20131008"};
</script>
<script id="coblocks-loader-js-extra" data-webtasks-id="a17bb3ba-fe75-4058">
var wpcom_coblocks_js = {"coblocks_masonry_js":"https:\/\/s0.wp.com\/wp-content\/plugins\/coblocks\/2.18.1-simple-rev.4\/dist\/js\/coblocks-masonry.min.js","coblocks_lightbox_js":"https:\/\/s0.wp.com\/wp-content\/plugins\/coblocks\/2.18.1-simple-rev.4\/dist\/js\/coblocks-lightbox.min.js","jquery_core_js":"\/wp-includes\/js\/jquery\/jquery.min.js","jquery_migrate_js":"\/wp-includes\/js\/jquery\/jquery-migrate.min.js","masonry_js":"\/wp-includes\/js\/masonry.min.js","imagesloaded_js":"\/wp-includes\/js\/imagesloaded.min.js"};
var coblocksLigthboxData = {"closeLabel":"Close Gallery","leftLabel":"Previous","rightLabel":"Next"};
</script>
<script id="sharing-js-js-extra" data-webtasks-id="f055dc18-a055-4643">
var sharing_js_options = {"lang":"en","counts":"1","is_stats_active":"1"};
</script>
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/_static/??-eJydkEkOwjAMRS9EYhVaBAvEUVCaWMVpJuqG4fZUtAzqAiR2/t/f1rPhkoSOocfQg2UweCaN6SotL+Cj5bNILjcUGBy1yHDKmPGognHYfQlb7JPS7aSBc4ADBQ11JmdAqy5mRveKPQ3pKXzZqqP3gyVGFDsz5oPvqdpF3TIsZbGRhWDyyaHo8CxLMMT9uGkMCReVGU77ATLxiksaEGby77fwUXVolDG3R0mhmTD2flesN1VVlqvl1t4BYu+kkA==" data-webtasks-id="b86d432d-22f9-4dcc"></script>
<script type="text/javascript" data-webtasks-id="c9870dbc-3697-4465">
var windowOpen;
( function () {
function matches( el, sel ) {
return !! (
el.matches && el.matches( sel ) ||
el.msMatchesSelector && el.msMatchesSelector( sel )
);
}
document.body.addEventListener( 'click', function ( event ) {
if ( ! event.target ) {
return;
}
var el;
if ( matches( event.target, 'a.share-twitter' ) ) {
el = event.target;
} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-twitter' ) ) {
el = event.target.parentNode;
}
if ( el ) {
event.preventDefault();
// If there's another sharing window open, close it.
if ( typeof windowOpen !== 'undefined' ) {
windowOpen.close();
}
windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtwitter', 'menubar=1,resizable=1,width=600,height=350' );
return false;
}
} );
} )();
var windowOpen;
( function () {
function matches( el, sel ) {
return !! (
el.matches && el.matches( sel ) ||
el.msMatchesSelector && el.msMatchesSelector( sel )
);
}
document.body.addEventListener( 'click', function ( event ) {
if ( ! event.target ) {
return;
}
var el;
if ( matches( event.target, 'a.share-facebook' ) ) {
el = event.target;
} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-facebook' ) ) {
el = event.target.parentNode;
}
if ( el ) {
event.preventDefault();
// If there's another sharing window open, close it.
if ( typeof windowOpen !== 'undefined' ) {
windowOpen.close();
}
windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomfacebook', 'menubar=1,resizable=1,width=600,height=400' );
return false;
}
} );
} )();
</script>
<script type="text/javascript" data-webtasks-id="c3effb32-cc47-4f52">
// <![CDATA[
(function() {
try{
if ( window.external &&'msIsSiteMode' in window.external) {
if (window.external.msIsSiteMode()) {
var jl = document.createElement('script');
jl.type='text/javascript';
jl.async=true;
jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jl, s);
}
}
}catch(e){}
})();
// ]]>
</script> <iframe src="https://widgets.wp.com/likes/master.html?ver=20230309#ver=20230309&origin=https://jacksfoodblog.com" scrolling="no" id="likes-master" name="likes-master" style="display:none;" data-webtasks-id="47d83c2f-15f9-47ef"></iframe>
<div id="likes-other-gravatars" data-webtasks-id="79f5bd36-2bb9-4bd7">
<div class="likes-text" data-webtasks-id="12dc0e86-c27d-4d13">
<span data-webtasks-id="66ff2da2-e074-4f09">%d</span> bloggers like this: </div>
<ul class="wpl-avatars sd-like-gravatars" data-webtasks-id="08400483-1554-4db0"></ul>
</div>
<script src="//stats.wp.com/w.js?63" defer="" data-webtasks-id="ba8150e9-cb6b-4c02"></script> <script type="text/javascript" data-webtasks-id="219e37e8-5932-4f04">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'93195613','blog_tz':'1','user_lang':'en','blog_lang':'en','user_id':'0'}]);
_stq.push(['view', {'blog':'93195613','v':'wpcom','tz':'1','user_id':'0','post':'2695','subd':'jacksgrub'}]);
_stq.push(['extra', {'crypt':'UE5VTUIlVktzQVNtcFdrVUQrYTdpR2p3ME9na1lTaUphdk82X2x0Riw5fno9QU9SX09LX1JpbmhKSHg5eWxZTFB3c05fTVNiQXw4LjhkVEdXUXxya2IreFkvSmZqaXBTX0VRWHM/NzBSUGJXUnE1Qk04VzgleHFwRVZGfixicXROcG9ITDBZfj92U0ZFOXpaT3J5Y3BXOVgwY3ZTY2QyVWlWcXxkR2Y5L3A2cEU4XTRZSXM2ZUkzSFNYLy9mZDdTX1RMaS15W0tbc20uWmt4ZmlCW3ZtLkJ8UUE/S0VCb3dF'}]);
_stq.push([ 'clickTrackerInit', '93195613', '2695' ]);
</script>
<noscript data-webtasks-id="47906805-29b7-469a"><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<script data-webtasks-id="70423512-bbef-4168">
if ( 'object' === typeof wpcom_mobile_user_agent_info ) {
wpcom_mobile_user_agent_info.init();
var mobileStatsQueryString = "";
if( false !== wpcom_mobile_user_agent_info.matchedPlatformName )
mobileStatsQueryString += "&x_" + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName;
if( false !== wpcom_mobile_user_agent_info.matchedUserAgentName )
mobileStatsQueryString += "&x_" + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName;
if( wpcom_mobile_user_agent_info.isIPad() )
mobileStatsQueryString += "&x_" + 'ipad_views' + '=' + 'views';
if( "" != mobileStatsQueryString ) {
new Image().src = document.location.protocol + '//pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random();
}
}
</script>
<style data-webtasks-id="2bb80278-491e-466d">img#wpstats {
position: absolute !important;
clip: rect(0, 0, 0, 0);
padding: 0 !important;
border: 0 !important;
height: 0 !important;
width: 0 !important;
overflow: hidden;
}</style><img src="https://pixel.wp.com/g.gif?blog=93195613&v=wpcom&tz=1&user_id=0&post=2695&subd=jacksgrub&host=jacksfoodblog.com&ref=https%3A%2F%2Fjacksfoodblog.com%2F&rand=0.005298258462213434" alt="" id="wpstats" data-webtasks-id="996b2024-c297-4a9c"><iframe name="__tcfapiLocator" style="display: none;" data-webtasks-id="95652866-fd9a-45a9"></iframe><div class="comment-likes-overlay" style="display: none;" data-webtasks-id="ad32b083-c81a-4cab"></div><style data-webtasks-id="da9271c9-77f6-470f">.ata-controls__complain-btn:hover,
.ata-controls__privacy-btn:hover {
color: #666666 !important;
}
.ata-controls__complain-btn:active,
.ata-controls__privacy-btn:active {
color: #5ac8fa !important;
}
.ata-controls__complain-btn_clicked,
.ata-controls__complain-btn_clicked:hover,
.ata-controls__complain-btn_clicked:active {
color: #000 !important;
cursor: default !important;
}
.ata-frame-wrapper {
overflow: hidden;
position: relative;
}
</style><script src="https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?v=20220329" defer="" data-webtasks-id="eb4bfb9c-d89d-4f41"></script></body> |