Spaces:
Running
Running
File size: 178,762 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 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 |
<head data-webtasks-id="3b6616c3-6fb1-4db7">
<meta charset="UTF-8" data-webtasks-id="4a5d8baa-f6c5-4556">
<meta name="viewport" content="width=device-width, initial-scale=1" data-webtasks-id="f73db3a8-2b22-4ca6">
<meta name="robots" content="max-image-preview:large" data-webtasks-id="78040a44-b77f-4bb1">
<meta name="google-site-verification" content="ygsTPKJ-qtcut0ujXl5-KgYTLhXlC-TvnMU07ni5_KU" data-webtasks-id="77c7a0be-e665-46ad">
<!-- Async WordPress.com Remote Login -->
<title data-webtasks-id="d2be150b-8bcd-4439">Tomato and Chilli Batch Pasta Sauce Recipe – Jack's Food Blog</title>
<link rel="dns-prefetch" href="//s0.wp.com" data-webtasks-id="4043064d-307a-4573">
<link rel="dns-prefetch" href="//wordpress.com" data-webtasks-id="a29957ca-fd4f-4815">
<link rel="dns-prefetch" href="//s.pubmine.com" data-webtasks-id="2d772307-7b62-4106">
<link rel="dns-prefetch" href="//x.bidswitch.net" data-webtasks-id="5bfaa50a-7fd5-4370">
<link rel="dns-prefetch" href="//static.criteo.net" data-webtasks-id="da6edc83-ab09-4a4f">
<link rel="dns-prefetch" href="//ib.adnxs.com" data-webtasks-id="08f3c55a-64ba-4c91">
<link rel="dns-prefetch" href="//aax.amazon-adsystem.com" data-webtasks-id="eac96b16-85c3-4e5f">
<link rel="dns-prefetch" href="//bidder.criteo.com" data-webtasks-id="08362ae7-5f44-48b1">
<link rel="dns-prefetch" href="//cas.criteo.com" data-webtasks-id="7ee4cc4e-7602-440e">
<link rel="dns-prefetch" href="//gum.criteo.com" data-webtasks-id="b66d63ad-c26b-4e25">
<link rel="dns-prefetch" href="//ads.pubmatic.com" data-webtasks-id="30a07a73-5b99-4ca3">
<link rel="dns-prefetch" href="//gads.pubmatic.com" data-webtasks-id="8f069dc1-79ba-49dd">
<link rel="dns-prefetch" href="//tpc.googlesyndication.com" data-webtasks-id="f02f69a6-42e6-4f5f">
<link rel="dns-prefetch" href="//ad.doubleclick.net" data-webtasks-id="a658e46f-8164-414e">
<link rel="dns-prefetch" href="//googleads.g.doubleclick.net" data-webtasks-id="094fce80-8f60-4430">
<link rel="dns-prefetch" href="//www.googletagservices.com" data-webtasks-id="f039ee3e-2b2b-4884">
<link rel="dns-prefetch" href="//cdn.switchadhub.com" data-webtasks-id="aa18b6de-2cf0-429e">
<link rel="dns-prefetch" href="//delivery.g.switchadhub.com" data-webtasks-id="6c04c5dd-4597-47c9">
<link rel="dns-prefetch" href="//delivery.swid.switchadhub.com" data-webtasks-id="604559d0-983c-458b">
<link rel="dns-prefetch" href="//a.teads.tv" data-webtasks-id="f233742d-d1e6-4852">
<link rel="dns-prefetch" href="//prebid.media.net" data-webtasks-id="314e1817-4f28-4778">
<link rel="dns-prefetch" href="//adserver-us.adtech.advertising.com" data-webtasks-id="801ff8c2-3717-445e">
<link rel="dns-prefetch" href="//fastlane.rubiconproject.com" data-webtasks-id="eee4eea2-0f1b-46c7">
<link rel="dns-prefetch" href="//prebid-server.rubiconproject.com" data-webtasks-id="4e03edc1-e62b-47ae">
<link rel="dns-prefetch" href="//hb-api.omnitagjs.com" data-webtasks-id="74139c2c-1a71-48a3">
<link rel="dns-prefetch" href="//mtrx.go.sonobi.com" data-webtasks-id="55f5e4f6-1c19-4213">
<link rel="dns-prefetch" href="//apex.go.sonobi.com" data-webtasks-id="226cc876-185a-43ac">
<link rel="dns-prefetch" href="//u.openx.net" data-webtasks-id="f8a959ea-89dc-41e7">
<link href="https://fonts.gstatic.com" crossorigin="" rel="preconnect" data-webtasks-id="915695cf-c0bc-428d">
<link rel="alternate" type="application/rss+xml" title="Jack's Food Blog » Feed" href="https://jacksfoodblog.com/feed/" data-webtasks-id="b3e6b290-460d-42cc">
<link rel="alternate" type="application/rss+xml" title="Jack's Food Blog » Comments Feed" href="https://jacksfoodblog.com/comments/feed/" data-webtasks-id="4164e510-c7d1-4818">
<link rel="alternate" type="application/rss+xml" title="Jack's Food Blog » Tomato and Chilli Batch Pasta Sauce Recipe Comments Feed" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/feed/" data-webtasks-id="fe441d97-a121-45da">
<script type="text/javascript" data-webtasks-id="1bb187e9-ba65-4155">
/* <![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="fa0a805a-da62-42bb">
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="302e382d-ecf1-4a8b"></script>
<style data-webtasks-id="dfdefb2b-ba2e-4d34">
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="6a05fe60-c177-484c">
<style id="wp-block-paragraph-inline-css" data-webtasks-id="f68a0760-cc37-486d">
.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="af38cc67-7da3-45ec">
.wp-block-group{box-sizing:border-box}
</style>
<style id="wp-block-site-logo-inline-css" data-webtasks-id="cdfa0757-b9e7-4d59">
.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="23e6b5cf-ddab-4b4f">
.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="16a908c2-8b62-4148">
.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="5a6d13e5-26a0-4b51">
<style id="wp-block-navigation-inline-css" data-webtasks-id="198886d6-71ad-4c11">
.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="d7c3dcde-c112-4d56">
.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="d28103db-df8d-427b">
.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="1969f1b1-f7a4-460d">
<style id="wp-block-spacer-inline-css" data-webtasks-id="95bce8e0-2dbb-452d">
.wp-block-spacer{clear:both}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-20-1" href="https://s0.wp.com/_static/??-eJydjEEKgCAQAD+UrR6KLtFbTJfQdJXWxe9HUB/oOMMw0KtyhRpSgyyqJjkCMURs1brzZWAhyMVLQgZnryKMCbiHipfahXzC0TEP8H/2NZ94fltezbxMxkx61vEGx+U/hQ==&cssminify=yes" type="text/css" media="all" data-webtasks-id="549848c8-0bfe-4924">
<style id="wp-block-comments-inline-css" data-webtasks-id="86e9e512-9cdf-4846">
.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-buttons-inline-css" data-webtasks-id="d86b5e5f-fec5-4d7c">
.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-button.aligncenter{text-align:center}
</style>
<style id="wp-block-button-inline-css" data-webtasks-id="0014129d-cb0e-4520">
.wp-block-button__link{box-sizing:border-box;cursor:pointer;display:inline-block;text-align:center;word-break:break-word}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-button[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - var(--wp--style--block-gap, .5em)*.75)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - var(--wp--style--block-gap, .5em)*.5)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - var(--wp--style--block-gap, .5em)*.25)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{flex-basis:100%;width:100%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25{width:25%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50{width:50%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75{width:75%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.wp-block-button.is-style-outline>.wp-block-button__link,.wp-block-button .wp-block-button__link.is-style-outline{border:2px solid;padding:.667em 1.333em}.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color),.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color){color:currentColor}.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background),.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background){background-color:initial;background-image:none}.wp-block-button .wp-block-button__link:where(.has-border-color){border-width:initial}.wp-block-button .wp-block-button__link:where([style*=border-top-color]){border-top-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-right-color]){border-right-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-bottom-color]){border-bottom-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-left-color]){border-left-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-style]){border-width:initial}.wp-block-button .wp-block-button__link:where([style*=border-top-style]){border-top-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-right-style]){border-right-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-bottom-style]){border-bottom-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-left-style]){border-left-width:medium}
.wp-block-button .wp-block-button__link{background-color: var(--wp--preset--color--primary);border-radius: 4px;border-width: 0px;color: var(--wp--preset--color--background);font-family: var(--wp--preset--font-family--body-font);font-size: var(--wp--preset--font-size--normal);font-weight: normal;line-height: 2;}
</style>
<style id="wp-block-heading-inline-css" data-webtasks-id="d7b98bea-4ed0-4412">
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-latest-posts-inline-css" data-webtasks-id="f3b3f7b1-6989-4333">
.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="b4c40d86-ec17-4b7a">
: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-34-1" href="https://s0.wp.com/_static/??-eJx9jEEOAiEQBD/kQECjeDC+ZWEnijIwYWA3/l72op689KFTVXplCCU3zE1z6reYRYfiUwlP0VYZpwxIJE4IFRd10HOU9iFA2iuhCiI7/ROiDt9WxfETT20jCOc4YUIa2D9t5eGA91xRBMZS7ATtPkTZvCtdzNEZt7f2fHq8Afl7R7w=&cssminify=yes" type="text/css" media="all" data-webtasks-id="4df69483-ee47-4bbc">
<style id="global-styles-inline-css" data-webtasks-id="005f5e89-cca4-4389">
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="1966eb2f-b295-4875">
.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-18.wp-container-18{flex-wrap:nowrap;gap:75px;}.wp-container-20.wp-container-20{gap:11px;}.wp-container-21.wp-container-21{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{flex-wrap:nowrap;}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-38-1" href="https://s0.wp.com/_static/??-eJx9juEKwjAMhF/IWpxssB/is8wSu2jSlDZFfHujgk4F/919ySXnL9kFSQpJPTeXqUVM1QdhNuQIz2CufpG1kZVHn0TR0vUlnoPFTZ2B7UIuwNjYXqQwo4GqV4Kf7UWDCOJIwqQo6cO4I01Y/kULHEiiyfho/rb30J53m6Eft93YD93pBnHYXzQ=&cssminify=yes" type="text/css" media="all" data-webtasks-id="85ebc62c-1233-405c">
<style id="jetpack-global-styles-frontend-style-inline-css" data-webtasks-id="1b2e26dd-8fbb-42bf">
: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-40-1" href="https://s0.wp.com/_static/??-eJyNjcsKAjEMRX/IGmR0HBfip0hMS9sxTYppGfx7H7gRN+7ugcs5sFRHKi1Ig9Jd5R6zGMyhVaTrh8G6QFHfORhYwlvw6P39PbPENZmt4G/ROQuBKWVkxxrVvuBH1lIoz2zaQmS9IL8Op3LcjNN+N4yHaZgfuUVIcA==&cssminify=yes" type="text/css" media="all" data-webtasks-id="27b64c3a-217b-4044">
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/wp-content/js/mobile-useragent-info.js?m=1609849039i" data-webtasks-id="597984fe-c4f6-4aa1"></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="4492b447-f27c-48ee"></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="593a3eef-f331-4a79"></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="febce013-56ec-49e7"></script>
<script id="wpcom-actionbar-placeholder-js-extra" data-webtasks-id="b5d57074-7fc3-4368">
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-2g","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="d0f11d69-0f63-48ab"></script>
<script type="text/javascript" data-webtasks-id="20a2f72b-a930-4cd0">
window.addEventListener( 'DOMContentLoaded', function() {
rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
} );
</script>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-0-2" href="https://s0.wp.com/wp-content/mu-plugins/highlander-comments/style.css?m=1686950158i&cssminify=yes" type="text/css" media="all" data-webtasks-id="c07f4cc0-9e9b-4f0d">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://jacksgrub.wordpress.com/xmlrpc.php?rsd" data-webtasks-id="df5071ce-57f1-4353">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s0.wp.com/wp-includes/wlwmanifest.xml" data-webtasks-id="3ce5a92b-2135-4855">
<meta name="generator" content="WordPress.com" data-webtasks-id="287e5580-6498-454f">
<link rel="canonical" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/" data-webtasks-id="bb6b738a-fa41-4cc6">
<link rel="shortlink" href="https://wp.me/p6j2r3-2g" data-webtasks-id="234a9729-6776-46a0">
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/?format=json&url=https%3A%2F%2Fjacksfoodblog.com%2F2015%2F06%2F27%2Ftomato-chilli-pasta-sauce-recipe%2F&for=wpcom-auto-discovery" data-webtasks-id="57145478-3e07-46bb"><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/?format=xml&url=https%3A%2F%2Fjacksfoodblog.com%2F2015%2F06%2F27%2Ftomato-chilli-pasta-sauce-recipe%2F&for=wpcom-auto-discovery" data-webtasks-id="0344b62f-3997-4e9b">
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" data-webtasks-id="efb2d713-f258-4892">
<meta property="og:title" content="Tomato and Chilli Batch Pasta Sauce Recipe" data-webtasks-id="3470ef6e-c4ab-453d">
<meta property="og:url" content="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/" data-webtasks-id="7b6eae2f-3a98-4e0e">
<meta property="og:description" content="This rich, amazing pasta sauce took ages to perfect, and has brought me nearly worldwide fame. Here are my secrets. Use responsibly, 90% of my success with ladies is due to this sauce." data-webtasks-id="a5343240-67bd-4aa9">
<meta property="article:published_time" content="2015-06-27T16:10:29+00:00" data-webtasks-id="4b5bb2fa-468f-4c1a">
<meta property="article:modified_time" content="2019-04-16T17:17:57+00:00" data-webtasks-id="c476799b-aa49-4b9f">
<meta property="og:site_name" content="Jack's Food Blog" data-webtasks-id="047fb4a2-9f77-47cb">
<meta property="og:image" content="https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?w=1200" data-webtasks-id="eb044000-a2a0-42a8">
<meta property="og:image:width" content="1200" data-webtasks-id="11bde313-bd3e-481e">
<meta property="og:image:height" content="1200" data-webtasks-id="fbe69641-c2d1-47b7">
<meta property="og:image:alt" content="" data-webtasks-id="8a22afb5-fcde-40bd">
<meta property="og:locale" content="en_US" data-webtasks-id="d3e4b205-4c36-4050">
<meta property="article:publisher" content="https://www.facebook.com/WordPresscom" data-webtasks-id="591319bd-5fba-4eee">
<meta name="twitter:creator" content="@JackTelford" data-webtasks-id="44f71337-2ab0-49d7">
<meta name="twitter:site" content="@JackTelford" data-webtasks-id="7e64df7d-20ee-4f88">
<meta name="twitter:text:title" content="Tomato and Chilli Batch Pasta Sauce Recipe" data-webtasks-id="561f3ba3-0d53-4788">
<meta name="twitter:image" content="https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?w=640" data-webtasks-id="e397c6ea-453d-45ca">
<meta name="twitter:card" content="summary_large_image" data-webtasks-id="a4799af9-c131-4bd4">
<!-- End Jetpack Open Graph Tags -->
<link rel="openid.server" href="https://jacksfoodblog.com/?openidserver=1" data-webtasks-id="92cf4079-6c1e-4ba2">
<link rel="openid.delegate" href="https://jacksfoodblog.com/" data-webtasks-id="23013db5-6cbe-4db0">
<link rel="search" type="application/opensearchdescription+xml" href="https://jacksfoodblog.com/osd.xml" title="Jack's Food Blog" data-webtasks-id="92313d16-3924-4b19">
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" data-webtasks-id="1178c57b-078f-464c">
<style type="text/css" data-webtasks-id="dfb9296f-f553-4115">
.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="55e9ed85-2aaf-46a1"><meta name="msapplication-window" content="width=device-width;height=device-height" data-webtasks-id="a262ddbe-47a4-4617"><meta name="msapplication-tooltip" content="Balanced, Delicious Recipes for the Home Cook" data-webtasks-id="b474983f-f4e3-4155"><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="59aeb6b8-16d2-43d9"><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="565304aa-2642-4cc8"><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="f0531c32-5810-4014"><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="93718c4a-fd09-4beb"><meta name="description" content="This rich, amazing pasta sauce took ages to perfect, and has brought me nearly worldwide fame. Here are my secrets. Use responsibly, 90% of my success with ladies is due to this sauce." data-webtasks-id="a65956e5-1d72-45af">
<script type="text/javascript" data-webtasks-id="d279d1b4-3260-4800">
function __ATA_CC() {var v = document.cookie.match('(^|;) ?personalized-ads-consent=([^;]*)(;|$)');return v ? 1 : 0;}
var __ATA_PP = { 'pt': 1, '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="66d808bb-4fd0-4285">
(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=1&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=37306960483&src=https%3A%2F%2Fjacksfoodblog.com%2Frecipes%2F&ref=https%3A%2F%2Fjacksfoodblog.com%2F2015%2F06%2F27%2Ftomato-chilli-pasta-sauce-recipe%2F&tuuid=006be387-a1aa-4bb5-ac8d-c07bbaa0d88b&vp=1536x746&cb=callback__ljo3gfxh_1" data-webtasks-id="7614964a-e35f-4016"></script> <script data-webtasks-id="2d1b2243-65b6-4c3d">
</script><style id="wp-fonts-local" data-webtasks-id="f79b9883-ada9-4306">
@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="25b0567e-bf38-4745">
/* 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="cf3805e9-b361-48f7">
<link rel="icon" href="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=192" sizes="192x192" data-webtasks-id="0ab014bd-4c7b-4811">
<link rel="apple-touch-icon" href="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=180" data-webtasks-id="084893e0-bae3-4f81">
<meta name="msapplication-TileImage" content="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=270" data-webtasks-id="f9b0174d-86b5-4661">
<!-- 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="98e584b8-9a6b-41d3"><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="4e90f894-f508-4fe6"><script src="https://c0.pubmine.com/2.37.11677685674593/ata.js" data-webtasks-id="1f3aa54f-0289-4be2"></script><link href="https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20210915" type="text/css" rel="stylesheet" data-webtasks-id="d3f5b79f-0d8c-4549"></head>
<body class="post-template-default single single-post postid-140 single-format-standard wp-embed-responsive customizer-styles-applied highlander-enabled highlander-light" data-webtasks-id="7caa0b03-d7b4-4da0">
<a class="skip-link screen-reader-text" href="#wp--skip-link--target" data-webtasks-id="6af03f88-705a-4865">Skip to content</a><div class="wp-site-blocks" data-webtasks-id="8328e434-7712-4549"><header class="wp-block-template-part" data-webtasks-id="eec874bc-b943-4b7b">
<div class="wp-block-group alignfull is-layout-flow wp-container-2 wp-block-group-is-layout-flow" data-webtasks-id="21959419-75ba-4ad5">
<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="e5ac2940-c965-409e">
<p style="font-size:12px" data-webtasks-id="8dd86fe4-8871-4f60">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="31ebdd34-ffce-44f9">
<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="b89f02c9-a247-4a97">
<div class="wp-block-group is-nowrap is-layout-flex wp-container-3 wp-block-group-is-layout-flex" data-webtasks-id="7fe93373-3770-4ff1">
<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="646ed9b1-8aaf-4e08"><a href="https://jacksfoodblog.com" target="_self" rel="home" data-webtasks-id="9d391fdd-f444-4b82">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="1b13a2e1-3732-492b"><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="2bffdcf5-2547-4a7b"><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="31ba4ccf-684b-414a"><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="e4f1072d-e79c-4705"><rect x="4" y="7.5" width="16" height="1.5" data-webtasks-id="28344ea4-51b3-403c"></rect><rect x="4" y="15" width="16" height="1.5" data-webtasks-id="f5d51a33-4926-4707"></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="ed308eef-27fe-4cea">
<div class="wp-block-navigation__responsive-close" tabindex="-1" data-webtasks-id="7a3d1c74-a760-4d79">
<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="12ae2e2e-11b4-4160">
<button aria-label="Close menu" class="wp-block-navigation__responsive-container-close" data-wp-on--click="actions.core.navigation.closeMenuOnClick" data-webtasks-id="06ca0b5e-d510-4740"><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="8130d11e-f585-4b91"><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="291516e4-8da1-4394"></path></svg></button>
<div class="wp-block-navigation__responsive-container-content" id="modal-5-content" data-webtasks-id="a60628fc-5a95-4751">
<ul class="wp-block-navigation__container is-responsive items-justified-center wp-block-navigation" data-webtasks-id="b27a7596-7200-425b"><li class=" wp-block-navigation-item menu-item menu-item-type-post_type menu-item-object-post wp-block-navigation-link" data-webtasks-id="8081f174-952a-4cf2"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/best-food-blogs/" title="" data-webtasks-id="ae5839b2-352f-4038"><span class="wp-block-navigation-item__label" data-webtasks-id="07fc9a86-1b6e-4770">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="c939e2c5-1c4e-4a76"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/recipes/" title="" data-webtasks-id="2d8f36a4-4204-4501"><span class="wp-block-navigation-item__label" data-webtasks-id="fb26b4b5-4e73-4be5">Recipes</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link" data-webtasks-id="61a11eb0-59a1-41d8"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/diet-tips-advice/" data-webtasks-id="7277dcb4-6461-4e6e"><span class="wp-block-navigation-item__label" data-webtasks-id="bd0576c4-10b5-4c6d">Tips & Advice</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link" data-webtasks-id="4e9f8414-4a8f-48cb"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/2018/10/17/portuguese-sausage-linguica-pasta-sauce/" data-webtasks-id="d74080b2-ef1e-4526"><span class="wp-block-navigation-item__label" data-webtasks-id="5c39f88d-3495-4a3e">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="f7f03116-869d-475d">
<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="48285f59-02c7-4f56"></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="d52f0895-b560-4a64">
<div class="wp-block-cover alignfull is-light" style="min-height:300px" data-webtasks-id="e38439a3-2fac-4ac5"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-70 has-background-dim" data-webtasks-id="9a6ad85c-de69-41ba"></span><img width="1024" height="1024" src="https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?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/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?w=1024 1024w, https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?w=150 150w, https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?w=300 300w, https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?w=768 768w, https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg 1416w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="975" data-permalink="https://jacksfoodblog.com/2015/06/06/jacks-grub-my-food-blog/tomato-and-chilli-pasta-sauce/" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg" data-orig-size="1416,1416" 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="tomato-and-chilli-pasta-sauce" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/tomato-and-chilli-pasta-sauce-e1586596497107.jpg?w=1024" data-webtasks-id="4a41af48-6798-4dd3"><div class="wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow" data-webtasks-id="2d120867-018b-4afe"><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="2171dfe6-857d-4917">Tomato and Chilli Batch Pasta Sauce Recipe</h2></div></div>
<div style="height:1px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="2ee3feba-dc29-4831"></div>
<div class="entry-content wp-block-post-content is-layout-constrained wp-block-post-content-is-layout-constrained" data-webtasks-id="1127f4d4-a273-464f"><p data-webtasks-id="ddac9fe6-21b8-468c">This is my best recipe in my opinion, took ages to perfect, and has brought me nearly worldwide fame. Here are my secrets.</p>
<p data-webtasks-id="2ebc962b-e44e-497f">This batch pasta sauce recipe will give you 6 good portions. It’s a great one to portion out and chuck in the freezer for another time too.</p>
<p data-webtasks-id="9b70e1a5-c5cc-449d"><strong data-webtasks-id="5d5582ea-68d1-4d2d">Ingredients:</strong></p>
<ul data-webtasks-id="243f3b37-1ddc-4f35">
<li data-webtasks-id="8129b009-3896-4c3d">8 Fresh tomatoes or a pack of plum tomatoes (better)</li>
<li data-webtasks-id="c442c926-86cb-444a">1 Onion</li>
<li data-webtasks-id="888239a4-7198-4307">1 Carrot</li>
<li data-webtasks-id="5295fdd5-d80d-4dce">2 Sticks Celery</li>
<li data-webtasks-id="6f91126f-2fe5-47d3">1 Aubergine</li>
<li data-webtasks-id="6523fd05-4b36-4e20">Handful of Olives</li>
<li data-webtasks-id="09ce6ed1-3c2b-4ac5">Medium sized Ball of Mozzarella</li>
<li data-webtasks-id="f34438ca-5ba7-4cee">Handful Fresh Basil</li>
<li data-webtasks-id="149ef907-76b8-42e1">Dried Herbs de Provence</li>
<li data-webtasks-id="0b829376-c00e-4dc9">Dried Oregano</li>
<li data-webtasks-id="8ad268f8-d5ae-4e0b">One tin of Passatta</li>
<li data-webtasks-id="a6e8a6e7-9ee4-4733">7 cloves Garlic</li>
<li data-webtasks-id="0f4a25eb-4443-4b3d">3-4 red chillis (I’ve replaced one with a Jalapeno)</li>
<li data-webtasks-id="576f1df1-5001-4f26">Good wodge of Tomato puree</li>
<li data-webtasks-id="f0e56f98-f3d3-45ad">1 Red Pepper</li>
<li data-webtasks-id="6b933e94-53f3-4c32">Frankfurter sausages (optional).</li>
</ul>
<p data-webtasks-id="f261a51e-49df-418c"><strong data-webtasks-id="c924c625-b710-472c">How to do it:</strong></p>
<p data-webtasks-id="1f927564-e312-4389">Heat up 2tbsp of olive oil in a Le Creuset or something similar.</p>
<p data-webtasks-id="8a40a89a-b5e9-41fa">Fry together the onions, aubergine, celery and carrots with the lid on until well softened. Then add 2-3 red chillies, depending on if you’re a spice boss. Also add 7 cloves of garlic and 2 tbsp. of tomato puree. I know this seems a lot but there’s a lot of sauce to flavour!</p>
<p data-webtasks-id="1f29fdb7-ae2a-48e5"><a href="https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg" data-webtasks-id="f08f3221-3845-4307"><img decoding="async" width="2448" height="2448" data-attachment-id="124" data-permalink="https://jacksfoodblog.com/?attachment_id=124" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg" data-orig-size="2448,2448" data-comments-opened="1" data-image-meta="{"aperture":"2.4","credit":"","camera":"iPhone 5","caption":"","created_timestamp":"1418668672","copyright":"","focal_length":"4.12","iso":"400","shutter_speed":"0.066666666666667","title":"","orientation":"1"}" data-image-title="IMG_0165" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg?w=1024" class="aligncenter wp-image-124 size-large" src="https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg?w=1024&h=1024" alt="Vegetables, Garlic and Chilli" srcset="https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg?w=1024&h=1024 1024w, https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg?w=2048&h=2048 2048w, https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg?w=150&h=150 150w, https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg?w=300&h=300 300w, https://jacksgrub.files.wordpress.com/2015/06/img_0165.jpg?w=768&h=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="760f96b0-d095-4b3d"></a></p>
<p data-webtasks-id="67b9f0d9-079e-4e3b">Add around 200ml of boiling water at this point too, and leave it to cook for a bit.</p>
<p data-webtasks-id="16cbf52d-8334-493e">Next, boil the tomatoes in water to get their skins off. Some will go in the sauce now, and some later on.</p>
<p data-webtasks-id="c755b3b9-426f-4f1f"><a href="https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg" data-webtasks-id="31c7824e-33ff-4839"><img decoding="async" width="2448" height="2448" data-attachment-id="118" data-permalink="https://jacksfoodblog.com/?attachment_id=118" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg" data-orig-size="2448,2448" data-comments-opened="1" data-image-meta="{"aperture":"2.4","credit":"","camera":"iPhone 5","caption":"","created_timestamp":"1418668328","copyright":"","focal_length":"4.12","iso":"50","shutter_speed":"0.058823529411765","title":"","orientation":"1"}" data-image-title="IMG_0159" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg?w=1024" class=" wp-image-118 size-large aligncenter" src="https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg?w=1024&h=1024" alt="Tomatoes boiling in Water" srcset="https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg?w=1024&h=1024 1024w, https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg?w=2048&h=2048 2048w, https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg?w=150&h=150 150w, https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg?w=300&h=300 300w, https://jacksgrub.files.wordpress.com/2015/06/img_0159.jpg?w=768&h=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="ab09a18c-619c-4f4c"></a></p>
<p data-webtasks-id="8e5305a1-b590-4fb8">Next, add them to the fried veg, chilli, purée and garlic.</p>
<p data-webtasks-id="abe45ee3-73b7-4beb"><a href="https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg" data-webtasks-id="c54c75b3-5ae3-44dd"><img decoding="async" width="2448" height="2448" data-attachment-id="129" data-permalink="https://jacksfoodblog.com/?attachment_id=129" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg" data-orig-size="2448,2448" data-comments-opened="1" data-image-meta="{"aperture":"2.4","credit":"","camera":"iPhone 5","caption":"","created_timestamp":"1418669022","copyright":"","focal_length":"4.12","iso":"800","shutter_speed":"0.066666666666667","title":"","orientation":"1"}" data-image-title="IMG_0170" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg?w=1024" class="aligncenter wp-image-129 size-large" src="https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg?w=1024&h=1024" alt="Fried vegetables with tomatoes" srcset="https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg?w=1024&h=1024 1024w, https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg?w=2048&h=2048 2048w, https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg?w=150&h=150 150w, https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg?w=300&h=300 300w, https://jacksgrub.files.wordpress.com/2015/06/img_0170.jpg?w=768&h=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="93650358-8964-4a12"></a></p>
<p data-webtasks-id="4564afc8-6ce1-407a">By this point you should be thinking about Italy, and hankering for an espresso. Allow this to cook together for at least an hour. Whilst you wait, chop up your pepper and get excited.</p>
<p data-webtasks-id="4764a1ae-5e14-42e5"><a href="https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg" data-webtasks-id="4865b38d-97c4-4322"><img decoding="async" width="2448" height="2448" data-attachment-id="131" data-permalink="https://jacksfoodblog.com/?attachment_id=131" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg" data-orig-size="2448,2448" data-comments-opened="1" data-image-meta="{"aperture":"2.4","credit":"","camera":"iPhone 5","caption":"","created_timestamp":"1418669144","copyright":"","focal_length":"4.12","iso":"800","shutter_speed":"0.066666666666667","title":"","orientation":"1"}" data-image-title="IMG_0172" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg?w=1024" class="aligncenter wp-image-131 size-large" src="https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg?w=1024&h=1024" alt="Sauce cooking down" srcset="https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg?w=1024&h=1024 1024w, https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg?w=2048&h=2048 2048w, https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg?w=150&h=150 150w, https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg?w=300&h=300 300w, https://jacksgrub.files.wordpress.com/2015/06/img_0172.jpg?w=768&h=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="ea4d944b-e112-4a1b"></a></p>
<p data-webtasks-id="f328faeb-f192-4aa6">Then blend the mixture together, and add the pepper, along with the olives and the rest of the tomatoes.</p>
<p data-webtasks-id="519bb22d-b072-4d94"><a href="https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg" data-webtasks-id="c81ab48a-7877-4af2"><img decoding="async" width="2240" height="1600" data-attachment-id="141" data-permalink="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/img_0175-2/" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg" data-orig-size="2240,1600" data-comments-opened="1" data-image-meta="{"aperture":"2.4","credit":"","camera":"iPhone 5","caption":"","created_timestamp":"1418671732","copyright":"","focal_length":"4.12","iso":"400","shutter_speed":"0.066666666666667","title":"","orientation":"1"}" data-image-title="IMG_0175" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg?w=1024" class="aligncenter wp-image-141 size-large" src="https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg?w=1024&h=731" alt="Tomatoes, Peppers and Olives" srcset="https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg?w=1024&h=731 1024w, https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg?w=2048&h=1462 2048w, https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg?w=150&h=107 150w, https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg?w=300&h=214 300w, https://jacksgrub.files.wordpress.com/2015/06/img_01751.jpg?w=768&h=549 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="5d248e65-161f-44f8"></a></p>
<p data-webtasks-id="6e2c104c-7cfa-463f">Add the dried herbs, then let it cook for another hour, the secret is in the long cooking, so be patient. Fry your frankfurters off at this time as well.</p>
<p data-webtasks-id="90b415e1-97c3-43c2"><a href="https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg" data-webtasks-id="e4d472bc-9ab0-4e74"><img decoding="async" width="3264" height="2448" data-attachment-id="135" data-permalink="https://jacksfoodblog.com/?attachment_id=135" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg" data-orig-size="3264,2448" data-comments-opened="1" data-image-meta="{"aperture":"2.4","credit":"","camera":"iPhone 5","caption":"","created_timestamp":"1418675196","copyright":"","focal_length":"4.12","iso":"640","shutter_speed":"0.066666666666667","title":"","orientation":"1"}" data-image-title="IMG_0177" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg?w=1024" class="aligncenter wp-image-135 size-large" src="https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg?w=1024&h=768" alt="Sauce with Dried Herbs and Frankfurters" srcset="https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg?w=1024&h=768 1024w, https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg?w=2048&h=1536 2048w, https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg?w=150&h=113 150w, https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg?w=300&h=225 300w, https://jacksgrub.files.wordpress.com/2015/06/img_0177.jpg?w=768&h=576 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="7e4e5dac-5cab-4ac2"></a></p>
<p data-webtasks-id="240f5f4a-7fbc-41c6">Add salt and pepper and see how it tastes, a bit of parmesan tastes lovely when mixed in as well. Finally, turn off the heat and put the mozzarella on the sauce, but don’t mix it or you’ll just get a stringy mess.</p>
<p data-webtasks-id="1407852d-ec3f-44ab">I know it can be frowned upon to put cheddar on pasta sauce, but it goes well with this, as does, parmesan.</p>
<p data-webtasks-id="76dfbd20-b51b-4344"><a href="https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg" data-webtasks-id="ad73bc1c-127a-4333"><img decoding="async" width="3264" height="2448" data-attachment-id="139" data-permalink="https://jacksfoodblog.com/?attachment_id=139" data-orig-file="https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg" data-orig-size="3264,2448" data-comments-opened="1" data-image-meta="{"aperture":"2.4","credit":"","camera":"iPhone 5","caption":"","created_timestamp":"1418676080","copyright":"","focal_length":"4.12","iso":"400","shutter_speed":"0.05","title":"","orientation":"1"}" data-image-title="IMG_0183" data-image-description="" data-image-caption="" data-medium-file="https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg?w=300" data-large-file="https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg?w=1024" class=" wp-image-139 size-large aligncenter" src="https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg?w=1024&h=768" alt="Pasta and sauce in bowl" srcset="https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg?w=1024&h=768 1024w, https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg?w=2048&h=1536 2048w, https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg?w=150&h=113 150w, https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg?w=300&h=225 300w, https://jacksgrub.files.wordpress.com/2015/06/img_0183.jpg?w=768&h=576 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-webtasks-id="6becfc81-21f8-4faf"></a></p>
<p data-webtasks-id="26b0c98e-b456-4891">For another hearty one-pot dish, try my <a href="https://jacksgrub.wordpress.com/2015/06/07/moroccan-chicken-recipe/" data-webtasks-id="3cbe9b11-8a6d-4294">Moroccan Chicken recipe</a>. Crammed full of lemon, coriander and olives, it’s a delicious and very different type of meal.</p>
<p data-webtasks-id="82ba12d4-4eed-49c2">Also, my <a href="https://jacksfoodblog.com/2016/03/29/chicken-and-chorizo-jambalaya-recipe/" data-webtasks-id="0f891fdf-8fd0-4b0b">Chorizo Chicken Jambalaya recipe</a> is to be missed at your peril.</p>
<div id="atatags-931956131-64a3e7c942012" data-adtags-width="650" data-webtasks-id="c6e36676-eda0-4e5c" style="display:block;height:272px;margin:0 auto;overflow:hidden;padding:0;width:300px;"><div style="font:10px 'Open Sans', Arial, sans-serif;height:12px;margin:0;padding:0;text-align:left;" data-webtasks-id="a9aa87d9-18a1-4143">Advertisements</div><div style="height:250px;width:300px;" class="ata-slot-container-wrapper" data-webtasks-id="0a71b1f6-fd70-47a3">
<div style="height:100%;width:100%;" class="ata-slot-container" data-webtasks-id="6e9c6d79-98f8-4ed2">
<div style="height:100%;margin:0;overflow:hidden;padding:0;position:relative;width:100%;" class="ata-frame-wrapper" data-webtasks-id="1cf8a1b3-af36-4d58">
<div class="user-feedback" style="position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;background:#f1f1f1;white-space:nowrap;font-family:Helvetica, Arial, sans-serif;font-size:12px;line-height:12px;box-shadow:0px 1px 2px 0px inset #999;margin:0;display:none;table-layout:fixed;letter-spacing:0.2px;z-index:5000;padding:0;" data-webtasks-id="82dc8364-bd3e-42ee">
<div style="color:#808080;font-size:10px;line-height:10px;text-align:center;margin:0;padding:0;position:absolute;top:4px;width:100%;" data-webtasks-id="4a9a8038-418c-4ab8">Powered by wordads.co</div>
<div style="box-sizing:border-box;padding:5px;text-align:center;display:table-cell;vertical-align:middle;margin:0;width:100%;" data-webtasks-id="e228b521-b996-4cef">
<div style="color:#404040;margin:8px 0 0 0;white-space:normal;display:none;text-align:center;padding:0;line-height:12px;" class="user-feedback__thank-message" data-webtasks-id="cd23df4d-b48a-4225">
<div style="font-weight:bold;text-align:center;line-height:12px;" data-webtasks-id="b1922de8-71d1-4af3">We've received your report.</div>
<br data-webtasks-id="89ad005e-5176-492a">
Thanks for your feedback!
</div>
<a class="user-feedback__reason" data-reason-id="1" style="border-radius:2px;position:relative;overflow:hidden;display:block;padding:1px 5px;width:110px;height:40px;border:none;background-color:#FFFFFF;cursor:pointer;box-sizing:border-box;margin:8px auto 0;color:#404040;font-weight:normal;text-decoration:none;;" data-webtasks-id="cee73db5-9c89-46d5">
<div style="width:100%;height:100%;display:table;text-align:center;margin:0;padding:0;" data-webtasks-id="8e9eab4d-1144-48fb">
<span style="vertical-align:middle;display:table-cell;text-align:center;line-height:14px;white-space:normal;margin:0;padding:0;" data-webtasks-id="7c1ecb8a-2c77-43fc">Seen too often</span>
</div>
</a><a class="user-feedback__reason" data-reason-id="2" style="border-radius:2px;position:relative;overflow:hidden;display:block;padding:1px 5px;width:110px;height:40px;border:none;background-color:#FFFFFF;cursor:pointer;box-sizing:border-box;margin:8px auto 0;color:#404040;font-weight:normal;text-decoration:none;;" data-webtasks-id="feb65df2-a462-49dd">
<div style="width:100%;height:100%;display:table;text-align:center;margin:0;padding:0;" data-webtasks-id="430ff8e8-de5e-4597">
<span style="vertical-align:middle;display:table-cell;text-align:center;line-height:14px;white-space:normal;margin:0;padding:0;" data-webtasks-id="555c9632-02bf-45a6">Not relevant</span>
</div>
</a><a class="user-feedback__reason" data-reason-id="3" style="border-radius:2px;position:relative;overflow:hidden;display:block;padding:1px 5px;width:110px;height:40px;border:none;background-color:#FFFFFF;cursor:pointer;box-sizing:border-box;margin:8px auto 0;color:#404040;font-weight:normal;text-decoration:none;;" data-webtasks-id="b2b0e973-4905-49fb">
<div style="width:100%;height:100%;display:table;text-align:center;margin:0;padding:0;" data-webtasks-id="19fdb515-c8c8-42eb">
<span style="vertical-align:middle;display:table-cell;text-align:center;line-height:14px;white-space:normal;margin:0;padding:0;" data-webtasks-id="1c4697a3-fc9c-4656">Offensive</span>
</div>
</a><a class="user-feedback__reason" data-reason-id="4" style="border-radius:2px;position:relative;overflow:hidden;display:block;padding:1px 5px;width:110px;height:40px;border:none;background-color:#FFFFFF;cursor:pointer;box-sizing:border-box;margin:8px auto 0;color:#404040;font-weight:normal;text-decoration:none;;" data-webtasks-id="b726dfbb-7430-4cff">
<div style="width:100%;height:100%;display:table;text-align:center;margin:0;padding:0;" data-webtasks-id="2f3c29d2-a729-474a">
<span style="vertical-align:middle;display:table-cell;text-align:center;line-height:14px;white-space:normal;margin:0;padding:0;" data-webtasks-id="aa75eafb-19f4-40a7">Broken</span>
</div>
</a>
</div>
</div>
<iframe id="atatags-931956131-64a3e7c942012_iframe" frameborder="0" scrolling="no" src="about:blank" style="border:none;height:250px;margin:0;overflow:hidden;width:300px;" class="ata-frame" data-webtasks-id="2a659fa9-2135-4dd5"></iframe>
</div>
</div>
</div><div id="atatags-931956131-64a3e7c942012__controls" class="ata-controls" style="height:10px;line-height:10px;margin:0;padding:0;text-align:right;width:300px;" data-webtasks-id="5eae2734-3a8e-48bf"><span id="atatags-931956131-64a3e7c942012__complain-btn" class="ata-controls__complain-btn" style="color:#c8c7cc;cursor:pointer;font-family:Verdana, sans-serif;font-size:6px;letter-spacing:0.3px;text-transform:uppercase;vertical-align:middle;float:right;" data-webtasks-id="3e76e001-c146-4d17">Report this ad</span></div></div>
<script data-webtasks-id="fd1f4109-3aa1-4887">
__ATA.cmd.push(function() {
__ATA.initDynamicSlot({
id: 'atatags-931956131-64a3e7c942012',
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="f895141d-7920-43b0"><div class="sharedaddy sd-sharing-enabled" data-webtasks-id="b0eacdbd-6348-475d"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing" data-webtasks-id="8a3f51e5-4098-4e2c"><h3 class="sd-title" data-webtasks-id="8ca26cf5-83ec-4f81">Share this:</h3><div class="sd-content" data-webtasks-id="c3b408ce-c60e-40e1"><ul data-sharing-events-added="true" data-webtasks-id="e34b18ab-7dd7-4186"><li class="share-twitter" data-webtasks-id="335aa9d7-f4ab-4a58"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-140" class="share-twitter sd-button share-icon" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter" data-webtasks-id="541e120e-075a-4fc4"><span data-webtasks-id="e680b674-41aa-4d86">Twitter</span></a></li><li class="share-facebook" data-webtasks-id="eabe0d57-661c-48d7"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-140" class="share-facebook sd-button share-icon" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook" data-webtasks-id="8a3d6323-8d38-439f"><span data-webtasks-id="5fa61b49-e0e7-4500">Facebook</span></a></li><li class="share-end" data-webtasks-id="19dbd875-4f68-43a4"></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-140-64a3e7c943a58" data-src="//widgets.wp.com/likes/index.html?ver=20230309#blog_id=93195613&post_id=140&origin=jacksgrub.wordpress.com&obj_id=93195613-140-64a3e7c943a58&domain=jacksfoodblog.com" data-name="like-post-frame-93195613-140-64a3e7c943a58" data-title="Like or Reblog" data-webtasks-id="670f573a-c190-4958"><h3 class="sd-title" data-webtasks-id="22823bff-7c8f-4a6d">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;" data-webtasks-id="87c5768f-e8c8-41e0"><span class="button" data-webtasks-id="95e5bdb9-6c67-49b8"><span data-webtasks-id="9c96e965-d634-4909">Like</span></span> <span class="loading" data-webtasks-id="d97d2b87-1c46-4358">Loading…</span></div><iframe class="post-likes-widget jetpack-likes-widget" name="like-post-frame-93195613-140-64a3e7c943a58" src="//widgets.wp.com/likes/index.html?ver=20230309#blog_id=93195613&post_id=140&origin=jacksgrub.wordpress.com&obj_id=93195613-140-64a3e7c943a58&domain=jacksfoodblog.com" height="55px" width="100%" frameborder="0" scrolling="no" title="Like or Reblog" data-webtasks-id="1234a92a-8a90-4f77"></iframe><span class="sd-text-color" data-webtasks-id="d82362b2-5a3c-43b0"></span><a class="sd-link-color" data-webtasks-id="7e5d2a32-fb63-46ea"></a></div></div></div>
<div class="wp-block-template-part" data-webtasks-id="a0b6293f-3f4c-4c18"></div></main>
<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained" style="margin-bottom:60px" data-webtasks-id="e5cda53c-d14d-4f10">
<div style="height:60px" aria-hidden="true" class="wp-block-spacer" data-webtasks-id="e2af2afe-a7d6-478c"></div>
<div class="wp-block-post-comments wp-block-comments" data-webtasks-id="2449d8ff-3432-4466">
<!-- You can start editing here. -->
<h3 id="comments" data-webtasks-id="d90f86f5-47e7-450b">
5 responses to “Tomato and Chilli Batch Pasta Sauce Recipe” </h3>
<div class="navigation" data-webtasks-id="292969ad-aa69-4a3b">
<div class="alignleft" data-webtasks-id="c7a2e247-2278-4b67"></div>
<div class="alignright" data-webtasks-id="47343ec4-473c-466a"></div>
</div>
<ol class="commentlist" data-webtasks-id="51b2fe24-c856-41ec">
<li id="comment-7" class="comment byuser comment-author-rantingchef even thread-even depth-1 highlander-comment" data-webtasks-id="8177c89c-6528-47fb">
<article id="div-comment-7" class="comment-body" data-webtasks-id="45887163-f744-4768">
<footer class="comment-meta" data-webtasks-id="1ea15296-4a70-4b76">
<div class="comment-author vcard" data-webtasks-id="f650e6c4-8235-41ea">
<img alt="" src="https://1.gravatar.com/avatar/d16d374d23e8d7c2d4b46669a3a6151b6c05695eb258348080a1f0059a7753bc?s=32&d=identicon&r=G" srcset="https://1.gravatar.com/avatar/d16d374d23e8d7c2d4b46669a3a6151b6c05695eb258348080a1f0059a7753bc?s=32&d=identicon&r=G 1x, https://1.gravatar.com/avatar/d16d374d23e8d7c2d4b46669a3a6151b6c05695eb258348080a1f0059a7753bc?s=48&d=identicon&r=G 1.5x, https://1.gravatar.com/avatar/d16d374d23e8d7c2d4b46669a3a6151b6c05695eb258348080a1f0059a7753bc?s=64&d=identicon&r=G 2x, https://1.gravatar.com/avatar/d16d374d23e8d7c2d4b46669a3a6151b6c05695eb258348080a1f0059a7753bc?s=96&d=identicon&r=G 3x, https://1.gravatar.com/avatar/d16d374d23e8d7c2d4b46669a3a6151b6c05695eb258348080a1f0059a7753bc?s=128&d=identicon&r=G 4x" class="avatar avatar-32 grav-hashed grav-hijack" height="32" width="32" loading="lazy" decoding="async" id="grav-d16d374d23e8d7c2d4b46669a3a6151b6c05695eb258348080a1f0059a7753bc-0" data-webtasks-id="c6cd0103-d8b4-4920"> <b class="fn" data-webtasks-id="54ab086a-be2b-4bf2"><a href="http://rantingchef.wordpress.com" class="url" rel="ugc external nofollow" data-webtasks-id="29cd6480-d9fd-4e7a">The Ranting Chef</a></b> <span class="says" data-webtasks-id="fc135c85-8419-4df2">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata" data-webtasks-id="6041dea5-da79-45d7">
<a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/#comment-7" data-webtasks-id="a3934c24-c094-45bb"><time datetime="2015-06-27T18:30:35+01:00" data-webtasks-id="b6e782c3-0342-4491">June 27, 2015 at 6:30 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content" data-webtasks-id="78c49d04-7814-4e5f">
<p data-webtasks-id="dc47f68d-be4f-4946">As a fellow food blogger you may want to check out a cooking competition I am hosting. I just issued a call for entrants and think you might be a good candidate. Take a look at it over at rantingchef dot com.</p>
<p id="comment-like-7" data-liked="comment-not-liked" class="comment-likes comment-not-liked" data-webtasks-id="00df614f-145f-45c6"><a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?like_comment=7&_wpnonce=cc9f179c70" class="comment-like-link needs-login" rel="nofollow" data-blog="93195613" data-webtasks-id="b6d38b8d-25f9-46e5"><span data-webtasks-id="327628b5-b738-42da">Like</span></a><span id="comment-like-count-7" class="comment-like-feedback" data-webtasks-id="cf30b955-9cc0-4ace">Like</span></p>
</div><!-- .comment-content -->
<div class="reply" data-webtasks-id="a901f366-358b-4f6a"><a rel="nofollow" class="comment-reply-link" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?replytocom=7#respond" data-commentid="7" data-postid="140" data-belowelement="div-comment-7" data-respondelement="respond" data-replyto="Reply to The Ranting Chef" aria-label="Reply to The Ranting Chef" data-webtasks-id="7274592b-140e-41a4">Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-8" class="comment byuser comment-author-tonyandalbas odd alt thread-odd thread-alt depth-1 highlander-comment" data-webtasks-id="fe36dde4-5087-47b4">
<article id="div-comment-8" class="comment-body" data-webtasks-id="f4a94867-e557-47de">
<footer class="comment-meta" data-webtasks-id="b50928c0-d2b0-438d">
<div class="comment-author vcard" data-webtasks-id="36ffdb80-c339-4276">
<img alt="" src="https://0.gravatar.com/avatar/f34a0413315563d00cb7406681a5bd5c5731767f68a53418317b7d071c995d12?s=32&d=identicon&r=G" srcset="https://0.gravatar.com/avatar/f34a0413315563d00cb7406681a5bd5c5731767f68a53418317b7d071c995d12?s=32&d=identicon&r=G 1x, https://0.gravatar.com/avatar/f34a0413315563d00cb7406681a5bd5c5731767f68a53418317b7d071c995d12?s=48&d=identicon&r=G 1.5x, https://0.gravatar.com/avatar/f34a0413315563d00cb7406681a5bd5c5731767f68a53418317b7d071c995d12?s=64&d=identicon&r=G 2x, https://0.gravatar.com/avatar/f34a0413315563d00cb7406681a5bd5c5731767f68a53418317b7d071c995d12?s=96&d=identicon&r=G 3x, https://0.gravatar.com/avatar/f34a0413315563d00cb7406681a5bd5c5731767f68a53418317b7d071c995d12?s=128&d=identicon&r=G 4x" class="avatar avatar-32 grav-hashed grav-hijack" height="32" width="32" loading="lazy" decoding="async" id="grav-f34a0413315563d00cb7406681a5bd5c5731767f68a53418317b7d071c995d12-0" data-webtasks-id="ad8b5732-6cfe-4fb1"> <b class="fn" data-webtasks-id="8fb52b3b-4923-438f"><a href="http://tonyandalbaspizza.wordpress.com" class="url" rel="ugc external nofollow" data-webtasks-id="4bdc7c5a-374b-4c88">tonyandalbas</a></b> <span class="says" data-webtasks-id="14313aa3-3696-44f9">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata" data-webtasks-id="b1ab5da2-00ce-4729">
<a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/#comment-8" data-webtasks-id="8c51775d-42e8-4350"><time datetime="2015-06-28T23:46:00+01:00" data-webtasks-id="c8e75b55-795d-4a8a">June 28, 2015 at 11:46 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content" data-webtasks-id="cd060eeb-66bf-4fb7">
<p data-webtasks-id="680fdbd8-9787-423f">Looks pretty good! I must say I love experimenting with my sauces when I am not working at my <a href="http://www.tonyandalbaspizza.com" rel="nofollow" data-webtasks-id="2ac9bd46-3239-4a1a">pasta restaurant</a>. Will try this out, thanks for sharing!</p>
<p id="comment-like-8" data-liked="comment-not-liked" class="comment-likes comment-not-liked" data-webtasks-id="f7c0f930-065d-427f"><a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?like_comment=8&_wpnonce=01b18f6d82" class="comment-like-link needs-login" rel="nofollow" data-blog="93195613" data-webtasks-id="85144646-21e6-41f5"><span data-webtasks-id="08afc48e-f697-496a">Like</span></a><span id="comment-like-count-8" class="comment-like-feedback" data-webtasks-id="862304d2-e582-4376">Like</span></p>
</div><!-- .comment-content -->
<div class="reply" data-webtasks-id="4735d4e2-05bd-4092"><a rel="nofollow" class="comment-reply-link" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?replytocom=8#respond" data-commentid="8" data-postid="140" data-belowelement="div-comment-8" data-respondelement="respond" data-replyto="Reply to tonyandalbas" aria-label="Reply to tonyandalbas" data-webtasks-id="8dab77ba-ad45-4142">Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-20" class="pingback even thread-even depth-1 highlander-comment" data-webtasks-id="3fd07246-28ff-419c">
<article id="div-comment-20" class="comment-body" data-webtasks-id="29a78ed3-ae92-4bd5">
<footer class="comment-meta" data-webtasks-id="b8c2653d-f514-4d1c">
<div class="comment-author vcard" data-webtasks-id="4cfab3dc-15f3-47fd">
<img alt="" src="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=32" srcset="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=32 1x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=48 1.5x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=64 2x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=96 3x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=128 4x" class="avatar avatar-32" height="32" width="32" loading="lazy" decoding="async" data-webtasks-id="854b0ee2-f827-4ef5"> <b class="fn" data-webtasks-id="4ab654a7-a519-436e"><a href="https://jacksgrub.wordpress.com/2015/06/07/moroccan-chicken-recipe/" class="url" rel="ugc external nofollow" data-webtasks-id="80eea534-f994-427b">Moroccan Chicken Recipe – Jack's Grub</a></b> <span class="says" data-webtasks-id="8c2d81ee-e569-4b8b">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata" data-webtasks-id="94b0b3b2-3255-4cbe">
<a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/#comment-20" data-webtasks-id="cc8bb180-cb7a-465a"><time datetime="2016-03-27T19:13:30+01:00" data-webtasks-id="539e3bc1-5696-4fd0">March 27, 2016 at 7:13 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content" data-webtasks-id="bad1b9e3-0a5d-40a7">
<p data-webtasks-id="c63030b1-5b1f-4f1f">[…] Makalli, actually’. If this is your first time on Jack’s Grub, be sure to check out my signature recipe – an Italian-styled pasta sauce which has taken literally years to […]</p>
<p id="comment-like-20" data-liked="comment-not-liked" class="comment-likes comment-not-liked" data-webtasks-id="6fe9a640-b3e7-4efd"><a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?like_comment=20&_wpnonce=40b492f54d" class="comment-like-link needs-login" rel="nofollow" data-blog="93195613" data-webtasks-id="2a84d763-e863-4f33"><span data-webtasks-id="03645765-00e9-4830">Like</span></a><span id="comment-like-count-20" class="comment-like-feedback" data-webtasks-id="81014518-a38b-46a3">Like</span></p>
</div><!-- .comment-content -->
<div class="reply" data-webtasks-id="269e73b6-40ab-4697"><a rel="nofollow" class="comment-reply-link" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?replytocom=20#respond" data-commentid="20" data-postid="140" data-belowelement="div-comment-20" data-respondelement="respond" data-replyto="Reply to Moroccan Chicken Recipe – Jack's Grub" aria-label="Reply to Moroccan Chicken Recipe – Jack's Grub" data-webtasks-id="e8420bc8-81f9-414f">Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-21" class="pingback odd alt thread-odd thread-alt depth-1 highlander-comment" data-webtasks-id="78e02d2c-8794-4d41">
<article id="div-comment-21" class="comment-body" data-webtasks-id="a624bb88-ef28-446d">
<footer class="comment-meta" data-webtasks-id="8a2b68c2-fe5b-4250">
<div class="comment-author vcard" data-webtasks-id="a60cfbe8-405e-4162">
<img alt="" src="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=32" srcset="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=32 1x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=48 1.5x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=64 2x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=96 3x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=128 4x" class="avatar avatar-32" height="32" width="32" loading="lazy" decoding="async" data-webtasks-id="bdbfc2b5-b73d-4020"> <b class="fn" data-webtasks-id="633cb5ca-4a7f-4c9a"><a href="https://jacksgrub.wordpress.com/2016/01/24/steak-and-ale-pie-recipe/" class="url" rel="ugc external nofollow" data-webtasks-id="df1f1304-5fa8-460d">Steak and Ale Pie Recipe – Jack's Grub</a></b> <span class="says" data-webtasks-id="8caa77d8-bf98-438f">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata" data-webtasks-id="f1424bb9-1a60-4c94">
<a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/#comment-21" data-webtasks-id="b8b489ca-472e-4566"><time datetime="2016-03-27T19:17:01+01:00" data-webtasks-id="4ecc4bc8-1b08-4722">March 27, 2016 at 7:17 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content" data-webtasks-id="e9cbcbd3-f16b-4ff1">
<p data-webtasks-id="9150c023-4b00-4b8c">[…] on Jack’s Grub, welcome! Should you be on the look out for other recipes, best to start with my original pasta sauce. It’s a recipe I spent years perfecting and am sure you’ll […]</p>
<p id="comment-like-21" data-liked="comment-not-liked" class="comment-likes comment-not-liked" data-webtasks-id="b330ec12-ea92-4e31"><a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?like_comment=21&_wpnonce=99118ed795" class="comment-like-link needs-login" rel="nofollow" data-blog="93195613" data-webtasks-id="b4edd458-8298-4e7b"><span data-webtasks-id="d71c8477-54a8-4645">Like</span></a><span id="comment-like-count-21" class="comment-like-feedback" data-webtasks-id="6fa79b4c-8ae4-4e09">Like</span></p>
</div><!-- .comment-content -->
<div class="reply" data-webtasks-id="6ced686b-d2d2-4e22"><a rel="nofollow" class="comment-reply-link" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?replytocom=21#respond" data-commentid="21" data-postid="140" data-belowelement="div-comment-21" data-respondelement="respond" data-replyto="Reply to Steak and Ale Pie Recipe – Jack's Grub" aria-label="Reply to Steak and Ale Pie Recipe – Jack's Grub" data-webtasks-id="1b348a4a-ba21-4c2c">Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-22" class="pingback even thread-even depth-1 highlander-comment" data-webtasks-id="766b0c56-5b7b-44c1">
<article id="div-comment-22" class="comment-body" data-webtasks-id="75343699-0e91-4483">
<footer class="comment-meta" data-webtasks-id="9545a27b-ecb9-4241">
<div class="comment-author vcard" data-webtasks-id="e440306e-87cd-4da5">
<img alt="" src="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=32" srcset="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=32 1x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=48 1.5x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=64 2x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=96 3x, https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=128 4x" class="avatar avatar-32" height="32" width="32" loading="lazy" decoding="async" data-webtasks-id="be7cd26b-15f9-455c"> <b class="fn" data-webtasks-id="839c7af3-0d72-468e"><a href="https://jacksgrub.wordpress.com/2016/03/29/chicken-and-chorizo-jambalaya-recipe/" class="url" rel="ugc external nofollow" data-webtasks-id="cdbff13f-1825-4bfe">Chicken and Chorizo Jambalaya Recipe – Jack's Grub</a></b> <span class="says" data-webtasks-id="9def7aa0-fd94-4d48">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata" data-webtasks-id="b27e6bac-bdd7-458b">
<a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/#comment-22" data-webtasks-id="a416c5f5-9b87-499f"><time datetime="2016-03-29T18:41:04+01:00" data-webtasks-id="63408a6e-be63-41ab">March 29, 2016 at 6:41 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content" data-webtasks-id="eb6e26a5-8677-4c87">
<p data-webtasks-id="857d6361-4d68-484c">[…] for reading! If you like a one-pot dish, can I also recommend my original pasta sauce and Moroccan chicken recipes, and it goes without saying, I’d love a follow […]</p>
<p id="comment-like-22" data-liked="comment-not-liked" class="comment-likes comment-not-liked" data-webtasks-id="9f5f2c35-609a-4ade"><a href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?like_comment=22&_wpnonce=da3429a3b8" class="comment-like-link needs-login" rel="nofollow" data-blog="93195613" data-webtasks-id="7e924eea-5fdb-402e"><span data-webtasks-id="53246019-ad70-4fa1">Like</span></a><span id="comment-like-count-22" class="comment-like-feedback" data-webtasks-id="041ba95c-d9a5-49ae">Like</span></p>
</div><!-- .comment-content -->
<div class="reply" data-webtasks-id="c209261d-9eee-4c75"><a rel="nofollow" class="comment-reply-link" href="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/?replytocom=22#respond" data-commentid="22" data-postid="140" data-belowelement="div-comment-22" data-respondelement="respond" data-replyto="Reply to Chicken and Chorizo Jambalaya Recipe – Jack's Grub" aria-label="Reply to Chicken and Chorizo Jambalaya Recipe – Jack's Grub" data-webtasks-id="e1b1b0a0-0e82-4e7e">Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol>
<div class="navigation" data-webtasks-id="25ad1f5f-d6b5-409e">
<div class="alignleft" data-webtasks-id="3e9bce17-b88a-411a"></div>
<div class="alignright" data-webtasks-id="5868b9e1-5d1c-4e34"></div>
</div>
<div id="respond" class="comment-respond js" data-webtasks-id="62cf5f76-7ed9-4df0">
<h3 id="reply-title" class="comment-reply-title" data-webtasks-id="23fedcf9-0ad8-460f">Leave a Reply <small data-webtasks-id="5859dd97-2788-4bae"><a rel="nofollow" id="cancel-comment-reply-link" href="/2015/06/27/tomato-chilli-pasta-sauce-recipe/#respond" style="display:none;" data-webtasks-id="07dc2b78-ea30-4e60">Cancel reply</a></small></h3><form action="https://jacksfoodblog.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate="" data-webtasks-id="baed84b1-c430-4098"><input type="hidden" id="highlander_comment_nonce" name="highlander_comment_nonce" value="fa5d5b2848" data-webtasks-id="ab810019-0ae2-4484"><input type="hidden" name="_wp_http_referer" value="/2015/06/27/tomato-chilli-pasta-sauce-recipe/" data-webtasks-id="c09578eb-003b-412a">
<input type="hidden" name="hc_post_as" id="hc_post_as" value="guest" data-webtasks-id="87a5a40b-47cf-4d42">
<div class="comment-form-field comment-textarea" data-webtasks-id="0756532a-e330-4b67">
<div id="comment-form-comment" data-webtasks-id="b248dee6-422e-423e"><textarea id="comment" name="comment" title="Enter your comment here..." placeholder="Enter your comment here…" style="overflow: hidden; overflow-wrap: break-word; resize: none; height: 38px;" data-webtasks-id="8e682e05-2cbc-4c60"></textarea></div>
</div>
<div id="comment-form-identity" style="display: none;" data-webtasks-id="efbafbdf-b4df-4f33">
<div id="comment-form-nascar" data-webtasks-id="45f314f2-bf08-4bd1">
<p data-webtasks-id="7cbf4c14-33e5-4151">Fill in your details below or click an icon to log in:</p>
<ul data-webtasks-id="8add1a10-c0c8-4305">
<li class="selected" style="display:none;" data-webtasks-id="67bd9716-818e-4fec">
<a href="#comment-form-guest" id="postas-guest" class="nascar-signin-link" title="Login via Guest" data-webtasks-id="abbb3251-da26-4ff7">
</a>
</li>
<li data-webtasks-id="da485ee4-a9df-4b87">
<a href="#comment-form-load-service:WordPress.com" id="postas-wordpress" class="nascar-signin-link" title="Login via WordPress.com" data-webtasks-id="bb788e59-2d83-4225">
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" data-webtasks-id="f85a1237-6d8f-4001"><rect x="0" fill="none" width="24" height="24" data-webtasks-id="8d2abe70-79f2-47c7"></rect><g data-webtasks-id="f3040367-1d46-41e8"><path fill="#0087be" d="M12.158 12.786l-2.698 7.84c.806.236 1.657.365 2.54.365 1.047 0 2.05-.18 2.986-.51-.024-.037-.046-.078-.065-.123l-2.762-7.57zM3.008 12c0 3.56 2.07 6.634 5.068 8.092L3.788 8.342c-.5 1.117-.78 2.354-.78 3.658zm15.06-.454c0-1.112-.398-1.88-.74-2.48-.456-.74-.883-1.368-.883-2.11 0-.825.627-1.595 1.51-1.595.04 0 .078.006.116.008-1.598-1.464-3.73-2.36-6.07-2.36-3.14 0-5.904 1.613-7.512 4.053.21.008.41.012.58.012.94 0 2.395-.114 2.395-.114.484-.028.54.684.057.74 0 0-.487.058-1.03.086l3.275 9.74 1.968-5.902-1.4-3.838c-.485-.028-.944-.085-.944-.085-.486-.03-.43-.77.056-.742 0 0 1.484.114 2.368.114.94 0 2.397-.114 2.397-.114.486-.028.543.684.058.74 0 0-.488.058-1.03.086l3.25 9.665.897-2.997c.456-1.17.684-2.137.684-2.907zm1.82-3.86c.04.286.06.593.06.924 0 .912-.17 1.938-.683 3.22l-2.746 7.94c2.672-1.558 4.47-4.454 4.47-7.77 0-1.564-.4-3.033-1.1-4.314zM12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z" data-webtasks-id="eda866e7-603c-4be4"></path></g></svg> </a>
</li>
<li data-webtasks-id="dc80fed6-19c1-475a">
<a href="#comment-form-load-service:Facebook" id="postas-facebook" class="nascar-signin-link" title="Login via Facebook" data-webtasks-id="f8fd9f70-a8d3-4282">
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" data-webtasks-id="53ff40c4-3d9f-4fad"><rect x="0" fill="none" width="24" height="24" data-webtasks-id="3072021a-93cd-4348"></rect><g data-webtasks-id="037c687e-319f-485a"><path fill="#3B5998" d="M20.007 3H3.993C3.445 3 3 3.445 3 3.993v16.013c0 .55.445.994.993.994h8.62v-6.97H10.27V11.31h2.346V9.31c0-2.325 1.42-3.59 3.494-3.59.993 0 1.847.073 2.096.106v2.43h-1.438c-1.128 0-1.346.537-1.346 1.324v1.734h2.69l-.35 2.717h-2.34V21h4.587c.548 0 .993-.445.993-.993V3.993c0-.548-.445-.993-.993-.993z" data-webtasks-id="5304a3e5-ee8b-429a"></path></g></svg> </a>
</li>
</ul>
</div>
<div id="comment-form-guest" class="comment-form-service selected" data-webtasks-id="ac7d29c9-18d9-4ff4">
<div class="comment-form-padder" data-webtasks-id="3c40d889-0c13-423a">
<div class="comment-form-avatar" data-webtasks-id="213a7baf-8785-4e02">
<a href="https://gravatar.com/site/signup/" target="_blank" data-webtasks-id="cfccc809-fb5a-404c"> <img src="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=identicon&forcedefault=y&r=G" srcset="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=identicon&forcedefault=y&r=G 1x, https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=38&d=identicon&forcedefault=y&r=G 1.5x, https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=50&d=identicon&forcedefault=y&r=G 2x, https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=75&d=identicon&forcedefault=y&r=G 3x, https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=100&d=identicon&forcedefault=y&r=G 4x" alt="Gravatar" width="25" class="no-grav grav-hashed" id="grav-ad516503a11cd5ca435acc9bb6523536-0" data-webtasks-id="c28a0cdc-02d1-4a44">
</a> </div>
<div class="comment-form-fields" data-webtasks-id="c6fd06e4-30d9-4cef">
<div class="comment-form-field comment-form-email" data-webtasks-id="79cfb5d6-07fd-4c6b">
<label for="email" data-webtasks-id="d0315bc0-b5cc-40db">Email <span class="required" data-webtasks-id="43b4df85-763a-4058">(required)</span> <span class="nopublish" data-webtasks-id="fe36fd7e-cb03-4b9c">(Address never made public)</span></label>
<div class="comment-form-input" data-webtasks-id="fed3ab27-fac3-4551"><input id="email" name="email" type="email" value="" data-webtasks-id="248624af-13cf-4a25"></div>
</div>
<div class="comment-form-field comment-form-author" data-webtasks-id="54b419e3-c138-4e3e">
<label for="author" data-webtasks-id="46f204c3-1d8b-4a0d">Name <span class="required" data-webtasks-id="9bac72c1-bac6-4fb5">(required)</span></label>
<div class="comment-form-input" data-webtasks-id="01f67238-4390-4d50"><input id="author" name="author" type="text" value="" data-webtasks-id="45b071d7-8cdf-484c"></div>
</div>
<div class="comment-form-field comment-form-url" data-webtasks-id="11ed43f6-0bb4-4ef4">
<label for="url" data-webtasks-id="ca2c95b5-0c69-463c">Website</label>
<div class="comment-form-input" data-webtasks-id="cf6f74ca-7f5d-465c"><input id="url" name="url" type="url" value="" data-webtasks-id="88efb112-6d07-425f"></div>
</div>
</div>
</div>
</div>
<div id="comment-form-wordpress" class="comment-form-service" data-webtasks-id="afe1ff9b-98ed-47a9">
<div class="comment-form-padder" data-webtasks-id="f7fb6df4-aea3-4af1">
<div class="comment-form-avatar" data-webtasks-id="6c288e8d-580a-432f">
<img src="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=identicon&forcedefault=y&r=G" srcset="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=identicon&forcedefault=y&r=G 1x, https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=38&d=identicon&forcedefault=y&r=G 1.5x, https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=50&d=identicon&forcedefault=y&r=G 2x, https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=75&d=identicon&forcedefault=y&r=G 3x, https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=100&d=identicon&forcedefault=y&r=G 4x" alt="WordPress.com Logo" width="25" class="no-grav grav-hashed grav-hijack" id="grav-ad516503a11cd5ca435acc9bb6523536-1" data-webtasks-id="59f3013a-d9e5-402e">
</div>
<div class="comment-form-fields" data-webtasks-id="257ae8e8-e8d3-4117">
<input type="hidden" name="wp_avatar" id="wordpress-avatar" class="comment-meta-wordpress" value="" data-webtasks-id="7655527b-bc16-4552">
<input type="hidden" name="wp_user_id" id="wordpress-user_id" class="comment-meta-wordpress" value="" data-webtasks-id="599eec26-958e-439f">
<input type="hidden" name="wp_access_token" id="wordpress-access_token" class="comment-meta-wordpress" value="" data-webtasks-id="13d915cd-f8c3-4b89">
<p class="comment-form-posting-as pa-wordpress" data-webtasks-id="e33fc6ab-6654-4735">
<strong data-webtasks-id="067acf7e-6a95-4bfb"></strong>
You are commenting using your WordPress.com account. <span class="comment-form-log-out" data-webtasks-id="79cda157-2ef2-4adc">
( <a href="javascript:HighlanderComments.doExternalLogout( 'wordpress' );" data-webtasks-id="1507cb17-4c5c-4969">Log Out</a> /
<a href="#" onclick="javascript:HighlanderComments.switchAccount();return false;" data-webtasks-id="20d21903-1b35-41a8">Change</a> )
</span>
<span class="pa-icon" data-webtasks-id="78b30744-3aae-4b13"><svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" data-webtasks-id="c28ce112-0f43-477f"><rect x="0" fill="none" width="24" height="24" data-webtasks-id="0ce9661c-04c1-4b85"></rect><g data-webtasks-id="de501b23-dd5a-47d8"><path fill="#0087be" d="M12.158 12.786l-2.698 7.84c.806.236 1.657.365 2.54.365 1.047 0 2.05-.18 2.986-.51-.024-.037-.046-.078-.065-.123l-2.762-7.57zM3.008 12c0 3.56 2.07 6.634 5.068 8.092L3.788 8.342c-.5 1.117-.78 2.354-.78 3.658zm15.06-.454c0-1.112-.398-1.88-.74-2.48-.456-.74-.883-1.368-.883-2.11 0-.825.627-1.595 1.51-1.595.04 0 .078.006.116.008-1.598-1.464-3.73-2.36-6.07-2.36-3.14 0-5.904 1.613-7.512 4.053.21.008.41.012.58.012.94 0 2.395-.114 2.395-.114.484-.028.54.684.057.74 0 0-.487.058-1.03.086l3.275 9.74 1.968-5.902-1.4-3.838c-.485-.028-.944-.085-.944-.085-.486-.03-.43-.77.056-.742 0 0 1.484.114 2.368.114.94 0 2.397-.114 2.397-.114.486-.028.543.684.058.74 0 0-.488.058-1.03.086l3.25 9.665.897-2.997c.456-1.17.684-2.137.684-2.907zm1.82-3.86c.04.286.06.593.06.924 0 .912-.17 1.938-.683 3.22l-2.746 7.94c2.672-1.558 4.47-4.454 4.47-7.77 0-1.564-.4-3.033-1.1-4.314zM12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z" data-webtasks-id="d353abc4-ef06-41af"></path></g></svg></span>
</p>
</div>
</div>
</div>
<div id="comment-form-facebook" class="comment-form-service" data-webtasks-id="76555ae2-ec6c-4674">
<div class="comment-form-padder" data-webtasks-id="573179de-e4d8-4800">
<div class="comment-form-avatar" data-webtasks-id="8369883c-faac-4f22">
<img src="" alt="Facebook photo" width="25" class="no-grav" data-webtasks-id="8b011d28-d73f-4f46">
</div>
<div class="comment-form-fields" data-webtasks-id="f66e7336-f076-485e">
<input type="hidden" name="fb_avatar" id="facebook-avatar" class="comment-meta-facebook" value="" data-webtasks-id="1dd584f1-773c-498f">
<input type="hidden" name="fb_user_id" id="facebook-user_id" class="comment-meta-facebook" value="" data-webtasks-id="edd3aefa-5e7b-4faa">
<input type="hidden" name="fb_access_token" id="facebook-access_token" class="comment-meta-facebook" value="" data-webtasks-id="78b26480-e8f3-461e">
<p class="comment-form-posting-as pa-facebook" data-webtasks-id="97e14da9-267a-46f3">
<strong data-webtasks-id="bbcff8d7-2549-48e9"></strong>
You are commenting using your Facebook account. <span class="comment-form-log-out" data-webtasks-id="b30444e7-347c-4ee9">
( <a href="javascript:HighlanderComments.doExternalLogout( 'facebook' );" data-webtasks-id="247cef76-ee0a-43f1">Log Out</a> /
<a href="#" onclick="javascript:HighlanderComments.switchAccount();return false;" data-webtasks-id="9f1a9567-c861-4b13">Change</a> )
</span>
<span class="pa-icon" data-webtasks-id="5ce69bfd-ee89-471c"><svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" data-webtasks-id="b3d2656e-c610-431a"><rect x="0" fill="none" width="24" height="24" data-webtasks-id="bb594904-3a00-4043"></rect><g data-webtasks-id="96bc0953-8b16-497c"><path fill="#3B5998" d="M20.007 3H3.993C3.445 3 3 3.445 3 3.993v16.013c0 .55.445.994.993.994h8.62v-6.97H10.27V11.31h2.346V9.31c0-2.325 1.42-3.59 3.494-3.59.993 0 1.847.073 2.096.106v2.43h-1.438c-1.128 0-1.346.537-1.346 1.324v1.734h2.69l-.35 2.717h-2.34V21h4.587c.548 0 .993-.445.993-.993V3.993c0-.548-.445-.993-.993-.993z" data-webtasks-id="d977903a-cc51-492e"></path></g></svg></span>
</p>
</div>
</div>
</div>
<div id="comment-form-load-service" class="comment-form-service" data-webtasks-id="de1b8f61-bde6-44ce">
<div class="comment-form-posting-as-cancel" data-webtasks-id="dd531192-c2d5-46ac"><a href="javascript:HighlanderComments.cancelExternalWindow();" data-webtasks-id="578c9d14-9e5e-4f93">Cancel</a></div>
<p data-webtasks-id="0206b46f-56f0-4e43">Connecting to %s</p>
</div>
</div>
<script type="text/javascript" data-webtasks-id="9a5bf9be-4024-473f">
var highlander_expando_javascript = function () {
function hide( sel ) {
var el = document.querySelector( sel );
if ( el ) {
el.style.setProperty( 'display', 'none' );
}
}
function show( sel ) {
var el = document.querySelector( sel );
if ( el ) {
el.style.removeProperty( 'display' );
}
}
var input = document.createElement( 'input' );
var comment = document.querySelector( '#comment' );
if ( input && comment && 'placeholder' in input ) {
var label = document.querySelector( '.comment-textarea label' );
if ( label ) {
var text = label.textContent;
label.parentNode.removeChild( label );
comment.setAttribute( 'placeholder', text );
}
}
// Expando Mode: start small, then auto-resize on first click + text length
hide( '#comment-form-identity' );
hide( '#comment-form-subscribe' );
hide( '#commentform .form-submit' );
if ( comment ) {
comment.style.height = '10px';
var handler = function () {
comment.style.height = HighlanderComments.initialHeight + 'px';
show( '#comment-form-identity' );
show( '#comment-form-subscribe' );
show( '#commentform .form-submit' );
HighlanderComments.resizeCallback();
comment.removeEventListener( 'focus', handler );
};
comment.addEventListener( 'focus', handler );
}
}
if ( document.readyState !== 'loading' ) {
highlander_expando_javascript();
} else {
document.addEventListener( 'DOMContentLoaded', highlander_expando_javascript );
}
</script>
<div id="comment-form-subscribe" style="display: none;" data-webtasks-id="c73d9615-3d91-4bec">
<p class="comment-subscription-form" data-webtasks-id="d45f8b26-6a9b-455b"><input type="checkbox" name="subscribe" id="subscribe" value="subscribe" style="width: auto;" data-webtasks-id="0c484972-6d0b-4b11"> <label class="subscribe-label" id="subscribe-label" for="subscribe" style="display: inline;" data-webtasks-id="4d8fe63a-9c9a-4b70">Notify me of new comments via email.</label></p><p class="post-subscription-form" data-webtasks-id="06dbfbfb-936b-495d"><input type="checkbox" name="subscribe_blog" id="subscribe_blog" value="subscribe" style="width: auto;" data-webtasks-id="a4fe3a2c-1561-44e6"> <label class="subscribe-label" id="subscribe-blog-label" for="subscribe_blog" style="display: inline;" data-webtasks-id="9d9446bf-84ac-4277">Notify me of new posts via email.</label></p></div>
<p class="form-submit wp-block-button" style="display: none;" data-webtasks-id="e637e372-81c2-4c14"><input name="submit" type="submit" id="comment-submit" class="submit button wp-block-button__link wp-element-button" value="Post Comment" data-webtasks-id="63c4a151-acec-40a0"> <input type="hidden" name="comment_post_ID" value="140" id="comment_post_ID" data-webtasks-id="0820d771-6350-4e02">
<input type="hidden" name="comment_parent" id="comment_parent" value="0" data-webtasks-id="0e799710-76dd-4508">
</p><p style="display: none;" data-webtasks-id="8e9793bd-7aa0-4c7e"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="694400f3d2" data-webtasks-id="e72d3591-10c5-4d72"></p>
<input type="hidden" name="genseq" value="1688463305" data-webtasks-id="187e360c-e6e5-4b86">
<p style="display: none !important;" data-webtasks-id="557a7570-6da1-4cf2"><label data-webtasks-id="f00ee199-4cc1-4e30">Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100" data-webtasks-id="f2011ad9-926d-4f33"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="1688463304823" data-webtasks-id="9617ee06-a920-436a"><script data-webtasks-id="02407d16-c8ba-4145">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div><!-- #respond -->
<div style="clear: both" data-webtasks-id="0e4697e5-6219-4c44"></div></div></div>
<footer class="wp-block-template-part" data-webtasks-id="9ab301e0-d408-400d">
<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="dc3e8515-a005-430e">
<div class="wp-block-group alignfull site-header is-content-justification-space-between is-layout-flex wp-container-21 wp-block-group-is-layout-flex" style="padding-top:var(--wp--custom--gap--vertical);padding-bottom:var(--wp--custom--gap--vertical)" data-webtasks-id="91f34b11-dcc4-4629">
<div class="wp-block-group has-tertiary-color has-text-color is-nowrap is-layout-flex wp-container-18 wp-block-group-is-layout-flex" data-webtasks-id="6d97efd6-8f9a-4690">
<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="3c424cce-273e-40bf"></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="99698c75-c9b9-4048"><ul class="wp-block-navigation__container wp-block-navigation" data-webtasks-id="21208955-4316-47c8"><li class=" wp-block-navigation-item menu-item menu-item-type-post_type menu-item-object-post wp-block-navigation-link" data-webtasks-id="e919c666-1721-4509"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/best-food-blogs/" title="" data-webtasks-id="1ecabc32-0411-4b9d"><span class="wp-block-navigation-item__label" data-webtasks-id="49495647-c6c6-4480">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="56337d41-c5fe-4246"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/recipes/" title="" data-webtasks-id="5cf4e365-39b3-4555"><span class="wp-block-navigation-item__label" data-webtasks-id="03e14d59-e38d-4690">Recipes</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link" data-webtasks-id="b1089f10-4483-4cc5"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/diet-tips-advice/" data-webtasks-id="2d1531bd-96d5-49e5"><span class="wp-block-navigation-item__label" data-webtasks-id="2f40d967-2803-48e3">Tips & Advice</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link" data-webtasks-id="f7360cef-cbab-479d"><a class="wp-block-navigation-item__content" href="https://jacksfoodblog.com/2018/10/17/portuguese-sausage-linguica-pasta-sauce/" data-webtasks-id="99564630-2d99-4798"><span class="wp-block-navigation-item__label" data-webtasks-id="c45772ad-1cd4-4d72">Featured: Linguiça Pasta Sauce</span></a></li></ul></nav></div>
<div class="wp-block-group site-brand is-layout-flex wp-container-20 wp-block-group-is-layout-flex" data-webtasks-id="39e46d36-bf73-45c5">
<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" data-webtasks-id="81609870-439f-4f88"><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="e796d382-c4dd-47ec"><a href="https://jacksfoodblog.com" target="_self" rel="home" data-webtasks-id="fe1e0006-66a6-4dea">Jack's Food Blog</a></h1></div>
</div>
</div>
<p class="has-text-align-center has-small-font-size" data-webtasks-id="5c1c8fc0-f183-4fca"><a href="https://wordpress.com/?ref=footer_blog" rel="nofollow" data-webtasks-id="d73b7aff-2b94-4201">Blog at WordPress.com.</a></p>
</div>
</footer>
<h2 class="wp-block-heading has-medium-font-size" data-webtasks-id="7ebbc1f5-c331-40ec"><strong data-webtasks-id="db9f4d3c-9671-44fa">Latest Posts</strong></h2>
<ul class="wp-block-latest-posts__list is-grid columns-3 wp-block-latest-posts" data-webtasks-id="acd9883b-6b3f-4259"><li data-webtasks-id="86a8db9c-78c3-4585"><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="d1b564c2-5315-4c7f">30 Indian Food Blogs to Follow in 2023 – With Pictures</a></li>
<li data-webtasks-id="2e3e6227-757f-4df3"><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="a5fab984-4abc-4f06">The Best Italian Food Blogs to Follow in 2023</a></li>
<li data-webtasks-id="c23194a4-8b6b-4380"><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="773b8aa7-c03b-45bc">The Best Keto Diet Food Blogs and Resources</a></li>
<li data-webtasks-id="f3d5ffc9-ba7c-41ed"><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="f7ab2585-5e1a-4344">The Brain Gut Connection – Eating Well for Happiness</a></li>
<li data-webtasks-id="a65e3693-7446-4115"><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="dd96d58d-d199-4396">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="dc17d589-055c-40bd">
.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="c1073b28-be10-4e25">
( 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="708762a6-a6ec-4b75"></script>
<script id="wpgroho-js-extra" data-webtasks-id="0b67421f-dd70-411b">
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="23996851-d439-4fd0"></script>
<script data-webtasks-id="bb2c4e28-ab0b-426b">
// 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="b9cb8440-b373-48d8">
<div class="grofile-hash-map-df8fbfc90f0a5b5c6a17a1d03ca328da" data-webtasks-id="1d342aa7-179e-4ed2">
</div>
<div class="grofile-hash-map-d4a91e7bfacf61bdcc7843b73e1b12c0" data-webtasks-id="e06137b8-d596-4b8d">
</div>
</div>
<script id="highlander-comments-js-extra" data-webtasks-id="dab67c0b-2f3d-49ae">
var HighlanderComments = {"loggingInText":"Logging In\u2026","submittingText":"Posting Comment\u2026","postCommentText":"Post Comment","connectingToText":"Connecting to %s","commentingAsText":"%1$s: You are commenting using your %2$s account.","logoutText":"Log Out","loginText":"Log In","Logged in via %s":"Logged in via %s","Log out":"Log out","Email":"Email","Instantly":"Instantly","Daily":"Daily","Reply":"Reply","WordPress":"WordPress","Weekly":"Weekly","Notify me of new posts":"Notify me of new posts","Email me new posts":"Email me new posts","Email me new comments":"Email me new comments","Receive web and mobile notifications for posts on this site.":"Receive web and mobile notifications for posts on this site.","connectURL":"https:\/\/jacksgrub.wordpress.com\/public.api\/connect\/?action=request&domain=jacksfoodblog.com","logoutURL":"https:\/\/jacksgrub.wordpress.com\/wp-login.php?action=logout&_wpnonce=90dc9348f5","homeURL":"https:\/\/jacksfoodblog.com\/","postID":"140","gravDefault":"identicon","enterACommentError":"Please enter a comment","enterEmailError":"Please enter your email address here","invalidEmailError":"Invalid email address","enterAuthorError":"Please enter your name here","gravatarFromEmail":"This picture will show whenever you leave a comment. Click to customize it.","logInToExternalAccount":"Log in to use details from one of these accounts.","change":"Change","changeAccount":"Change Account","Login to leave a reply.":"Login to leave a reply.","optional":"optional","Cancel":"Cancel","comment_registration":"0","userIsLoggedIn":"","isJetpack":"","text_direction":"ltr"};
</script>
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/_static/??/wp-content/js/textarea-autosize.min.js,/wp-content/mu-plugins/highlander-comments/script.js?m=1663141412j" data-webtasks-id="aa62b1e8-d9d4-4570"></script>
<div id="jp-carousel-loading-overlay" data-webtasks-id="6a7d35cb-6b83-4240">
<div id="jp-carousel-loading-wrapper" data-webtasks-id="895aa025-c967-4c4c">
<span id="jp-carousel-library-loading" data-webtasks-id="8e59451e-5328-413b"> </span>
</div>
</div>
<div class="jp-carousel-overlay" style="display: none;" data-webtasks-id="4e18d8bf-a72f-4427">
<div class="jp-carousel-container" data-webtasks-id="da9ce6dc-d166-4c81">
<!-- 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="7118e141-8449-4151">
<div class="jp-carousel swiper-wrapper" data-webtasks-id="4e9f527c-8b17-4e70"></div>
<div class="jp-swiper-button-prev swiper-button-prev" data-webtasks-id="374bb9f1-48ab-4537">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="b445d02d-d1b4-4cb9">
<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12" data-webtasks-id="f6e394f6-657d-4914">
<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="e293c7ab-5423-4862"></path>
</mask>
<g mask="url(#maskPrev)" data-webtasks-id="38f01f5d-c935-43ad">
<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="fce1b355-9f0f-484b"></rect>
</g>
</svg>
</div>
<div class="jp-swiper-button-next swiper-button-next" data-webtasks-id="1c1c1d78-30e0-4be4">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="8bd4cd62-ec0b-45dd">
<mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12" data-webtasks-id="c2e29268-de3a-40a2">
<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="e9fac8bd-c006-4477"></path>
</mask>
<g mask="url(#maskNext)" data-webtasks-id="32d7edb6-145d-472f">
<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF" data-webtasks-id="154ca0d3-bcad-4acc"></rect>
</g>
</svg>
</div>
</div>
<!-- The main close buton -->
<div class="jp-carousel-close-hint" data-webtasks-id="6c63152e-22af-4955">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="131853bf-4c1f-441d">
<mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14" data-webtasks-id="8c7b2a91-3e8d-42cd">
<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="29539717-6c3f-4506"></path>
</mask>
<g mask="url(#maskClose)" data-webtasks-id="f26111a7-342a-405d">
<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="48be0bac-7122-4445"></rect>
</g>
</svg>
</div>
<!-- Image info, comments and meta -->
<div class="jp-carousel-info" data-webtasks-id="18086cfa-7aeb-4a2e">
<div class="jp-carousel-info-footer" data-webtasks-id="724b1ecb-af85-4422">
<div class="jp-carousel-pagination-container" data-webtasks-id="4e72ea18-7be1-4231">
<div class="jp-swiper-pagination swiper-pagination" data-webtasks-id="a852d776-2d1a-419b"></div>
<div class="jp-carousel-pagination" data-webtasks-id="d7868f47-4d4a-4b32"></div>
</div>
<div class="jp-carousel-photo-title-container" data-webtasks-id="353a16e1-a2e1-4dff">
<h2 class="jp-carousel-photo-caption" data-webtasks-id="4656e0d0-652e-4515"></h2>
</div>
<div class="jp-carousel-photo-icons-container" data-webtasks-id="360a6f58-e7a3-4648">
<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility" data-webtasks-id="0e26dc08-1de5-49d8">
<span class="jp-carousel-icon" data-webtasks-id="5c82a56c-bc71-4d9c">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="8595ea92-77de-4f69">
<mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20" data-webtasks-id="a2fafeda-1de0-41bc">
<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="a9acd9c5-3ffc-44eb"></path>
</mask>
<g mask="url(#maskInfo)" data-webtasks-id="34626b7c-60fa-4d4a">
<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="7543a3d4-f657-4726"></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="f2227ee4-3d85-4af9">
<span class="jp-carousel-icon" data-webtasks-id="41c222e6-08d1-42ab">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="2ee9227b-55f2-4f0d">
<mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20" data-webtasks-id="1d260ff3-2c11-4e3f">
<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="36430a15-e4b4-49ff"></path>
</mask>
<g mask="url(#maskComments)" data-webtasks-id="b479521d-a1be-40cb">
<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="0e6cbe39-bc88-495c"></rect>
</g>
</svg>
<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments." data-webtasks-id="08969ee6-ace9-4e81"></span>
</span>
</a>
</div>
</div>
<div class="jp-carousel-info-extra" data-webtasks-id="5ae6fd36-2557-4add">
<div class="jp-carousel-info-content-wrapper" data-webtasks-id="90f7143a-f0b1-42ab">
<div class="jp-carousel-photo-title-container" data-webtasks-id="a037621c-037f-4863">
<h2 class="jp-carousel-photo-title" data-webtasks-id="b7a0530f-638f-4138"></h2>
</div>
<div class="jp-carousel-comments-wrapper" data-webtasks-id="79cf9970-5422-40d0">
<div id="jp-carousel-comments-loading" data-webtasks-id="72cc8f0d-43d4-4232">
<span data-webtasks-id="1d0b6f9b-74e7-492d">Loading Comments...</span>
</div>
<div class="jp-carousel-comments" data-webtasks-id="ee92e2ae-7d39-4da1"></div>
<div id="jp-carousel-comment-form-container" data-webtasks-id="001eadca-450c-42a7">
<span id="jp-carousel-comment-form-spinner" data-webtasks-id="bc4b5a4c-e13e-4326"> </span>
<div id="jp-carousel-comment-post-results" data-webtasks-id="1beb1c88-395b-4cc2"></div>
<form id="jp-carousel-comment-form" data-webtasks-id="303d97d2-7505-4241">
<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text" data-webtasks-id="91acec8e-5ccc-49bb">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="3102e8bc-2b43-43fb"></textarea>
<div id="jp-carousel-comment-form-submit-and-info-wrapper" data-webtasks-id="3efdaebd-52e7-4abf">
<div id="jp-carousel-comment-form-commenting-as" data-webtasks-id="3314ea67-637e-4f7e">
<fieldset data-webtasks-id="2eb6a21a-992e-4e15">
<label for="jp-carousel-comment-form-email-field" data-webtasks-id="2c590f54-b1ed-432c">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="25d5e2e0-dd98-4cdf">
</fieldset>
<fieldset data-webtasks-id="ef18f1d0-7555-43d4">
<label for="jp-carousel-comment-form-author-field" data-webtasks-id="6c8c8e17-5d40-4eea">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="3af3c037-d827-45fc">
</fieldset>
<fieldset data-webtasks-id="a7133e9c-9b50-437a">
<label for="jp-carousel-comment-form-url-field" data-webtasks-id="9e0b1c6e-4194-4a34">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="15723341-76ed-4950">
</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="1c958705-a541-466e">
</div>
</form>
</div>
</div>
<div class="jp-carousel-image-meta" data-webtasks-id="f9775359-930b-4615">
<div class="jp-carousel-title-and-caption" data-webtasks-id="e34e22d0-76e4-41a5">
<div class="jp-carousel-photo-info" data-webtasks-id="e7347d53-7089-416f">
<h3 class="jp-carousel-caption" itemprop="caption description" data-webtasks-id="9ebb9b89-3cd1-417d"></h3>
</div>
<div class="jp-carousel-photo-description" data-webtasks-id="38c55b61-e3bd-4a0e"></div>
</div>
<ul class="jp-carousel-image-exif" style="display: none;" data-webtasks-id="9b9c91a5-c4ca-4eda"></ul>
<a class="jp-carousel-image-download" target="_blank" style="display: none;" data-webtasks-id="15e17105-43ca-433a">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="e867eacb-9cc0-4ca4">
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18" data-webtasks-id="c2a92e60-3fdc-4935">
<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="0fc982c0-0fa8-4e5e"></path>
</mask>
<g mask="url(#mask0)" data-webtasks-id="ae16bcfb-4ea6-4170">
<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF" data-webtasks-id="908584fc-8fe7-42ab"></rect>
</g>
</svg>
<span class="jp-carousel-download-text" data-webtasks-id="26b985ec-7a67-4f93"></span>
</a>
<div class="jp-carousel-image-map" style="display: none;" data-webtasks-id="e62a3d8d-8f83-4692"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" data-webtasks-id="ee19fa86-845d-4a97">
window.WPCOM_sharing_counts = {"https:\/\/jacksfoodblog.com\/2015\/06\/27\/tomato-chilli-pasta-sauce-recipe\/":140};
</script>
<div id="actionbar" class="actnbr-premium-munchies actnbr-has-follow" data-webtasks-id="d00a0954-55c2-4041">
<ul data-webtasks-id="b959f62a-8eae-4a8a">
<li class="actnbr-btn actnbr-hidden" data-webtasks-id="8c184ef2-7161-4a87">
<a class="actnbr-action actnbr-actn-follow " href="" data-webtasks-id="490aba0e-dfe5-4453">
<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="792a5ee0-416a-4402"><g data-webtasks-id="02e0b415-1a49-421e"><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="974090ad-a409-4f40"></path></g></svg><span data-webtasks-id="6e7d4453-3756-42ea">Follow</span>
</a>
<a class="actnbr-action actnbr-actn-following no-display" href="" data-webtasks-id="9670ca7b-51cc-417f">
<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="c2b8493e-cb20-4a80"><g data-webtasks-id="6e740cdf-237a-4d02"><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="ca11d531-ba19-4951"></path></g></svg><span data-webtasks-id="711637ef-7c0e-418e">Following</span>
</a>
<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble" data-webtasks-id="76454a37-ab86-4df2">
<div class="tip-arrow" data-webtasks-id="79edffa1-48c6-4e1a"></div>
<div class="tip-inner actnbr-follow-bubble" data-webtasks-id="d1b2f087-b88a-4e41">
<ul data-webtasks-id="31cb91bc-b543-43a9">
<li class="actnbr-sitename actnbr-hidden" data-webtasks-id="8575e615-a0d8-4d32">
<a href="https://jacksfoodblog.com" data-webtasks-id="0f572897-b993-4cdf">
<img alt="" src="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=50" class="avatar avatar-50" height="50" width="50" srcset="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=50&zoom=2 1.5x" scale="1.5" data-webtasks-id="ff86ca76-6f54-4019"> Jack's Food Blog </a>
</li>
<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;" data-webtasks-id="cec9e0b4-7caf-4a0d">
<div class="actnbr-follow-count" data-webtasks-id="0988f954-b045-4a2f">Join 60 other followers</div>
<div data-webtasks-id="328327b4-dcef-47fd">
<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" data-webtasks-id="453032d7-77de-4564">
</div>
<input type="hidden" name="action" value="subscribe" data-webtasks-id="973a34af-99d6-4fbe">
<input type="hidden" name="blog_id" value="93195613" data-webtasks-id="c832f36a-9f0c-4374">
<input type="hidden" name="source" value="https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/" data-webtasks-id="0c14e6b3-1d3d-4123">
<input type="hidden" name="sub-type" value="actionbar-follow" data-webtasks-id="96eed8ae-1b7b-4b9a">
<input type="hidden" id="_wpnonce" name="_wpnonce" value="b89728ecd1" data-webtasks-id="0a45593d-81ef-4b01"> <div class="actnbr-button-wrap" data-webtasks-id="81f411a5-58a6-4ad6">
<button type="submit" value="Sign me up" data-webtasks-id="5ba92a35-0e75-4959">
Sign me up </button>
</div>
</form>
<li class="actnbr-login-nudge actnbr-hidden" data-webtasks-id="5916a16a-1ba7-422a">
<div data-webtasks-id="cfa606c5-d216-4ca9">
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%252F2015%252F06%252F27%252Ftomato-chilli-pasta-sauce-recipe%252F" data-webtasks-id="7ac27ac5-ea2e-43f3">Log in now.</a> </div>
</li>
</ul>
</div>
</div>
</li>
<li class="actnbr-ellipsis actnbr-hidden" data-webtasks-id="13bf17ce-8b71-4e0b">
<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-webtasks-id="4cea7824-d9af-4372"><g data-webtasks-id="b00ad536-a6fe-4a63"><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="2fedeb97-6cc5-4c64"></path></g></svg> <div class="actnbr-popover tip tip-top-left actnbr-more" data-webtasks-id="5cfc8b02-fb3d-4c5e">
<div class="tip-arrow" data-webtasks-id="363f97ae-7dd2-42fb"></div>
<div class="tip-inner" data-webtasks-id="85b4ae6b-08a2-4b1d">
<ul data-webtasks-id="a8c80ebf-7cdc-4ef5">
<li class="actnbr-sitename actnbr-hidden" data-webtasks-id="22a908c6-ba55-4c43">
<a href="https://jacksfoodblog.com" data-webtasks-id="ea50a60a-c7ca-40a5">
<img alt="" src="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=50" class="avatar avatar-50" height="50" width="50" srcset="https://jacksgrub.files.wordpress.com/2020/05/cropped-jt-final.png?w=50&zoom=2 1.5x" scale="1.5" data-webtasks-id="d25f5962-2094-472b"> Jack's Food Blog </a>
</li>
<li class="actnbr-folded-customize actnbr-hidden" data-webtasks-id="97789ac5-4d7e-4967">
<a href="https://wordpress.com/site-editor/jacksfoodblog.com" data-webtasks-id="a90b9760-6528-4990">
<svg class="gridicon gridicons-customize" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-webtasks-id="91ba17f9-9922-4adb"><g data-webtasks-id="554629de-4d25-4dcc"><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="8e36dbcd-f991-4615"></path></g></svg> <span data-webtasks-id="73f78d62-94f7-458e">Edit Site</span>
</a>
</li>
<li class="actnbr-folded-follow actnbr-hidden" data-webtasks-id="b364ec41-4149-4b5f">
<a class="actnbr-action actnbr-actn-follow " href="" data-webtasks-id="9445ed2e-f821-41b1">
<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="5aca16d9-5b20-4e56"><g data-webtasks-id="bbf659cf-c253-4bb9"><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="ca7b3816-10f6-404e"></path></g></svg><span data-webtasks-id="10dd67d8-d738-4b64">Follow</span>
</a>
<a class="actnbr-action actnbr-actn-following no-display" href="" data-webtasks-id="1b614b32-cf62-41a5">
<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="970f0714-0a43-4c8d"><g data-webtasks-id="f78c7a41-319d-43e5"><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="2e3c4785-7a56-461b"></path></g></svg><span data-webtasks-id="10a7ce8d-7359-4e74">Following</span>
</a>
</li>
<li class="actnbr-signup actnbr-hidden" data-webtasks-id="d09a075c-e550-4b87"><a href="https://wordpress.com/start/" data-webtasks-id="ed177204-5c1f-43cb">Sign up</a></li>
<li class="actnbr-login actnbr-hidden" data-webtasks-id="ad3ae413-19ab-497f"><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%252F2015%252F06%252F27%252Ftomato-chilli-pasta-sauce-recipe%252F" data-webtasks-id="04b7e56b-d665-4c57">Log in</a></li>
<li class="actnbr-shortlink actnbr-hidden" data-webtasks-id="12170bde-fae5-4aed"><a href="https://wp.me/p6j2r3-2g" data-webtasks-id="632ddb45-04da-44d4">Copy shortlink</a></li>
<li class="flb-report actnbr-hidden" data-webtasks-id="5c1e16ac-8bbf-47c9">
<a href="http://en.wordpress.com/abuse/?report_url=https://jacksfoodblog.com/2015/06/27/tomato-chilli-pasta-sauce-recipe/" target="_blank" data-webtasks-id="69b58a59-4e35-4390">
Report this content </a>
</li>
<li class="actnbr-reader actnbr-hidden" data-webtasks-id="69e67379-d798-47b4">
<a href="https://wordpress.com/read/blogs/93195613/posts/140" data-webtasks-id="05b31619-dfcd-4b5c">
View post in Reader </a>
</li>
<li class="actnbr-subs actnbr-hidden" data-webtasks-id="1f4f9a40-10cd-483d">
<a href="https://subscribe.wordpress.com/" data-webtasks-id="f6451153-fd6b-4627">Manage subscriptions</a>
</li>
<li class="actnbr-fold actnbr-hidden" data-webtasks-id="7f2edd55-1d4a-477b"><a href="" data-webtasks-id="73578de3-4f8d-44af">Collapse this bar</a></li>
</ul>
</div>
</div>
</li>
</ul>
</div>
<script data-webtasks-id="33903723-b833-4f6c">
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="8d0b5527-0a04-4a4d">
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%2F2015%2F06%2F27%2Ftomato-chilli-pasta-sauce-recipe%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="1d823b0c-93ce-4c1c">
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="sharing-js-js-extra" data-webtasks-id="39096a9e-542b-44d7">
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/??-eJydUEkOwjAM/BCpgbYIDoinoJCYNmmShiyU/p6oC0I9FImbPZ4ZewydJaw1AU0A6YHjUzC0r0z6DXyNdCRWxUoYD0o06OERMWJNDVfoVsgSg6WsmXrw0cBVGAa3KBQHRl0bPaoPbQYyLcyKK22E1xhInm1Huxm4u4HMZ22aqcjTuSkaa7VOPsShVf2PBTN3zCoXwJpwCkA6mySL9u8/+Zo65JTzfiiFqab7L/q8OxzLsijy/Um+ARNYq8k=" data-webtasks-id="a8222a19-0cd3-489b"></script>
<script type="text/javascript" data-webtasks-id="1e73649c-bebd-48e8">
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="6df0fac4-617f-4352">
// <![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="a20386bf-453e-4d02"></iframe>
<div id="likes-other-gravatars" data-webtasks-id="22716ab4-ae12-4564" style="display: none;">
<div class="likes-text" data-webtasks-id="c2a45a5f-dd89-45ae">
<span data-webtasks-id="86bcd8b4-56be-46f9">%d</span> bloggers like this: </div>
<ul class="wpl-avatars sd-like-gravatars" data-webtasks-id="ef80edc5-e15c-400f"></ul>
</div>
<script src="//stats.wp.com/w.js?63" defer="" data-webtasks-id="591ce7e0-f7b1-41a3"></script> <script type="text/javascript" data-webtasks-id="c2d8c858-a542-4df1">
_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':'140','subd':'jacksgrub'}]);
_stq.push(['extra', {'crypt':'UE5VTUIlVktzQVNtcFdrVUQrYTdpR2p3ME9na1lTaUphdk82X2x0Riw5fno9QU9SX09LX1JpbmhKSHg5eWxZTFB3c05fTVNiQXw4LjhkVEdXUXxya2IreFkvSmZqaXBTX0VRWHM/NzBSUGJXUnE1Qk04V3RUSEZtdmJLPzVrS2QzLTksOEs1Ui83WG43WiZEY015L3p2R3NSSzRHSm1+eHw5bDJNdzZ3JithMFswcFhXW21yM1pCS3lSXWUwQzksVSZDJXFiVjVMMTFmSH5WdEdbWGUmejgvUENBOCU/YVF4ZC1WK0tLZFkyMllQWysuSjVYRENPRFot'}]);
_stq.push([ 'clickTrackerInit', '93195613', '140' ]);
</script>
<noscript data-webtasks-id="f8b7f870-3bf9-4bc4"><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<script defer="" id="bilmur" data-customproperties="{"logged_in":"0","wptheme":"premium\/munchies","wptheme_is_block":"1"}" data-provider="wordpress.com" data-service="simple" src="/wp-content/js/bilmur.min.js?i=8&m=202327" data-webtasks-id="526f0d2b-4491-4a7a"></script><script data-webtasks-id="28b83074-9721-481c">
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="231487ba-0fc5-4d58">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=140&subd=jacksgrub&host=jacksfoodblog.com&ref=https%3A%2F%2Fjacksfoodblog.com%2Frecipes%2F&rand=0.9591761433916286" alt="" id="wpstats" data-webtasks-id="803e8add-600d-417f"><iframe name="__tcfapiLocator" style="display: none;" data-webtasks-id="47793638-faf9-4d99"></iframe><div class="comment-likes-overlay" style="display: none;" data-webtasks-id="58b4d07e-52d9-4937"></div><style data-webtasks-id="31414c75-3957-4f9b">.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="2afc8669-8ef4-4f08"></script><style data-webtasks-id="4e8bebee-95b2-4e1d">.user-feedback__reason:hover {
color: #000 !important;
}
.user-feedback__slider:hover {
background-color: rgba(0,0,0,0.6) !important;
border: none !important;
}</style></body> |