File size: 82,324 Bytes
4ee5071 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 | [
{
"name": "TIROPITAS (Cheese Triangles)",
"ingredients": [
"3 oz pkg Cream Cheese",
"1/2 Lb Feta Cheese",
"1/2 Lb Melted Butter",
"1/2 Lb Cottage Cheese",
"8 Eggs",
"1 Lb Filo"
],
"instructions": [
"Combine cheeses and stir. Add eggs one at a time, mix well. Cut pastry sheet into 3 inch strips. Brush with melted butter. Place 1 teaspoon of the filling on one end of the strip and fold over to make a triangle. Continue folding from side to side to form a triangle. Place the triangles on a buttered cookie sheet. Brush top with melted butter. Bake at 325 degrees until lightly browned. Can be made ahead and frozen. Warm in oven before serving."
],
"meta": {
"author": "Helena Lasho",
"title": "BaptistChurch",
"classification": "pie",
"year": "N/A",
"place": "TulsaOK",
"page": 2
}
},
{
"name": "Spahakopita (Spinach Triangles)",
"ingredients": [
"4 (10 oz.) pkg. Frozen Spinach",
"1 tsp. White Pepper",
"4 Bunches Green Onions",
"1 Tbp. Dill",
"1 Cup Olive Oil",
"2 tsp. Mint",
"2 Sticks Butter",
"1/2 Cup Parmesan",
"6 to 8 Eggs Lightly Beaten",
"1 Tbs. Parsley",
"1 1/2 Lb. Feta Cheese Crumbled",
"1 Lb. Filo"
],
"instructions": [
"Defrost spinach in refrigerator. Squeeze out as much water as you can. Place in a large mixing bowl.",
"Cut onions into 1/2 inch pieces. Heat 1/2 cup oil and 1 stick butter, saute onion just until slightly limp.",
"Add eggs, onion, white pepper, dill, mint, parmesan and crumbled feta to spinach and mix well.",
"Melt remaining butter, add oil and set aside.",
"You can cut your filo into 3 strips (Lengthwise) and make triangles or you may use a 10 x 15 pan.",
"If you use the pan, you need to brush the bottom of the pan with the butter & oil mixture.",
"Lay a sheet of filo in the pan, and brush with oil again repeating each time you lay the filo out.",
"Place 8 layers of filo on the bottom of the pan. Place the spinach mixture on top of the filo.",
"Add 6 to 8 layers of filo to the top (brush each layer with oil mixture).",
"Bake in a 350 degree oven for 45 minutes or until the top becomes golden brown."
],
"meta": {
"author": "Kay Escobedo",
"title": "BaptistChurch",
"classification": "pie",
"year": "N/A",
"place": "TulsaOK",
"page": 3
}
},
{
"name": "Spahakopita (Spinach Pie)",
"ingredients": [
"1/2 Lb. Filo Pastry Sheets",
"1/4 Cup Veg. Oil",
"1/2 Cup Finely Chopped Onion",
"3 (10 oz.) pkg. Frozen Chopped Spinach thawed and well drained",
"3 Eggs",
"1/2 Lb. (or more) Feta Cheese crumbled",
"1/4 Cup Parsley",
"2 tsp. Dill",
"1/2 tsp. Salt",
"1/2 tsp. Pepper",
"1/2 Cup Vegetable Oil"
],
"instructions": [
"Preheat oven to 350 degrees.",
"Saute onion in 1/4 cup oil.",
"Add spinach to onion and stir. Remove from heat.",
"In large bowl, combine eggs, cheese, parsley, dill, salt, pepper, spinach and onion mixture. Mix well.",
"Brush 13x9x2 pan lightly with oil.",
"Layer 8 filo leaves, one at a time brushing each sheet with oil.",
"Spread evenly with spinach mixture.",
"Cover with 8 more leaves, brushing each with oil.",
"Cut through top pastry layer on diagonal, then cut in opposite direction to form diamond shapes.",
"Bake at 350 degrees for 35 minutes or until crust is puffy and golden."
],
"meta": {
"author": "Mary Dalamaggas",
"title": "BaptistChurch",
"classification": "pie",
"year": "N/A",
"place": "TulsaOK",
"page": 4
}
},
{
"name": "DOLMADAK1A (Stuffed Grape Leaves)",
"ingredients": [
"30 Grape Leaves",
"1 Lb. Lean Ground Lamb or Beef",
"3/4 Cup Rice",
"1 Small Onion, Chopped Fine",
"Salt and Pepper to taste",
"2 tsp. Olive Oil",
"1 tsp. Garlic",
"1 tsp. Chopped Fresh Dill or 1/2 tsp. Dried Dill",
"1 Medium Lemon",
"1/2 Cup Tomato Sauce"
],
"instructions": [
"Place leaf on a flat surface, stem side up and cut off stem then cut leaf in half. Repeat with each leaf and stack all 30 leaves. Set aside.",
"Combine the rest of the ingredients, except lemon and mix well.",
"Taking each leaf, place about 1 tsp. meat mixture onto leaf. Press mixture down. Begin to roll the grape leaf; as you roll, tuck in sides.",
"Place grape leaves in a pan or glass dish. Squeeze the juice of one lemon over the rolled leaves. Add hot water to cover about 1/4 inch over the top layer of dolmadakia.",
"Cover and bake at 375 degrees for 1 hour. They can be served either cold or warm."
],
"meta": {
"author": "Eleonora Rieck",
"title": "BaptistChurch",
"classification": "appetizer",
"year": "N/A",
"place": "TulsaOK",
"page": 5
}
},
{
"name": "KEFTETHAKIA (Fried Meatballs)",
"ingredients": [
"2 Lb. Ground Beef",
"1/2 Cup Veg. Oil",
"5 Slices White Sandwich Bread",
"1/3 Cup Vinegar",
"1 tsp. Oregano",
"1 1/2 tsp. Salt",
"Pepper to Taste",
"1 Chopped Onion",
"1/2 tsp. Garlic Powder",
"1 Egg"
],
"instructions": [
"Place meat in a large mixing bowl.",
"Soak bread in water and drain well by squeezing it with your hands. Add to the meat.",
"Add the rest of the ingredients and mix well.",
"Shape into small balls, roll in flour (dust off excess flour).",
"Fry in hot oil."
],
"meta": {
"author": "Maria Almpantaki",
"title": "BaptistChurch",
"classification": "meat",
"year": "N/A",
"place": "TulsaOK",
"page": 6
}
},
{
"name": "DEVILED EGGS WITH OUZO",
"ingredients": [
"Hard Boiled Eggs",
"Hellmann's Mayonnaise",
"Ouzo"
],
"instructions": [
"Cut off end of eggs to stand. Cut egg in half.",
"Mix cut egg whites with yolks.",
"Blend egg with mayonnaise until smooth.",
"Add Ouzo to taste.",
"Keep reserve of egg mixture aside in the event that the mixture is too loose.",
"DO NOT SALT AND PEPPER.",
"Place egg mixture in egg whites and sprinkle with paprika."
],
"meta": {
"author": "Angie Panagos",
"title": "BaptistChurch",
"classification": "egg",
"year": "N/A",
"place": "TulsaOK",
"page": 6
}
},
{
"name": "SKORTHALIA (Garlic Spread)",
"ingredients": [
"1/2 pkg. Unseasoned Bread Stuffing",
"Water",
"10 Cloves Garlic",
"1 tsp. Salt",
"1/3 Cup Olive Oil",
"Juice of 2 Lemons"
],
"instructions": [
"Soak bread stuffing in water.",
"Squeeze water out of stuffing with your hands. Set aside.",
"With pestle and mortar, mash garlic with salt. Add this to bread.",
"Mix oil and lemon juice, blended until thoroughly mixed.",
"You may add 1/2 tsp. salt if you desire.",
"Use as a spread on bread or crackers."
],
"meta": {
"author": "Presbytera Anna Lillies",
"title": "BaptistChurch",
"classification": "spread",
"year": "N/A",
"place": "TulsaOK",
"page": 7
}
},
{
"name": "TARAMA SPREAD",
"ingredients": [
"1 Small Jar Tarama (fish roe)",
"1 Average Onion, Chopped Real Fine, squeeze out as much juice as possible",
"12 oz. Cream Cheese",
"Juice of 1 1/2 Lemon or 1/4 Cup Lemon Juice"
],
"instructions": [
"Beat tarama in blender until creamy (approx. 20 minutes)",
"Add room temperature cream cheese, continue mixing.",
"Then add onion and oil slowly. Mix well and add lemon juice.",
"Serve with fresh vegetables."
],
"meta": {
"author": "Angie Panagos",
"title": "BaptistChurch",
"classification": "spread",
"year": "N/A",
"place": "TulsaOK",
"page": 7
}
},
{
"name": "HUMUS",
"ingredients": [
"2 cans Garbanzo Beans",
"3 Tbs. Sesame Tahini",
"1/4 Cup Water",
"Juice of 1 Lemon",
"2 Cloves Garlic",
"Ground Pepper & Salt to taste",
"1/4 Cup Olive Oil"
],
"instructions": [
"In food processor mash garbanzo beans.",
"Add sesame tahini, water, lemon juice, garlic, salt, pepper and oil.",
"Blend until smooth.",
"Flatten in loaf pan and sprinkle with fresh parsley.",
"Spread on bread."
],
"meta": {
"author": "Anne Gasperetti",
"title": "BaptistChurch",
"classification": "spread",
"year": "N/A",
"place": "TulsaOK",
"page": 8
}
},
{
"name": "TSATZ1KI (Yogurt and Cucumber Sauce)",
"ingredients": [
"1/2 Cucumber",
"Salt and Pepper to taste",
"8 oz. Plain Yogurt",
"1 tsp. Vinegar",
"1 Minced Garlic Clove"
],
"instructions": [
"Peel cucumber, remove seeds and grate.",
"Place into a colander to drain, mashing a little with a spoon to remove excess liquid.",
"Also place yogurt in a small colander or cheese cloth for about three to four hours to drain.",
"Remove cucumber and yogurt.",
"Place in a bowl and blend in remaining ingredients.",
"Cover and refrigerate.",
"Serve with vegetables, crackers or pita bread."
],
"meta": {
"author": "Eleonora Rieck",
"title": "BaptistChurch",
"classification": "sauce",
"year": "N/A",
"place": "TulsaOK",
"page": 8
}
},
{
"name": "ATHENIAN BREAD",
"ingredients": [
"2 pkg. Dry Yeast",
"1/2 tsp. Baking Soda",
"1/2 Cup Warm Water",
"2 Eggs well beaten",
"6 Cups Flour",
"1/4 Cup Melted Butter",
"1/2 Cup Granulated Sugar",
"1 1/2 tsp. Salt",
"1/2 tsp. Mace",
"1 Large Can Evaporated Milk",
"Sesame Seed"
],
"instructions": [
"Soften yeast in warm water.",
"Sift flour, sugar, salt, mace and baking soda into large bowl.",
"Make a well in the center of the flour.",
"Add eggs, milk, (reserve small amount of milk for top) butter and yeast mixture.",
"Gradually blend in the flour and mix to a consistency that won't stick to hands or bowl.",
"Knead lightly on floured surface for 8 to 10 minutes or until smooth.",
"Place in greased bowl, cover tightly and let rise in a warm place until doubled in bulk (1 1/2 to 2 hours).",
"Knead down dough, divide into round loaves and place in greased pans.",
"Cover closely and set in warm place until double in bulk or a light touch leaves a slight dent.",
"Brush top with a small amount of evaporated milk and sprinkle with sesame seed.",
"Bake at 375 degrees for 15 minutes, reduce heat to 350 degrees and bake for about 30 minutes or until browned.",
"If you use loaf pans, you can slice for toasting"
],
"meta": {
"author": "Helen Lasho",
"title": "BaptistChurch",
"classification": "bread",
"year": "N/A",
"place": "TulsaOK",
"page": 9
}
},
{
"name": "Psomi (Bread)",
"ingredients": [
"1 1/2 Cups Lukewarm Water",
"2 Tbs. Yeast",
"5 Cups Flour",
"1 tsp. Salt"
],
"instructions": [
"Dissolve yeast in water.",
"Gradually add flour and salt.",
"Once it is thoroughly mixed, knead until the dough is smooth and snaps.",
"The more you knead this bread, the sweeter it becomes.",
"Allow dough to rise and punch down.",
"You may shape into a loaf or two smaller balls.",
"Allow to rise again and bake in a 350 degree oven for 30 minutes.",
"This is also the recipe used when making special altar bread, which is called Prosphoron, meaning offering.",
"On the second rising, you would make one or two round loaves.",
"A special seal is stamped in the middle."
],
"meta": {
"author": "Renee Hadjis",
"title": "BaptistChurch",
"classification": "bread",
"year": "N/A",
"place": "TulsaOK",
"page": 10
}
},
{
"name": "ARTOKLASIA (Artos Bread)",
"ingredients": [
"4 1/2 Cups Water",
"2 3/4 Cups Sugar",
"4 Cinnamon sticks",
"1 Tbs. Coriander",
"1 tsp. Whole Cloves",
"1 Tbs. Gr. Cinnamon",
"6 pkg. Yeast",
"1 Tbs. Gr. Masteha",
"1 Cup Wine (Aniseed)",
"1 1/2 Cup Oil",
"1/2 tsp. Salt",
"16 1/2 Cups Flour",
"1 Tbs. honey"
],
"instructions": [
"First boil water, cinnamon sticks and cloves for about 10 minutes. You can also do this ahead of time. Let cool to lukewarm.",
"In a bowl put one cup of cinnamon water, one teaspoon sugar and the yeast. Stir and set aside for about 5 minutes.",
"In a large bowl mix margarine, sugar, cinnamon, salt, coriander spice and the ground masteha.",
"Add two cups flour, wine, the rest of the cinnamon water and yeast. Mix well, while adding the rest of the flour one cup at a time.",
"Work dough with your hands until it is smooth. Let dough rest for about 10 minutes.",
"Divide the dough into 6 pieces. Spray 6 round cake pans. Shape dough pieces round and place in the pans.",
"Cover and put in a warm place. Let them rise until they are double in size.",
"Bake in a 350 degree oven for 45-60 minutes or until they are done.",
"After the bread is out of the oven brush the top of the bread with 1 Tbs. honey and let cool completely."
],
"meta": {
"author": "Maria Almpantaki",
"title": "BaptistChurch",
"classification": "bread",
"year": "N/A",
"place": "TulsaOK",
"page": 11
}
},
{
"name": "VASDLOPITA (Hew Year's Bread)",
"ingredients": [
"1/2 Cup Unsalted Butter",
"1/2 Cup Crisco",
"3/4 Cup Evaporated milk",
"11/4 Cup Sugar",
"1/2 tsp. Baking Soda",
"3/4 tsp. Baking Powder",
"1/2 tsp. Vanilla",
"1/2 tsp. Lemon Zest",
"3 Eggs",
"1 3/4 Cups Flour",
"1/4 Cup Chopped Almonds"
],
"instructions": [
"Beat butter, crisco, vanilla and sugar.",
"Beat egg whites and yolks separately.",
"First add yolks to the oil mixture and then the whites.",
"Mix lukewarm evaporated milk with soda to foamy state.",
"Add to the oil mixture.",
"Mix baking powder with 1 cup of flour and add to the mixture.",
"Slowly add remaining flour and mix well.",
"Place in a greased spring-form pan.",
"Sprinkle top of bread with chopped almonds.",
"Bake in 300 degree oven for 1 hour depending on the oven.",
"Test with a tooth pick if it comes out clean the bread is done."
],
"meta": {
"author": "Popi Bohren",
"title": "BaptistChurch",
"classification": "bread",
"year": "N/A",
"place": "TulsaOK",
"page": 12
}
},
{
"name": "Easter Bread",
"ingredients": [
"3 Eggs",
"2/3 Cup Sugar",
"1/2 tsp. Salt",
"1/4 tsp. Cinnamon",
"1/4 tsp. Cloves",
"3/4 Cup Evaporated Milk",
"1/4 Cup Butter, Melted",
"1 Cake Yeast",
"1/4 Cup Lukewarm Water",
"7 Cups All Purpose Flour Sifted",
"1 Egg Sesame Seed"
],
"instructions": [
"Beat eggs. Add sugar, salt, cinnamon and cloves.",
"Blend in milk, followed by melted butter. Dissolve yeast in 1/4 cup lukewarm water, add to first mixture.",
"Add flour and mix thoroughly. Knead well about five minutes.",
"Let rise in greased pan for about 2 hours or until doubled in bulk. Punch down and let rise again. Punch down.",
"Knead into desired shapes and let rise in greased round layer cake pan.",
"Beat remaining egg: brush loaves with this and sprinkle with sesame seeds.",
"Bake 30 to 40 minutes at 350 degrees. Makes two loaves."
],
"meta": {
"author": "Tula Margellos",
"title": "BaptistChurch",
"classification": "bread",
"year": "N/A",
"place": "TulsaOK",
"page": 13
}
},
{
"name": "Zucchkini Greek Bread",
"ingredients": [
"3 Eggs",
"3 tsp. Vanilla",
"1 Cup Olive Oil",
"3 Cups Flour",
"2 Cups Sugar",
"1 tsp. Salt",
"2 Cups peeled and grated Zucchini",
"1/4 tsp. Baking Powder",
"1 tsp. Baking Soda",
"3 tsp. Cinnamon",
"1/2 Cup walnuts"
],
"instructions": [
"Beat eggs until light and foamy. Add oil, sugar, zucchini and vanilla. Mix well.",
"Add dry ingredients, mix until blended.",
"Bake at 350 degrees for 1 hour."
],
"meta": {
"author": "Carmela Chiafos",
"title": "BaptistChurch",
"classification": "bread",
"year": "N/A",
"place": "TulsaOK",
"page": 13
}
},
{
"name": "Homemade Noodles",
"ingredients": [
"6 Eggs",
"1 tsp. Salt",
"6 Cups Flour or more"
],
"instructions": [
"Beat 6 eggs and 1 tsp. salt together.",
"Add 6 cups flour or more until dough is no longer sticky.",
"Divide into two balls and roll out like pie dough.",
"Let dry and cut into fine or wide pieces whichever you prefer.",
"This makes a large batch. This can be left completely dry or frozen."
],
"meta": {
"author": "Helen McDonald",
"title": "BaptistChurch",
"classification": "pasta",
"year": "N/A",
"place": "TulsaOK",
"page": 14
}
},
{
"name": "FASOLATHA (Bean Soup)",
"ingredients": [
"1 Lb. Navy Beans",
"2 Onions",
"1/2 Cup Carrots",
"1/2 Cup Celery",
"1 Cup Potatoes",
"1-2 Tbs. Chopped Parsley",
"1 Tbs. Oregano",
"1-2 Cloves Minced Garlic",
"1/2 Cup Oil (1/2 Olive - 1/2 Vegetable oil)",
"Pepper",
"1 can Tomato Paste",
"Salt if desired"
],
"instructions": [
"Wash beans thoroughly. Place the beans in a pot, barely cover with water and boil slowly. Cook until the beans are half done.",
"While the beans are cooking, cut up all the vegetables into small pieces. When beans are half cooked, put in onion, carrots, celery, potatoes, parsley, oregano, garlic and oil. Add hot water just barely covering the vegetables. Add hot water as needed.",
"When soup is almost done add tomato paste and salt if desired."
],
"meta": {
"author": "Stavros Hadjis",
"title": "BaptistChurch",
"classification": "soup",
"year": "N/A",
"place": "TulsaOK",
"page": 15
}
},
{
"name": "FAKI (Lentil Soup)",
"ingredients": [
"2 pkg. Dry Lentils",
"2 Large Onions",
"1/4 Cup Olive Oil",
"1 (12 oz.) can of Crushed Tomatoes",
"6 Large Cloves of Garlic or more to suit your own taste",
"1 can Tomato Paste",
"1 1/2 qt Water",
"Salt & Pepper to taste",
"1 Tbs. Parsley",
"2 Bay Leaves",
"1/2 Cup Vinegar (to be added after cooking)"
],
"instructions": [
"Place the dry lentils in a pot, cover with water and boil for 5 minutes. Drain well.",
"Chop onions, and saute in olive oil until opaque.",
"Add all other ingredients including 1 1/2 qt. of water.",
"Boil for 1 hour or until lentils are soft.",
"Remove from stove and let stand 10 minutes, then add 1/2 cup vinegar."
],
"meta": {
"author": "Marilyn Eleftheriou",
"title": "BaptistChurch",
"classification": "soup",
"year": "N/A",
"place": "TulsaOK",
"page": 16
}
},
{
"name": "FAKI (Quick and easy low fat lentil soup)",
"ingredients": [
"1 Lb. Lentils, picked and washed",
"1 (4 oz) can Tomato Paste",
"1 pkg. Knorr Instant Vegetable Soup Mix",
"1 Clove Garlic, peeled and crushed",
"2 Tbs. Olive Oil",
"1 Tbs. Dried Oregano",
"1/2 Cup Chopped Celery",
"4-5 Bay Leaves",
"3 Green Onions, sliced",
"3 Tbs. Balsamic Vinegar",
"2 Medium Carrots, scraped and coarsely grated",
"Salt and Pepper to taste"
],
"instructions": [
"Cover washed lentils with 2 quarts of water, bring to a rolling boil.",
"Reduce heat to medium, and cook 15 minutes.",
"Wash and rinse lentils thoroughly to remove all traces of bitter brown scum.",
"In a clean 2 quart saucepan, prepare Knorr vegetable soup mix according to directions.",
"Add lentils and remaining ingredients.",
"Bring to a boil.",
"Reduce heat, cover and simmer until lentils are tender."
],
"meta": {
"author": "Larry & Carolyn Poulakos",
"title": "BaptistChurch",
"classification": "soup",
"year": "N/A",
"place": "TulsaOK",
"page": 17
}
},
{
"name": "Horyaticce Salata (Village Salad)",
"ingredients": [
"3 Large Tomatoes",
"3 Tbs. Olive Oil",
"1 Large Cucumber",
"Juice of 1/2 Lemon",
"1 Large Sweet onion",
"Salt & Pepper to taste",
"1 tsp. Oregano",
"1/2 tsp. Dill",
"Crumbled Feta Cheese",
"Optional: 1 chopped green pepper"
],
"instructions": [
"Cut tomatoes into wedges.",
"Wash cucumber and score skin. Cut into thin slices.",
"Slice onions into rings.",
"Combine vegetables with oregano and dill in a salad bowl.",
"Mix together olive oil and lemon juice (1 Tbs. red wine vinegar may also be used).",
"Add salt and pepper to salad.",
"Top with feta cheese.",
"If you wish you can add one chopped green pepper."
],
"meta": {
"author": "Kay Escobedo",
"title": "BaptistChurch",
"classification": "salad",
"year": "N/A",
"place": "TulsaOK",
"page": 18
}
},
{
"name": "Eladolado (Greek Salad Dressing)",
"ingredients": [
"1/2 Cup Olive Oil",
"1/4 Cup Fresh Lemon Juice",
"1 Clove Garlic minced",
"1 tsp. Dried Oregano",
"1/4 tsp. Pepper",
"1/4 tsp. Salt"
],
"instructions": [
"Mix oil, juice, garlic and seasonings.",
"This makes 3/4 cup."
],
"meta": {
"author": "Helen Lasho",
"title": "BaptistChurch",
"classification": "dressing",
"year": "N/A",
"place": "TulsaOK",
"page": 18
}
},
{
"name": "Hot Greek Potato Salad",
"ingredients": [
"5 Boiled Potatoes",
"1 Stalk Celery Chopped",
"1 Large Onion",
"1/2 Cup Olive Oil",
"Juice of 2 Lemons",
"Chopped Parsley",
"Salt & Pepper"
],
"instructions": [
"Boil potatoes until tender, keep hot.",
"Slice onion into a large bowl (Sprinkle with salt and cold water. Allow to stand about 5 minutes). Drain.",
"Slice hot potatoes and add the onions, olive oil, lemon juice and celery.",
"Mix well to absorb dressing.",
"Season to taste and garnish with fresh parsley.",
"Serve warm."
],
"meta": {
"author": "Helen McDonald",
"title": "BaptistChurch",
"classification": "salad",
"year": "N/A",
"place": "TulsaOK",
"page": 19
}
},
{
"name": "Greek Pasta Salad",
"ingredients": [
"4 Cups cooked Orzo",
"(rosamarina) 2 Cups Cucumber",
"3/4 Cups Tomato",
"1/2 Cup Green Pepper",
"1/2 Red Onion",
"1/4 Cup Parsley",
"1/4 Cup Olive Oil",
"1/4 Cup Lemon Juice",
"1/4 tsp. Salt",
"1 Can Garbanzo Beans",
"1/2 Cup Feta Cheese"
],
"instructions": [
"Slice cucumber.",
"Chop tomato, green pepper, red onion, and parsley.",
"Rinse garbanzo beans.",
"Mix all ingredients in a bowl.",
"Cover and refrigerate.",
"Top with cheese just before serving.",
"Best if refrigerated for a few hours ahead of serving."
],
"meta": {
"author": "Helen McDonald",
"title": "BaptistChurch",
"classification": "salad",
"year": "N/A",
"place": "TulsaOK",
"page": 19
}
},
{
"name": "Fruit Salad",
"ingredients": [
"1 can Fruit Cocktail, Drained",
"1 can Mandarin Oranges, Drained",
"2 Banana's sliced",
"1 Cup small Marshmallows",
"Coconut if desired",
"Non-dairy Cool Whip"
],
"instructions": [
"Put all ingredients into a large salad bowl.",
"Add enough cool whip to cover the top."
],
"meta": {
"author": "Helen McDonald",
"title": "BaptistChurch",
"classification": "salad",
"year": "N/A",
"place": "TulsaOK",
"page": 20
}
},
{
"name": "KALAMARAK1A KRASSATA (Squid in Wine)",
"ingredients": [
"2 Lb. Small Squid",
"3/4 Cup Olive Oil",
"3 Onions thinly sliced",
"3/4 Cups Dry White Wine",
"1 (16 oz.) Can Tomato Sauce",
"3 Tbs. Chopped Parsley",
"1 Stick Cinnamon",
"5 Cloves",
"1 Bay Leaf",
"1 tsp. Salt",
"Juice of one Lemon"
],
"instructions": [
"Clean squid inside and out with cold running water.",
"Cut into rings: wash tentacles thoroughly.",
"Heat oil, saute onions until transparent.",
"Push onions to one side of pan and add squid.",
"Cook until squid is opaque.",
"Add wine, tomato sauce, parsley, cinnamon stick, cloves, bay leaf and salt.",
"Cook uncovered over low heat for 1 hour. Add water if necessary.",
"Remove cinnamon stick, cloves and bay leaf.",
"Add lemon juice.",
"Serve over macaroni, noodles or rice."
],
"meta": {
"author": "Presbytera Anna Lillios",
"title": "BaptistChurch",
"classification": "main course",
"year": "N/A",
"place": "TulsaOK",
"page": 21
}
},
{
"name": "Psari Plaki (Baked Fish)",
"ingredients": [
"2 Lb. Cod Fish",
"1 Cup Bread Crumbs",
"1 tsp. Paprika",
"1 (14.5 oz.) can Crushed Tomatoes",
"2 Large Onions, Chopped",
"2 Carrots, Diced",
"1 Cup Fresh Celery Leaves",
"2 Tbs. Oregano",
"Salt & Pepper",
"1 Tbs. Dill",
"3/4 Cup Olive Oil"
],
"instructions": [
"Saute chopped onions.",
"Add tomato and remaining sauce ingredients.",
"Cook for 20 minutes on medium heat.",
"Place cod fish in baking pan, cover with sauce mix and sprinkle with bread crumbs.",
"Sprinkle paprika on top of bread crumbs.",
"Bake at 375 degrees until fish is done.",
"You may add fresh lemon before serving."
],
"meta": {
"author": "Marilyn Eleftheriou",
"title": "BaptistChurch",
"classification": "fish",
"year": "N/A",
"place": "TulsaOK",
"page": 22
}
},
{
"name": "KAPAMA (Stewed Chicken)",
"ingredients": [
"1 4 Lb. Chicken",
"Juice of 1/2 lemon",
"1/4 Lb. Butter",
"1/4 Cup Wine",
"1/2 Cup Tomato Paste",
"1 Stick Cinnamon",
"1 1/2 Cups Boiling Water",
"Salt & Pepper",
"1 Onion Chopped fine"
],
"instructions": [
"Cut chicken into serving size pieces.",
"Sprinkle with lemon juice, salt and pepper.",
"Brown chicken in butter.",
"Then saute onion in chicken drippings.",
"Mix tomato paste with water in large saucepan and bring to a boil.",
"Reduce heat and carefully place browned chicken, onions and cinnamon stick in tomato paste.",
"Add wine and cook for approximately one hour or until chicken is tender.",
"Serve over macaroni, spaghetti, potatoes or rice."
],
"meta": {
"author": "Kay Escobedo",
"title": "BaptistChurch",
"classification": "main dish",
"year": "N/A",
"place": "TulsaOK",
"page": 23
}
},
{
"name": "CHICKEN ATHENIAN",
"ingredients": [
"Chicken breast",
"Cooked spinach",
"Feta",
"Walnuts",
"White wine",
"Sliced fresh mushrooms"
],
"instructions": [
"Slice open chicken breast.",
"Stuff with cooked spinach, feta and walnuts.",
"Bake in white wine and sliced fresh mushrooms.",
"Bake covered in a 350 degree oven for 1 hour."
],
"meta": {
"author": "The Gasperettis",
"title": "BaptistChurch",
"classification": "main dish",
"year": "N/A",
"place": "TulsaOK",
"page": 23
}
},
{
"name": "Greek Chicken",
"ingredients": [
"4 Chicken Breast",
"3 oz. Lemon Juice",
"Oregano",
"Parsley",
"Lightly Salt & Pepper"
],
"instructions": [
"Wash chicken and place in glass baking dish.",
"Sprinkle with 1/2 of the lemon juice, oregano, parsley, salt and pepper.",
"Cover with aluminum foil.",
"Bake at 300 degrees for 1 hour.",
"Variation: May broil chicken if desired."
],
"meta": {
"author": "Carmela Chiafos",
"title": "BaptistChurch",
"classification": "main dish",
"year": "N/A",
"place": "TulsaOK",
"page": 24
}
},
{
"name": "Turkey Florentine",
"ingredients": [
"2 (10 oz.) pkgs. Frozen Chopped Spinach",
"3/4 Cup Chicken Broth",
"1 or 2 (6 oz.) Jars Artichoke Hearts, Sliced",
"8 Slices Cooked Turkey Breast",
"1 Cup Sour Cream",
"1/4 Cup Dry White Wine",
"1/4 tsp. Garlic Powder",
"1/4 tsp. Thyme",
"1/4 tsp. Nutmeg",
"Salt and Pepper to taste",
"2 Cups Parmesan Cheese"
],
"instructions": [
"Cook spinach in 1/2 cup chicken broth until barely cooked; drain.",
"In greased 9x13 baking dish layer artichoke hearts, spinach and turkey.",
"Combine remaining chicken broth with all other ingredients except parmesan and sour cream. Mix until well blended.",
"Pour over ingredient in casserole.",
"Add about 1/2 cup Parmesan cheese with sour cream, mix and spread over casserole.",
"Sprinkle remaining Parmesan over top.",
"Bake at 350 degrees for 30 to 40 minutes or until bubbly. Makes 8 servings."
],
"meta": {
"author": "Carrol Chipokas",
"title": "BaptistChurch",
"classification": "main dish",
"year": "N/A",
"place": "TulsaOK",
"page": 24
}
},
{
"name": "Turkey Stuffing",
"ingredients": [
"2 1/2 Lb. Ground Beef",
"1 Onion Chopped",
"2 Eggs",
"1 Cup Bread Crumbs",
"Parsley to taste"
],
"instructions": [
"Brown and drain ground beef and onion.",
"Add 2 eggs beaten, one cup bread crumbs and parsley.",
"Mix well.",
"Stuff turkey loosely."
],
"meta": {
"author": "Grandma Karegeannes",
"title": "BaptistChurch",
"classification": "stuffing",
"year": "N/A",
"place": "TulsaOK",
"page": 25
}
},
{
"name": "Souvlakia",
"ingredients": [
"2 Lb. Pork Tenderloin (cut into 1-2 inch cubes)",
"1/4 Cup Olive Oil",
"1 Whole Lemon",
"2 Cloves Garlic (chopped fine)",
"2 Tbs. Oregano",
"Salt & Pepper to taste",
"Skewers"
],
"instructions": [
"Cut pork tenderloin into cubes.",
"Make a marinate with: olive oil, lemon juice, garlic, oregano, salt and pepper.",
"Marinate cubed tenderloin overnight for best results.",
"Skewer 5 pieces of pork onto each skewer.",
"Cook over grill until done.",
"Squeeze the juice of 1/2 lemon over cooked souvlakia when done.",
"If using wooden skewers, soak in water overnight to help prevent the skewers from burning."
],
"meta": {
"author": "The Gasperettis",
"title": "BaptistChurch",
"classification": "meat",
"year": "N/A",
"place": "TulsaOK",
"page": 25
}
},
{
"name": "SPARTAN DOLMATHES (Stuffed Grapevine Leaves)",
"ingredients": [
"1 1/4 Lb. Hamburger",
"1 1/2 Cup Cooked Rice",
"1/2 can Tomato Paste",
"1 Large Onion",
"4 Tbs. Olive Oil",
"Salt & Pepper",
"1 1/2 tsp. Mint",
"1 1/2 tsp. Parsley",
"1/2 tsp. Cinnamon",
"2 Tbs. Water",
"1 Clove Diced Garlic",
"1 Small Jar Grapevine Leaves or Preboiled Cabbage Leaves",
"Sauce",
"3 Eggs",
"1/2 Cup Lemon Juice",
"Broth from cooked Dolmathes"
],
"instructions": [
"Boil grapevine leaves in water, be careful not to over cook leaves. Strain leaves and set aside.",
"Saute the onion, olive oil and garlic.",
"Add the hamburger (use lean hamburger).",
"Add the tomato paste, water and all other ingredients (except leaves). Mix well in skillet.",
"Take one leaf and place on a flat plate, snip off any excess stem. Place 1 Tbs. of the hamburger mixture on leaf. Then roll as shown below.",
"Add 3 Tbs. olive oil to a dutch oven, place one open leaf in the bottom of the pan.",
"Line bottom of the pan with stuffed grapevine leaves, trying not to leave gaps. Any remaining stuffed leaves, place on top of the existing layer toward the center of the pot.",
"Drizzle with 1/3 cup"
],
"meta": {
"author": "N/A",
"title": "BaptistChurch",
"classification": "main course",
"year": "N/A",
"place": "TulsaOK",
"page": 26
}
},
{
"name": "DOLMATHES (Stuffed Grape Leaves)",
"ingredients": [
"1 Lb. Hamburger",
"1 Small Onion",
"2 Tbs. Chopped Parsley",
"1 Egg",
"3 Tbs. Rice",
"Salt & Pepper to Taste",
"Grape or Cabbage leaves",
"1 Soup Can Chicken Broth",
"2 Tbs. Butter",
"Juice of 1 Lemon"
],
"instructions": [
"Mix together hamburger, onion, parsley, egg, rice, salt and pepper.",
"Place small amount of mixture on grape or cabbage leaf.",
"Roll up leaf and tuck in open ends.",
"Place dolmathes in rows in sauce pan.",
"Add chicken broth to cover.",
"Add butter and juice of lemon.",
"Cover pan.",
"Cook over slow heat for 1 hour.",
"Make sure there is water in the pot; you will probably have to add 1 more cup water 15 minutes into cooking time.",
"When done, remove as much of the broth as possible, (approx. 1/2 cup) set aside in a bowl.",
"In separate bowl whip 3 egg whites, then add yolks.",
"Add egg mixture to broth and then add 1/2 cup lemon juice, blend well.",
"Remove plate from pot and pour lemon & egg sauce over hot (not steaming) Dolmathes.",
"Let stand for 1/2 hour.",
"Dolmathes taste better the next day. Always refrigerate unused portions."
],
"meta": {
"author": "Marilyn Eleftheriou & Tula Margellos",
"title": "BaptistChurch",
"classification": "main course",
"year": "N/A",
"place": "TulsaOK",
"page": 27
}
},
{
"name": "PSITO APHI BOUTI (Roast Leg of Lamb)",
"ingredients": [
"1 Leg of Lamb",
"Salt & Ground Pepper",
"2 Heads of Garlic",
"Rosemary",
"1/2 Bottle White Wine",
"1/2 Lb. Butter"
],
"instructions": [
"Place slivers of garlic into slits you have made in lamb.",
"Rub with butter and pour wine over the top.",
"Marinate overnight.",
"Place lamb in roaster, sprinkle with salt, ground pepper and rosemary.",
"Place in 450 degree oven for 30 minutes.",
"Cover and turn down oven to 350 degrees.",
"Bake for 45 minutes per lb."
],
"meta": {
"author": "Kay Escobedo",
"title": "BaptistChurch",
"classification": "meat",
"year": "N/A",
"place": "TulsaOK",
"page": 28
}
},
{
"name": "GLAZED LEG OF LAMB",
"ingredients": [
"1 Roast leg of lamb",
"1 Cup Brown Sugar",
"3 tsp. Lemon Juice",
"1/3 to 1/2 Cup Horseradish or Mustard"
],
"instructions": [
"Roast leg of lamb at 325 degrees for 30 minutes per Lb. of roast.",
"The last hour, baste every 20 minutes with the following ingredients: 1 Cup Brown Sugar, 3 tsp. Lemon Juice, 1/3 to 1/2 Cup Horseradish or Mustard.",
"Heat just enough to melt sugar."
],
"meta": {
"author": "Helen McDonald",
"title": "BaptistChurch",
"classification": "meat",
"year": "N/A",
"place": "TulsaOK",
"page": 28
}
},
{
"name": "Makaranopita (Cheese & Macaroni Pita)",
"ingredients": [
"1 Box Elbow Macaroni",
"6 Well Beaten Eggs",
"3 Cups Milk",
"1/2 Lb. Crumbled Feta Cheese",
"1/2 Cup Parmesan Cheese",
"2 Sticks Butter (used separately)",
"1 Box Filo (pastry leaves)"
],
"instructions": [
"Cook and drain macaroni.",
"Melt 1 stick of butter.",
"Brush bottom and sides of a baking pan with butter.",
"In buttered baking pan lay one sheet of filo dough, brush with butter, repeat process until you have 8 layers of filo.",
"Melt 1 stick of butter. Mix with remaining ingredients.",
"Pour mixture over the filo layers and top mixture with 8 additional layers of filo, brushing each layer with butter.",
"Bake at 350 degrees for 45 minutes.",
"Cut into squares."
],
"meta": {
"author": "Kathy Dimopoulos",
"title": "BaptistChurch",
"classification": "pie",
"year": "N/A",
"place": "TulsaOK",
"page": 29
}
},
{
"name": "Moussaka (Potato-Zucchini-Eggplant Casserole)",
"ingredients": [
"4 Large Potatoes",
"4 Medium Size Zucchini",
"2 Medium Size Eggplant",
"1/2 Cup Cold Water",
"1 tsp. Sugar",
"1 Cup Mozzarella Cheese",
"1 tsp. Sugar",
"6 tsp. Cornstarch",
"3 Cups Milk",
"A Dash Salt",
"3 Eggs Beaten",
"A Dash Nutmeg",
"3 tsp. Butter",
"1 1/2 Lb. Ground Beef",
"1/4 tsp. Salt",
"3 Small Onions Chopped",
"Pepper to Taste",
"1 Cup Tomato Sauce",
"1 tsp. Oregano",
"1 1/2 Cup Water",
"1/4 Lb. Butter",
"1 Cup Grated Parmesan Cheese"
],
"instructions": [
"Wash eggplant and zucchini; peel potatoes.",
"Slice eggplant, about 1/4 inch thick and do the same with zucchini and potatoes. Sprinkle with salt. Let zucchini and eggplant stand in a colander for about 30 minutes to drain. Eggplant will loose its bitterness. Rinse eggplant and pat it dry.",
"At this time, melt butter. Add onions and cook for two minutes. Add meat and saute. Add salt, pepper, tomato, oregano and water. Cook for 15 minutes.",
"In a frying pan, heat oil. Start frying the potatoes until light brown. Transfer them in a platter lined with paper-towels to absorb excess oil. Repeat the same process with zucchini and eggplant. Set aside.",
"Mix cornstarch in cold water and stir into the three cups of very hot milk and salt. Pour half of the remaining butter in the milk. Stir over medium heat until it thickens. Remove from heat. Add sugar, nutmeg and beaten eggs all at once. Mix in the mozzarella cheese.",
"Grease bottom and sides of a 9x13 inch pan. Layer the pan with fried potatoes"
],
"meta": {
"author": "N/A",
"title": "BaptistChurch",
"classification": "casserole",
"year": "N/A",
"place": "TulsaOK",
"page": 30
}
},
{
"name": "STIFATHO (Beef and Onion Stew)",
"ingredients": [
"2 Lb. Eye Round or Sirlion",
"5 Lbs. Small Pearl Onions",
"1 can Tomato Paste",
"1 (14.5 oz.) Crushed Tomatoes",
"3 Whole Cloves",
"2-4 Chopped Cloves Garlic",
"2-4 Bay Leaves",
"1/2 tsp. Cinnamon",
"1 Cup Vinegar",
"1 Cup Olive Oil",
"Salt & Pepper to taste",
"4 Cups Water"
],
"instructions": [
"Wash meat and boil for 10 minutes.",
"Saute meat in oil.",
"Add all other ingredients, except onion.",
"Just cover meat with water and simmer for 1 hour over medium heat.",
"Add onions and simmer another hour.",
"Remember to keep the pot covered with a lid when simmering."
],
"meta": {
"author": "Mrs. Barbar Eleftheriou",
"title": "BaptistChurch",
"classification": "stew",
"year": "N/A",
"place": "TulsaOK",
"page": 31
}
},
{
"name": "Reduced Fat Moussaka",
"ingredients": [
"2 Large unpeeled Eggplant cut into 1/4 in. slices (about 2 Lb.)",
"2 Tbs. Olive oil",
"1/2 Clove Minced Garlic",
"1/2 Cup Chopped Onion",
"1 Lb. Ground Chuck",
"1 Cup Dry White Wine",
"1 (8 oz.) can Tomato Sauce",
"2 Tbs. Minced Parsley",
"1/4 Cup Grated Parmesan Cheese",
"1/2 tsp. Black Pepper",
"1/4 tsp. Salt",
"1/4 tsp. Gr. Parsley",
"1/4 tsp. Cinnamon",
"1/4 tsp. Cardamon",
"1 (12 oz.) can Evaporated Milk",
"1/2 Cup Chicken Broth"
],
"instructions": [
"Coat eggplant with olive oil and saute lightly until just golden brown set aside to drain.",
"Brown ground chuck, garlic and onion in a non-stick skillet until brown, stirring to crumble.",
"Drain well when brown.",
"Add wine and next six ingredients.",
"Cook 15 minutes, stirring occasionally.",
"Remove from heat and let cool.",
"Place flour in a saucepan.",
"Gradually add chicken broth, stirring with a wire whisk until smooth.",
"Gradually add milk to flour and chicken broth, whisking until smooth and well blended.",
"Stirring frequently, cook contents of saucepan over medium heat 10 minutes or until thickened into krema.",
"Arrange 1/3 of the eggplant in the bottom of a 12x8x2 inch baking dish.",
"Top with 1/3 of the meat mixture.",
"Spread 1/3 of the krema over the meat and top with 1/3 of the cheese.",
"Repeat the layers with the remaining ingredients.",
"Bake at 350 degrees for 30 minutes or until thoroughly heated."
],
"meta": {
"author": "Larry & Carolyn Poulakos",
"title": "BaptistChurch",
"classification": "casserole",
"year": "N/A",
"place": "TulsaOK",
"page": 32
}
},
{
"name": "ARAKAS ME AGINARES (Peas fit Artichokes)",
"ingredients": [
"3/4 Cup Olive Oil",
"1 (14.5 oz.) Can Diced Tomatoes",
"1 Tbs. Margarine Fresh Parsley or Dill",
"2 White Onions",
"Salt & Pepper to taste",
"4 Bunches Green Onion",
"2 pkg. frz. Artichokes",
"5 Cloves Garlic",
"2 pkg. frz. Peas",
"1 (14.5 oz.) Can Tomato Sauce",
"1 Can Mushrooms (optional)"
],
"instructions": [
"Saute onions and garlic.",
"Combine tomato sauce, 1/2 can water, diced tomatoes, 1/2 can water, parsley or dill, onions, garlic and mushrooms in a pot and simmer over low heat for 45 minutes.",
"In an oven safe pan, place vegetables with 1/2 cup water.",
"Pour sauce over vegetables.",
"Cover pan with foil and bake for 30 minutes in a 350 degree oven.",
"Uncover and continue to bake another 30 minutes.",
"You may use any vegetables that you like. If you use potatoes you will need to cook this a little longer."
],
"meta": {
"author": "Cathy Samouris",
"title": "BaptistChurch",
"classification": "side dish",
"year": "N/A",
"place": "TulsaOK",
"page": 33
}
},
{
"name": "AGDHARES (Microwave Artichokes)",
"ingredients": [
"1 can Artichokes",
"1 Small Onion",
"1/2 Cup Tomatoes",
"1/4 Cup Oil or Margarine"
],
"instructions": [
"Chop onion.",
"Put onion and oil (or margarine) in a microwave safe casserole dish.",
"Cook for 5 minutes on full power.",
"Put tomatoes in and cook for 3 more minutes.",
"Strain artichokes and rinse.",
"Put in with the rest of the ingredients.",
"Cook for 10 more minutes, stirring once.",
"Season with pepper.",
"Makes a very good side dish."
],
"meta": {
"author": "Eleonora Rieck",
"title": "BaptistChurch",
"classification": "side dish",
"year": "N/A",
"place": "TulsaOK",
"page": 33
}
},
{
"name": "Greek Style Greek Beaks",
"ingredients": [
"1 Lb. Fresh Green Beans or Frozen",
"1 Large Onion",
"1/2 Cup Oil",
"1 can Tomato Paste",
"1 Tbs. Parsley",
"1 Tbs. Oregano",
"1-2 Minced Garlic Cloves",
"Salt & Pepper"
],
"instructions": [
"Saute onions and green beans.",
"Then add all remaining ingredients and cook over low heat until beans are tender."
],
"meta": {
"author": "Stavros Hadjis",
"title": "BaptistChurch",
"classification": "side dish",
"year": "N/A",
"place": "TulsaOK",
"page": 34
}
},
{
"name": "Zucchdmi Byzaktbum",
"ingredients": [
"6 Zucchini",
"1/4 Cup Olive Oil",
"3 Crushed Cloves Garlic",
"1/2 tsp. Salt",
"1 1/2 Cups Plain Yogurt"
],
"instructions": [
"Wash and cut zucchini into 1/2 inch slices.",
"Heat oil and add zucchini.",
"Cook turning until lightly browned on both sides.",
"Drain on paper towel and place on serving platter.",
"Mix garlic, salt and stir into yogurt.",
"Spoon mixture over zucchini. Sprinkle with pepper.",
"Serve hot or cold. This makes 6 servings."
],
"meta": {
"author": "The Gasperettis",
"title": "BaptistChurch",
"classification": "side dish",
"year": "N/A",
"place": "TulsaOK",
"page": 34
}
},
{
"name": "Spahakorisa (Spinach and Rice)",
"ingredients": [
"2 Lb. Fresh Spinach",
"2 Onions",
"1 Clove Garlic",
"2 Bay Leaves",
"2 Cups Beef Broth",
"2 Tbs. Tomato Sauce",
"1/2 Cup Olive Oil",
"1 Tbs. Dill (or more)",
"1 Tbs. Mint",
"Salt & Pepper"
],
"instructions": [
"Wash and dry spinach. Tear spinach into pieces.",
"Saute onion, garlic and rice. Add tomato sauce, spinach and spices.",
"Add broth and simmer for 20 minutes.",
"Serve hot or cold."
],
"meta": {
"author": "Goldie Helgens",
"title": "BaptistChurch",
"classification": "main dish",
"year": "N/A",
"place": "TulsaOK",
"page": 35
}
},
{
"name": "Spahakorozo (Spinach & Rice)",
"ingredients": [
"1 (10 oz.) pkg. Frozen Spinach",
"1/2 Large Sweet Onion Chopped",
"1/4 Cup Olive Oil",
"1 Cup Rice",
"2 Cups Water",
"1-2 tsp. Dill",
"Salt & Pepper to taste"
],
"instructions": [
"Defrost spinach and drain well. Saute onion in olive oil.",
"Place all ingredients in a pot and bring to a boil.",
"Cover and reduce heat to simmer for 20 minutes.",
"During Lent you can omit the oil and parboil the onions."
],
"meta": {
"author": "Kay Escobedo",
"title": "BaptistChurch",
"classification": "main dish",
"year": "N/A",
"place": "TulsaOK",
"page": 35
}
},
{
"name": "DOLMATHES GEM1STA (Stuffed Tomatoes)",
"ingredients": [
"10 Tomatoes",
"2 Tbs. Chop Parsley",
"1/2 Stick Butter",
"1/4 Cup Veg. Oil",
"1 Onion Chopped",
"1/2 Cup Rice",
"1 1/2 Lb. Ground beef",
"1 Cup Water",
"Salt & Pepper",
"5 Potatoes",
"1 Clove Garlic Minced",
"1 Cup Tomato Sauce",
"3 Dashes Mint"
],
"instructions": [
"Wash tomatoes and cut off tops (save tops). Scoop out the pulp, place tomatoes in baking pan.",
"Saute onions in butter.",
"Add the meat, salt, pepper and garlic, to the skillet, brown meat.",
"Add tomato sauce, mint, parsley and rice. Allow to boil until the juice is absorbed.",
"Fill tomatoes and cover with tops.",
"Peel potatoes and cut into quarters. Place potatoes between tomatoes.",
"Pour oil over tomatoes and potatoes. Add water and cover with foil.",
"Bake at 350 degrees for 45 minutes.",
"Remove foil and bake for an additional 15 minutes or until the potatoes have some color."
],
"meta": {
"author": "Kathy Dimopoulos",
"title": "BaptistChurch",
"classification": "main dish",
"year": "N/A",
"place": "TulsaOK",
"page": 36
}
},
{
"name": "Lemohi Pilaf (Greek Lemon Rice)",
"ingredients": [
"3 Cups Rice",
"1/4 Cup Olive Oil",
"1/2 Cup Chopped Onions",
"1 Whole Lemon",
"Salt & Pepper to taste"
],
"instructions": [
"Saute chopped onion in olive oil until soft.",
"Add 3 cups water and bring to a boil.",
"Add rice and cook in covered pan for 20 minutes.",
"10 minutes before rice is done add the juice of 1/2 lemon.",
"If more lemon flavor is desired, squeeze second half of lemon.",
"Salt and pepper to taste."
],
"meta": {
"author": "Mary Paxton",
"title": "BaptistChurch",
"classification": "rice",
"year": "N/A",
"place": "TulsaOK",
"page": 37
}
},
{
"name": "Polaf A La Grecque",
"ingredients": [
"1 Lb. Ground Beef",
"1 Onion Chopped",
"1 Celery sliced",
"1/2 Cup Carrots, thinly sliced",
"1 (16 oz.) can Tomatoes",
"1/2 tsp. Salt",
"1 tsp. Oregano",
"1/4 tsp. Pepper",
"1/2 tsp. Garlic Powder",
"1 pkg. (10 oz.) Frozen Chopped Spinach",
"3 Cups Cooked Rice",
"Lemon Wedges",
"1/2 Cup Parmesan Cheese"
],
"instructions": [
"Saute first four ingredients.",
"Add the next five ingredients.",
"Stir in rice, cover and simmer 15-20 minutes.",
"Serve with lemon wedges and parmesan cheese."
],
"meta": {
"author": "The Gasperettis",
"title": "BaptistChurch",
"classification": "rice",
"year": "N/A",
"place": "TulsaOK",
"page": 37
}
},
{
"name": "Laconian Potatoes",
"ingredients": [
"6 Large White Potatoes",
"1 Tbs. Cinnamon",
"1/2 Cup Lemon Juice",
"1/3 Cup Olive Oil",
"Salt & Pepper",
"1 Tbs. Parsley",
"1 Tbs. Oregano"
],
"instructions": [
"Peel and cut potatoes to your own preferential size.",
"Add all other ingredients, mix well to coat all of the potatoes.",
"Bake at 350 degrees for 45 minutes or until lightly browned. You may add water as needed.",
"Variation- You may add 1 can of tomato paste or 1 can of crushed tomatoes."
],
"meta": {
"author": "Marilyn Eleftheriou",
"title": "BaptistChurch",
"classification": "side dish",
"year": "N/A",
"place": "TulsaOK",
"page": 38
}
},
{
"name": "Lemon Potatoes Greek Style",
"ingredients": [
"1/4 Cup Olive Oil",
"2 Tbs. Oregano",
"1 Whole Lemon",
"1/4 Cup Water",
"Salt & Pepper to taste",
"8 Large Potatoes"
],
"instructions": [
"Peel and cut potatoes into wedges.",
"Place cut potatoes into a large roasting pan.",
"Pour olive oil over potatoes and toss to coat well.",
"Squeeze 1/2 of the lemon over potatoes.",
"Add oregano, salt and pepper.",
"Toss well, add water.",
"Cook in covered roasting pan for 1 hour at 350 degrees, then uncover and cook at 450 degrees until golden brown."
],
"meta": {
"author": "Mary Paxton",
"title": "BaptistChurch",
"classification": "side dish",
"year": "N/A",
"place": "TulsaOK",
"page": 38
}
},
{
"name": "Kourabiedes (Butter Cookies)",
"ingredients": [
"2 Cups (1 Lb.) Sweet Unsalted Butter (room temperature)",
"3/4 Cup Confectioner's Sugar",
"2 Egg Yolks, lightly beaten",
"1 Jigger Brandy or Scotch Whiskey",
"1 Cup Walnuts or Blanched Almonds, Chopped",
"1 tsp. Baking Powder",
"4 Cups Flour, sifted",
"Confectioner's Sugar for topping",
"Cup-cake liners"
],
"instructions": [
"Cream butter until light, beating for 15 minutes.",
"Beat in sugar, egg yolks, flavoring and nuts.",
"Sift baking powder with flour and carefully blend into butter mixture.",
"Shape into small crescents or other shapes.",
"Place on cookie sheet and bake in a 375 degree oven for 15-20 minutes or until very light brown.",
"Cool cookies.",
"Sift confectioner's sugar on a large sheet of waxed paper.",
"Place cookies on the sugar and sift additional sugar over the tops and sides.",
"Place cookies in cup-cake liners (optional).",
"Freeze Kourabiedes without the powder sugar for later use."
],
"meta": {
"author": "Popi Bohren",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 39
}
},
{
"name": "KOURAMBIEDES (Grecian Delights)",
"ingredients": [
"1 Lb. Butter (3 1/2 stick sweetened and 1/2 stick salted)",
"2 Egg Yolks",
"1 Turkish Cup of Sugar (sifted)",
"1/2 tsp. Vanilla",
"9-10 Turkish Cups of Flour or as much as needed to form shapes"
],
"instructions": [
"Beat butter, egg yolks, sugar, vanilla, and just enough flour to form soft dough.",
"Roll dough into desired shapes.",
"Place Shapes on greased cookie sheets.",
"Bake at 350 degrees until light brown.",
"When 1/2 cooled, cover with powdered sugar."
],
"meta": {
"author": "Helen McDonald",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 40
}
},
{
"name": "KOULOURIA (Easter Cookies)",
"ingredients": [
"1/2 Lb. Butter",
"1 Cup Sugar",
"6 Egg Yolks",
"1/2 Cup Orange Juice",
"1 tsp. Whiskey",
"1/2 tsp. Baking Soda",
"2 1/2 tsp. Baking Powder",
"1 1/4 Lb. Cake Flour",
"1 Egg Yolk",
"1/4 tsp. Milk"
],
"instructions": [
"Using an electric mixer, beat butter until light and fluffy.",
"Add sugar and six egg yolks, continue beating.",
"Beat in juice, whiskey and sifted dry ingredients.",
"Continue adding flour until dough is of a consistency that can be shaped as desired.",
"Pinch off pieces the size of a small walnut.",
"Roll pieces on board lightly by hand to desired length and shape into wreaths or twist.",
"Beat remaining egg yolk with milk: brush mixture on top of unbaked cookies.",
"Bake at 350 degrees about 15 minutes or until lightly browned."
],
"meta": {
"author": "Tula Margellos",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 40
}
},
{
"name": "KOULOURAKIA (Twist Cookies)",
"ingredients": [
"1 Cup Butter",
"1 tsp. Crisco",
"2 Cup Sugar",
"6 Eggs",
"5 tsp. Baking Powder",
"2 tsp. Vanilla",
"1 Cup Lukewarm Milk",
"7 1/2 Cup Flour"
],
"instructions": [
"Beat butter, Crisco and sugar. Continue beating for 20 minutes.",
"Beat eggs in a separate bowl and add to the oil mixture.",
"Add vanilla.",
"Mix baking powder and soda with flour. Add to the mixture.",
"The dough has to be soft. Roll into rope and twist.",
"Brush each cookie with beaten egg and bake in 350 degree oven for 30 minutes."
],
"meta": {
"author": "Popi Bohren",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 41
}
},
{
"name": "KOULOURAKLA KRASATA (Wine Cookies)",
"ingredients": [
"3 Cups Olive Oil",
"2 Cups Red Wine",
"2 Cups Sugar",
"2 tsp. Baking Powder",
"3/4 tsp. Cinnamon",
"1/2 tsp. Baking Soda",
"1 Cup Sesame Seed",
"9 Cups Flour"
],
"instructions": [
"Mix oil with wine (not cooking wine) and sugar.",
"Add sesame seed. Set aside.",
"Mix flour with baking powder, soda and cinnamon.",
"Slowly combine the dry ingredients with the wine mixture.",
"Dough must be smooth. Form into 4 inch long thin log or circle shape.",
"Put on greased pan and bake in a 350 degree oven until light brown."
],
"meta": {
"author": "Maria Almpantaki",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 41
}
},
{
"name": "SESAME SEED COOKIES",
"ingredients": [
"1 1/2 Cups Water",
"2 Cinnamon Sticks",
"4 Whole Cloves",
"1 1/2 Cups Vegetable Oil",
"1 Cup Melted Crisco",
"4 tsp. Whiskey or Brandy",
"1 1/2 Cups Sugar",
"1 tsp. Baking Powder",
"3/4 tsp. Baking Soda",
"1/2 tsp. Salt",
"7 to 7 1/2 Cups Flour"
],
"instructions": [
"Boil water, cinnamon sticks and cloves for 5 minutes.",
"Beat oil and melted Crisco together. Add 3/4 cup of the cinnamon water to the oil and beat; add whiskey and all dry ingredients while beating.",
"Place sesame seed into a small bowl. Moisten a flat dish with a little sugar water. Place 1 tsp. of sesame seed in the dish.",
"Take a small walnut sized piece of dough into the palm of your hand; roll into 1 1/2 inch long log. Then roll into the sesame seed; smooth cookie in the palm of your hand and roll until 3 inches long. Shape into an 'S'.",
"Place on an ungreased cookie sheet. Bake in 375 degree preheated oven until light brown.",
"They can be stored in a glass jar for up to 3 months."
],
"meta": {
"author": "Kalliope Matheakis",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 42
}
},
{
"name": "Gemista Biskota (Carolinas Jam Cookies)",
"ingredients": [
"6 Cups Flour",
"2 Cups Sugar",
"1 Lb. Margarine",
"2 Eggs",
"5 Tbs. Hot Water",
"1 tsp. Baking Soda",
"1 tsp. Vanilla",
"1 Jar Strawberry Jam",
"3 Cups Powder Sugar"
],
"instructions": [
"Beat margarine and sugar for 5 minutes.",
"Add the eggs and continue beating while adding the vanilla and hot water.",
"Add 1 cup flour with the baking soda into the mixture.",
"Then 1 cup of flour at a time until all mixed in well.",
"Divide dough into 5 balls.",
"Roll them into 14x2 inch log, wrap in wax paper.",
"Refrigerate over night.",
"Slice each roll into a thin cookie and place them on a greased cookie sheet.",
"Bake at 375 degrees until light brown.",
"Let cookies cool.",
"Place bottoms of two cookies together with jam and roll in powdered sugar.",
"These cookies freeze well."
],
"meta": {
"author": "Eleonora Rieck",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 43
}
},
{
"name": "Melomakarouha (Sweet-Spiced Cookie in Honey)",
"ingredients": [
"1/2 Lb. Unsalted Butter (room temperature)",
"1/4 tsp. Cinnamon",
"1/4 tsp. Gr. Cloves",
"3/4 Cups Mazola Oil",
"1/2 tsp. Baking Powder",
"3/4 Cup Freshly squeezed Orange Juice",
"1/2 Cup Chopped Walnuts",
"3/4 tsp. Baking Soda",
"4 1/2 Cups Flour",
"3/4 Cup Powdered Sugar",
"1 Tbs. Whiskey",
"1 tsp. Grated Orange or Lemon peel",
"1 Cup Honey",
"1/4 Cup Water",
"1 Cup Finely Chopped Walnuts",
"1 tsp. Lemon Juice"
],
"instructions": [
"In a mixing bowl combine butter and oil, beat for 5 minutes, add sugar while beating.",
"Dissolve soda in orange juice holding over the mixing bowl until it fizzes and pour into the mixture.",
"Add whiskey and grated orange or lemon peel.",
"Mix cinnamon, cloves, baking powder in one cup of flour and add it to the mixture.",
"Add chopped walnuts and remaining flour while beating until all the flour is mixed well. If dough is too sticky, you can add about 1/4 cup of flour.",
"Take a walnut size piece of dough at a time and form an oval. Shape bar by rolling them between your palms.",
"Place cookies on greased cookie sheet. Bake at 375 degrees for 25-30 minutes or until light golden color. Remove from oven and let them cool.",
"Slowly heat syrup ingredients over low heat until boiling. Keep heat low, dip cookies four at a time in syrup for 50 seconds."
],
"meta": {
"author": "N/A",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 44
}
},
{
"name": "Melomacarona (Honey Dainties)",
"ingredients": [
"3 Cups Vegetable Oil",
"1 Cup Sugar",
"1 Cup Orange Juice",
"6 Tbs. Cognac",
"1/2 tsp. Baking Soda",
"1 tsp. Baking Powder",
"Pinch of Cinnamon",
"3 1/3 Lb. Sifted Flour",
"1 1/2 Cup Honey",
"1/2 Cup Sugar",
"1 Cup Water",
"1 Lemon Wedge",
"1 1/2 Cup Ground Walnuts",
"2 - 3 Tbs. Sugar",
"Cinnamon"
],
"instructions": [
"Beat oil and sugar until creamy. Add orange juice.",
"Dissolve soda in cognac and add to oil along with cinnamon.",
"Combine flour and baking powder.",
"Gradually add flour mixture to creamy mixture.",
"Knead to make a soft dough. The entire amount of flour may not be needed.",
"Pinch off small portions of dough and form into oblong rolls.",
"Bake on greased cookie sheet in a 350 degree oven for 30 to 40 minutes or until browned.",
"Prepare syrup by boiling all ingredients together for 2 to 3 minutes.",
"Remove any foam that forms on top of syrup.",
"Dip melomacarona into hot syrup for 2 or 3 minutes.",
"Remove with slotted spoon and place on platter.",
"Combine topping ingredients and sprinkle over warm melomacarona."
],
"meta": {
"author": "Anna Panagos",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 45
}
},
{
"name": "Melomacaroha",
"ingredients": [
"1/2 Cup Corn Oil",
"1/2 Cup Butter",
"1 Egg Yolk",
"1/2 Cup Powdered Sugar",
"1 oz. Whiskey",
"Juice of 1/2 Lemon",
"Juice of 1/2 Orange",
"1/2 tsp. Baking Soda",
"1/2 tsp. (Heaping) Baking Powder",
"3 1/2 Cup Cake Flour",
"1/2 Cup Honey",
"1 Egg Yolk",
"1 tsp. Powder Sugar",
"1/4 Cup Chopped Walnuts",
"1/4 tsp. Cinnamon"
],
"instructions": [
"Beat butter and oil for 15 minutes at medium speed with electric mixer (for portable mixer use high speed).",
"Add egg yolk and sifted powdered sugar; beat.",
"Blend in sifted dry ingredients, juices and whiskey.",
"Form soft balls the size of a walnut; pat flat and place a dab of filling in the center.",
"Fold over to form a half circle shape; seal edges with tines of a fork.",
"Bake 15 minutes at 350 degrees.",
"When cooled, and just before serving, dip cookies into a mixture of 1/2 cup of hot honey and 1 tablespoon water.",
"Sprinkle with chopped walnuts."
],
"meta": {
"author": "Tula Margellos",
"title": "BaptistChurch",
"classification": "cookie",
"year": "N/A",
"place": "TulsaOK",
"page": 46
}
},
{
"name": "KARETHATO",
"ingredients": [
"1 1/2 Lb. Chopped Pecans",
"1 Tbs. Rose Water",
"2 Cups Sugar",
"1 Cup Water",
"4 sq. Unsweetened Chocolate",
"Maraschinos Cherries (3 large jars)",
"5 Tbs. Dry Bread, Ground to powder"
],
"instructions": [
"Bring water, sugar, and rose water to a boil. Boil 5 minutes then add chocolate.",
"Turn off flame and stir until chocolate melts.",
"Mix nuts and ground bread.",
"Add chocolate syrup and mix.",
"Cool slightly and roll into a ball with powdered sugar.",
"Depress center and add a cherry.",
"Shape into a pear with the help of powdered sugar. The stem of the cherry will stick out. It will resemble a pear. This recipe makes 60 to 75 pieces."
],
"meta": {
"author": "Helen Lasho",
"title": "BaptistChurch",
"classification": "candy",
"year": "N/A",
"place": "TulsaOK",
"page": 47
}
},
{
"name": "Baklava",
"ingredients": [
"6 Cups Chopped Walnuts",
"1 tsp. Cinnamon",
"1/2 tsp. Ground Cloves",
"1 Lb. Unsalted Butter",
"1 Lb. Filo Pastry (Melted)",
"4 Cups Sugar",
"2 Cups Water",
"5 Whole Cloves",
"2 Cinnamon Sticks",
"Juice of 1/2 Lemon"
],
"instructions": [
"Combine the chopped walnuts, cinnamon and cloves. Set aside.",
"Start layers of filo dough, to fit in a 18x12 inch baking pan. Keep the filo covered at all times with a damp dish cloth. Otherwise, it will dry out quickly.",
"Brush the baking pan with melted butter. Lay 6 sheets of filo in the pan (brushing each sheet with the melted butter).",
"Sprinkle with 1 1/2 cups of the nut mixture. Repeat layers with 3 sheets of filo, brushing each one with butter. Sprinkle more nuts and repeat until all the nut mixture is gone.",
"Make sure you have 8 remaining filo sheets for the top. Brush each layer with the melted butter until all the filo is gone.",
"Put in the freezer for 5 minutes to cool the pastry. Take the pastry out of the freezer. Using the tip of a sharp knife, cut through the top eight layers making a diamond shape pattern.",
"Bake for 45 minutes to 1 hour at 325 degrees or until the top is lightly golden. Remove from oven and cool for 15 minutes.",
"Syrup: Prepare syrup before making Baklava. Combine the sugar, water, cloves, cinnamon sticks and lemon juice in a sauce pan and simmer for 15 minutes.",
"Pour cold syrup over the warm Baklava. Let set for 2 hours and cut through all the layers, following the diamond shape pattern made earlier. Let stand over night uncovered before serving."
],
"meta": {
"author": "Eleonora Rieck",
"title": "BaptistChurch",
"classification": "pastry",
"year": "N/A",
"place": "TulsaOK",
"page": 48
}
},
{
"name": "Saragli (Rolled Baklava)",
"ingredients": [
"1 Lb. Pastry Sheets",
"2 tsp. Cinnamon",
"1 1/2 Lb. Chopped Walnuts",
"1 Lb. Unsalted Butter",
"2 Cups Sugar",
"1 tsp. Lemon Juice",
"1 Cup Water"
],
"instructions": [
"Boil sugar, water and lemon juice until slightly thickened. Let cool as you prepare the saragli.",
"Combine nuts with cinnamon. Sprinkle nut mixture on first pastry sheet.",
"Add pastry sheet and continue in this manner until all are used. About 3-4 sheets in each roll.",
"Roll tightly lengthwise. Cut in one inch rolls and arrange on a cookie sheet, cut side down.",
"Melt butter and drizzle over rolls.",
"Bake at 350 degrees about 40 minutes.",
"Drain butter. Pour cooled syrup over hot rolls."
],
"meta": {
"author": "Mary Dalamaggas",
"title": "BaptistChurch",
"classification": "pastry",
"year": "N/A",
"place": "TulsaOK",
"page": 49
}
},
{
"name": "GALOPFTA (Custard)",
"ingredients": [
"1 qt. Milk",
"1/2 Cup Farina",
"1 Cup Sugar",
"1 Stick Margarine",
"6 Eggs",
"1 tsp. Vanilla",
"Cinnamon for top"
],
"instructions": [
"Place milk and sugar in sauce pan. Cook over low heat until milk is warm.",
"Slowly add farina Stir until mixture is thick.",
"Add butter and remove from heat, allow to cool.",
"Separate eggs and beat the yolks with the vanilla until creamy.",
"Beat the whites until stiff.",
"Combine both egg mixtures together, add this to the cooled milk.",
"Pour into a greased 9x13 pan, bake at 350 degrees for 30 to 45 minutes.",
"When done, sprinkle cinnamon on the top."
],
"meta": {
"author": "Mary Moscrip",
"title": "BaptistChurch",
"classification": "custard",
"year": "N/A",
"place": "TulsaOK",
"page": 50
}
},
{
"name": "GALATOBOUmXO (Custard Pastry)",
"ingredients": [
"6 Cups Whole Milk",
"1 Lb. Filo",
"8 Eggs Slightly Beaten",
"1 Lb. Melted Butter",
"2 Cups Sugar",
"1 Cup Farina (or plain Cream of Wheat)",
"2 Tbs. Melted Butter",
"2 tsp. Vanilla",
"3 Cups Sugar",
"2 Cups Water",
"1 tsp. Lemon Juice"
],
"instructions": [
"Combine eggs, farina, and sugar.",
"Heat milk and slowly add to the egg mixtures stirring constantly.",
"Cook over low flame stirring constantly until mixture has thickened.",
"Add butter and vanilla, then cool.",
"Grease your baking pan with melted butter.",
"Place 8 pastry sheets which have been individually brushed with butter, in bottom of pan.",
"Pour slightly cooled mixture over pastry sheets and top with 8 more individually buttered sheets.",
"Fold in pastry sheets edges to retain mixture.",
"Gently cut through top layers of pastry sheets and bake in 375 degree oven for 15 minutes then reduce heat to 350 degrees for 30 minutes.",
"While this is baking prepare syrup.",
"Boil Sugar, water and lemon juice until a medium syrup is formed.",
"Cool syrup and pour over custard immediately upon removing from oven.",
"For best results, make the syrup a day ahead."
],
"meta": {
"author": "Kay Escobedo",
"title": "BaptistChurch",
"classification": "pastry",
"year": "N/A",
"place": "TulsaOK",
"page": 51
}
},
{
"name": "RIZOGALO (Race Pudding)",
"ingredients": [
"1/3 Cup Water",
"2 Eggs",
"1/3 Cup Rice",
"1 tsp. Vanilla",
"1 qt. Milk",
"1/4 Cup Butter",
"Dash of Salt",
"Cinnamon",
"3/4 Cup Sugar"
],
"instructions": [
"Cook rice in boiling water until water is absorbed.",
"Add hot milk and cook slowly until rice is tender.",
"Add sugar and heat until dissolved. Remove pan from heat.",
"In a bowl beat eggs and add a little hot mixture.",
"Add butter. Stir until melted and blended.",
"Slowly pour back into rice mixture. Return to heat and stir until creamy.",
"Add vanilla mix and pour into serving bowls.",
"Sprinkle with cinnamon, cool and enjoy."
],
"meta": {
"author": "Presbytera Anna Lillies",
"title": "BaptistChurch",
"classification": "pudding",
"year": "N/A",
"place": "TulsaOK",
"page": 52
}
},
{
"name": "RIZOGALO (Greek Style Rice Pudding)",
"ingredients": [
"1/2 Cup Washed Rice",
"1 Egg Yolk",
"1 Cup of Water",
"1 Tbs. Butter",
"1 qt. Milk",
"Cinnamon",
"1/2 Cup Sugar",
"1 Tsp. Vanilla",
"Grated Rind of 1/2 Lemon",
"1 tsp. Cornstarch of in tap Water"
],
"instructions": [
"Cook the washed rice in 1 cup boiling water for 10 minutes or until the water is absorbed.",
"Add the quart of milk and bring back to a boil.",
"Cook gently with reduced heat for 30 minutes, stirring to keep from burning.",
"Add the sugar, grated lemon rind, and the cornstarch which has been dissolved in the water.",
"Cook another 10 minutes, add the butter.",
"Cook about 2 minutes more before spooning into dessert dishes.",
"Sprinkle with cinnamon before serving.",
"This dessert may be refrigerated and served with cream (American Style)."
],
"meta": {
"author": "Edie Yerington",
"title": "BaptistChurch",
"classification": "pudding",
"year": "N/A",
"place": "TulsaOK",
"page": 53
}
},
{
"name": "FRESH APPLE CRDSP",
"ingredients": [
"6 or more apples, sliced, cored and peeled",
"Sugar",
"Cinnamon",
"1 Cup Flour",
"1 tsp. Baking Powder",
"3/4 tsp. Salt",
"1 Unbeaten Egg",
"1/3 cup butter"
],
"instructions": [
"Place in a greased pan 6 or more apples, sliced, cored and peeled.",
"Sprinkle with sugar and cinnamon.",
"Mix together with fork until crumbly and sprinkle over apples the following ingredients: 1 Cup Flour, 1 tsp. Baking Powder, 3/4 tsp. Salt, 1 Unbeaten Egg.",
"Spread over apples.",
"Melt 1/3 cup butter and pour over mixture.",
"Sprinkle with cinnamon.",
"Bake 35-40 minutes in a 350 degree oven."
],
"meta": {
"author": "Helen McDonald",
"title": "BaptistChurch",
"classification": "dessert",
"year": "N/A",
"place": "TulsaOK",
"page": 53
}
},
{
"name": "KARETHOPETA (Walnut Cake)",
"ingredients": [
"2 Cups Sugar",
"2 Cups Water",
"Juice from 1 Lemon",
"1/2 Lb. Sweet Butter",
"3/4 Cup Chopped Walnuts",
"1 3/4 Cups Sugar",
"4 tsp. Baking Powder",
"2 Cups Flour",
"8 Eggs",
"1 1/2 tsp. Cinnamon",
"Rind of 1 Orange",
"Juice of 2 Oranges",
"1 Jigger Brandy"
],
"instructions": [
"Bring to a boil 2 cups of sugar, 2 cups of water, and juice from 1 lemon. Cook for 15 minutes and cool. This is best if prepared ahead of the cake.",
"Cream butter and add sugar gradually.",
"Sift 1 cup of flour add baking powder and cinnamon. Mix into butter mixture and add eggs 1 or 2 at a time. Mix well.",
"Add second cup flour, orange rind, juice and brandy, mix well.",
"Add nuts.",
"Pour into a greased 9x13 cake pan and bake at 350 degrees for 40 minutes or until done.",
"Ladle cooled syrup over warm cake (if syrup is warm cake must be cool)."
],
"meta": {
"author": "Cathy Samouris",
"title": "BaptistChurch",
"classification": "cake",
"year": "N/A",
"place": "TulsaOK",
"page": 54
}
},
{
"name": "KARDDOPFTA",
"ingredients": [
"10 Eggs",
"2 1/2 Cup Ground Walnuts",
"1 1/2 Cup Sugar",
"3 tsp. Baking Powder",
"1 Cup Ground Zwieback",
"1 tsp. Vanilla",
"1/2 cup water",
"1 cup sugar",
"almond flavoring",
"1 tsp. lemon juice"
],
"instructions": [
"Beat eggs until light. Add sugar and beat.",
"Slowly blend in walnuts, zwieback, baking powder and vanilla.",
"Pour batter into greased rectangle cake pan.",
"Bake 30 to 35 minutes at 350 degrees.",
"Bring to boil 1/2 cup water and 1 cup sugar. Add a little almond flavoring and 1 tsp. lemon juice.",
"Cool syrup. Pour over cake as soon as cake is out of the oven.",
"Cool cake before serving."
],
"meta": {
"author": "Tula Margellos",
"title": "BaptistChurch",
"classification": "cake",
"year": "N/A",
"place": "TulsaOK",
"page": 55
}
},
{
"name": "EASY LEMON CAKE",
"ingredients": [
"1 box Duncan Hines Lemon Supreme Cake Mix",
"3/4 Cup Water",
"1 small box Lemon Jello",
"4 Eggs",
"3/4 Cup Vegetable Oil",
"2 Cups Powder Sugar",
"Juice of 2 Lemons"
],
"instructions": [
"Mix well and set aside.",
"Empty cake mix, eggs, jello, and water into mixing bowl.",
"Beat with electric mixer. After well blended, add oil and mix well again.",
"Pour in a greased 9 x 13 cake pan.",
"Bake at 350 degrees for 35 to 40 minutes or until done.",
"With large fork, poke wholes in top of cake and pour syrup over the cake."
],
"meta": {
"author": "Cathy Samouris",
"title": "BaptistChurch",
"classification": "cake",
"year": "N/A",
"place": "TulsaOK",
"page": 55
}
},
{
"name": "Greek Lemon Ravani",
"ingredients": [
"1 2 layer Lemon Cake Mix",
"1 Cup Farina or Cream of Wheat",
"1 Cup Milk",
"5 Eggs",
"1/2 Cup Oil",
"1 Cup Chopped Walnuts",
"2 Cups Sugar",
"1 Cup Water",
"Juice of 1/2 Lemon",
"1 pinch of Cinnamon"
],
"instructions": [
"Boil all syrup ingredients for 10 minutes, set aside to cool.",
"Blend cake mix and farina. Add milk, eggs and oil.",
"Mix in walnuts and pour into a greased 9x13 cake pan.",
"Bake at 350 degrees for 30-45 minutes.",
"Remove cake from oven and pour cooled syrup over the top of the hot cake."
],
"meta": {
"author": "Mary Moscrip",
"title": "BaptistChurch",
"classification": "cake",
"year": "N/A",
"place": "TulsaOK",
"page": 56
}
},
{
"name": "Ravani Me Simigdali",
"ingredients": [
"1 Cup Sugar",
"1 Cup Vegetable Oil",
"1 Cup Cream of Wheat",
"2 Cup Flour",
"5 Eggs",
"3 tsp. Baking Powder",
"3 Cups Sugar",
"Lemon or Orange Zest",
"4 Cups Water",
"1/2 tsp. Cinnamon"
],
"instructions": [
"Beat oil with sugar for 5 minutes. Add eggs and continue beating.",
"Add cream of wheat and lemon.",
"Mix flour with baking powder and add to the mixture.",
"Pour into buttered pan and bake in a 350 degree oven for 45-50 minutes.",
"Meanwhile, prepare syrup. Mix all syrup ingredients together and simmer 15 minutes.",
"Take cake out of oven. Pour cooled syrup over warm cake."
],
"meta": {
"author": "Popi Bohren",
"title": "BaptistChurch",
"classification": "cake",
"year": "N/A",
"place": "TulsaOK",
"page": 56
}
},
{
"name": "GIAOURTOPITA (Yogurt Cake)",
"ingredients": [
"1 Cup Sugar",
"4 Eggs",
"1 tsp. Baking Powder",
"1 tsp. Baking Soda",
"4 tsp. Vanilla",
"2 Cups Yogurt",
"1 Cup Finely Chopped Almonds",
"Zest of one Lemon",
"4 Cup Flour"
],
"instructions": [
"Beat butter with sugar.",
"Beat eggs in a separate bowl and add to the mixture.",
"Add yogurt, vanilla, almonds and lemon zest.",
"Mix flour with baking soda and baking powder.",
"Slowly add to the mixture. Mix well.",
"Pour mixture into a greased cake pan and bake at 350 degrees for 30 minutes."
],
"meta": {
"author": "Popi Bohren",
"title": "BaptistChurch",
"classification": "cake",
"year": "N/A",
"place": "TulsaOK",
"page": 57
}
},
{
"name": "NOSTISQMO CAKE (Lenten Cake)",
"ingredients": [
"3/4 Cup Oil",
"1 1/2 Cup Orange Juice",
"1 1/4 Cup Sugar",
"3 1/4 Cup Flour",
"1 Cup Walnuts",
"1 Cup Raisins",
"2 1/2 tsp. Baking Powder",
"1/4 tsp. Baking Soda",
"1/2 tsp. Cinnamon",
"1/2 tsp. Nutmeg",
"1/2 tsp. Gr. Clove"
],
"instructions": [
"Mix oil, sugar, orange juice and water.",
"Mix baking powder with flour and the rest of the spices and add to the oil mixture.",
"Add walnuts and raisins, mix well.",
"Bake in a 350 degree oven for 1 hour.",
"Before baking, sprinkle with walnuts."
],
"meta": {
"author": "Popi Bohren",
"title": "BaptistChurch",
"classification": "cake",
"year": "N/A",
"place": "TulsaOK",
"page": 57
}
}
] |