{"id":2,"date":"2026-08-03T09:34:54","date_gmt":"2026-08-03T09:34:54","guid":{"rendered":"https:\/\/bamiyanrestaurantqld.com\/?page_id=2"},"modified":"2026-08-08T03:56:05","modified_gmt":"2026-08-08T03:56:05","slug":"our-menu","status":"publish","type":"page","link":"https:\/\/bamiyanrestaurantqld.com\/","title":{"rendered":"Our Menu"},"content":{"rendered":"\n<style data-wp-block-html=\"css\">\n\/* Wrapper *\/\n.menu-toggle-container {\n  max-width: 900px;\n  margin: 0 auto;\n  font-family: sans-serif;\n  padding: 0 20px;\n}\n\n\/* Search Bar Styles *\/\n.menu-search-wrapper {\n  margin-bottom: 25px;\n}\n#menuSearch {\n  width: 100%;\n  padding: 14px 20px;\n  font-size: 16px;\n  border: 2px solid #eee;\n  border-radius: 8px;\n  box-sizing: border-box;\n  transition: border-color 0.3s ease;\n}\n#menuSearch:focus {\n  outline: none;\n  border-color: #8B0000;\n}\n\n\/* Tab Button Styles *\/\n.menu-buttons-wrapper { \n  display: flex; \n  gap: 15px; \n  margin-bottom: 40px; \n}\n.menu-btn {\n  flex: 1; \n  padding: 15px 20px; \n  cursor: pointer; \n  background-color: transparent;\n  border: 2px solid #8B0000; \n  color: #8B0000; \n  font-size: 18px; \n  font-weight: 600;\n  transition: all 0.3s ease; \n  text-transform: uppercase; \n  letter-spacing: 1px;\n}\n.menu-btn:hover, .menu-btn.active { \n  background-color: #8B0000; \n  color: #fff; \n}\n\n\/* Content area styling *\/\n.menu-section { \n  display: none; \n  animation: fadeIn 0.5s; \n}\n.menu-section.active-section {\n  display: block;\n}\n\n\/* Image Placeholder Styles *\/\n.menu-item-photo {\n  width: 100%;\n  height: 200px;\n  object-fit: cover;\n  border-radius: 8px;\n  margin-bottom: 12px;\n  display: block;\n}\n\n\/* Typography and Layout *\/\n.menu-category-title { \n  color: #8B0000; \n  border-bottom: 2px solid #eee; \n  padding-bottom: 10px; \n  margin-top: 40px; \n  margin-bottom: 20px; \n  font-size: 24px; \n}\n.menu-grid { \n  display: grid; \n  grid-template-columns: 1fr; \n  gap: 20px; \n}\n.menu-item { \n  display: flex; \n  flex-direction: column; \n  padding-bottom: 15px; \n  border-bottom: 1px dashed #ccc; \n}\n.menu-header { \n  display: flex; \n  justify-content: space-between; \n  font-weight: 700; \n  font-size: 1.1em; \n  color: #333; \n}\n.menu-desc { \n  font-size: 0.9em; \n  color: #666; \n  margin-top: 5px; \n  line-height: 1.4; \n}\n\n@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }\n\n\/* Two columns on larger screens *\/\n@media (min-width: 768px) { \n  .menu-grid { grid-template-columns: 1fr 1fr; gap: 40px; } \n}\n<\/style>\n\n<script data-wp-block-html=\"js\">\ndocument.addEventListener('DOMContentLoaded', function() {\n  \n  \/\/ 1. Tab Switching Feature\n  const btnDineIn = document.getElementById('btn-dine-in');\n  const btnTakeaway = document.getElementById('btn-takeaway');\n  const secDineIn = document.getElementById('dine-in');\n  const secTakeaway = document.getElementById('takeaway');\n\n  function switchMenu(menuType) {\n    if(menuType === 'dine-in') {\n      btnDineIn.classList.add('active');\n      btnTakeaway.classList.remove('active');\n      secDineIn.classList.add('active-section');\n      secTakeaway.classList.remove('active-section');\n    } else {\n      btnTakeaway.classList.add('active');\n      btnDineIn.classList.remove('active');\n      secTakeaway.classList.add('active-section');\n      secDineIn.classList.remove('active-section');\n    }\n    \/\/ Clear search when switching tabs for a fresh view\n    document.getElementById('menuSearch').value = '';\n    document.getElementById('menuSearch').dispatchEvent(new Event('input'));\n  }\n\n  btnDineIn.addEventListener('click', () => switchMenu('dine-in'));\n  btnTakeaway.addEventListener('click', () => switchMenu('takeaway'));\n\n  \/\/ 2. Live Search Filter Feature\n  const searchInput = document.getElementById('menuSearch');\n  \n  searchInput.addEventListener('input', function(e) {\n    const searchTerm = e.target.value.toLowerCase();\n    \n    \/\/ Find only the items within the currently active tab\n    const activeSection = document.querySelector('.menu-section.active-section');\n    const items = activeSection.querySelectorAll('.menu-item');\n    \n    items.forEach(item => {\n      const text = item.textContent.toLowerCase();\n      \/\/ Show or hide based on search term\n      if(text.includes(searchTerm)) {\n        item.style.display = 'flex';\n      } else {\n        item.style.display = 'none';\n      }\n    });\n    \n    \/\/ Hide category titles if all items beneath them are filtered out\n    const categories = activeSection.querySelectorAll('h3.menu-category-title');\n    categories.forEach(category => {\n      let hasVisibleItem = false;\n      const grid = category.nextElementSibling;\n      \n      if (grid && grid.classList.contains('menu-grid')) {\n        const gridItems = grid.querySelectorAll('.menu-item');\n        gridItems.forEach(gridItem => {\n          if(gridItem.style.display !== 'none') {\n            hasVisibleItem = true;\n          }\n        });\n      }\n      \n      category.style.display = hasVisibleItem || searchTerm === '' ? 'block' : 'none';\n    });\n  });\n\n});\n<\/script>\n\n<div class=\"menu-toggle-container\">\n  \n  <!-- EXTRA FEATURE: Live Search Bar -->\n  <div class=\"menu-search-wrapper\">\n    <input type=\"text\" id=\"menuSearch\" placeholder=\"Search for a dish (e.g., Chicken, Pallow, Spinach)...\">\n  <\/div>\n\n  <!-- Tab Buttons -->\n  <div class=\"menu-buttons-wrapper\">\n    <button class=\"menu-btn active\" id=\"btn-dine-in\">Dine In Menu<\/button>\n    <button class=\"menu-btn\" id=\"btn-takeaway\">Takeaway Menu<\/button>\n  <\/div>\n\n  <!-- DINE IN MENU -->\n  <div id=\"dine-in\" class=\"menu-section active-section\">\n    <h3 class=\"menu-category-title\">Kababs<\/h3>\n    <div class=\"menu-grid\">\n      \n      <div class=\"menu-item\">\n\n        <!-- <img decoding=\"async\" src=\"https:\/\/yourwebsite.com\/wp-content\/uploads\/tikka-kabab.jpg\" alt=\"Tikka Kababs\" class=\"menu-item-photo\"> -->\n        \n        <div class=\"menu-header\"><span>Tikka Kababs<\/span><span>$32.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani tikka kababs with lamb back strap pieces marinated with onion, garlic and herbs cooked in tandoor. Served with a choice of rice or naan, salad and vegetable chutney.<\/div>\n      <\/div>\n      \n      <div class=\"menu-item\">\n        <!-- <img decoding=\"async\" src=\"YOUR_IMAGE_LINK_HERE.jpg\" alt=\"Seekh Kababs\" class=\"menu-item-photo\"> -->\n        <div class=\"menu-header\"><span>Seekh Kababs<\/span><span>$30.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani seekh kababs marinated lamb mince cooked in tandoor. Served with a choice of rice or naan, salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <!-- <img decoding=\"async\" src=\"YOUR_IMAGE_LINK_HERE.jpg\" alt=\"Chicken Kababs\" class=\"menu-item-photo\"> -->\n        <div class=\"menu-header\"><span>Chicken Kababs<\/span><span>$30.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani chicken kababs with chicken pieces marinated with onion, garlic and herbs cooked in tandoor. Served with a choice of rice or naan, salad and chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <!-- <img decoding=\"async\" src=\"YOUR_IMAGE_LINK_HERE.jpg\" alt=\"Mixed Kababs\" class=\"menu-item-photo\"> -->\n        <div class=\"menu-header\"><span>Mixed Kababs<\/span><span>$37.90<\/span><\/div>\n        <div class=\"menu-desc\">A mixture of traditional afghani chicken, seekh and tikka kababs. Served with a choice of rice or naan, salad and vegetable chutney.<\/div>\n      <\/div>\n    <\/div>\n\n    <h3 class=\"menu-category-title\">Specialities<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\">\n        <!-- <img decoding=\"async\" src=\"YOUR_IMAGE_LINK_HERE.jpg\" alt=\"Mantu\" class=\"menu-item-photo\"> -->\n        <div class=\"menu-header\"><span>Mantu (Beef-Dumplings)<\/span><span>$21.90<\/span><\/div>\n        <div class=\"menu-desc\">Afghani favourite with beef mince, chopped onions, shallots and spices. topped with yoghurt sauce, yellow lentils in tomato-based sauce and garnished with coriander. Served with yoghurt sauce.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <!-- <img decoding=\"async\" src=\"YOUR_IMAGE_LINK_HERE.jpg\" alt=\"Kachaloo Perikee\" class=\"menu-item-photo\"> -->\n        <div class=\"menu-header\"><span>Kachaloo Perikee<\/span><span>$11.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani flat bread pan fried with potato, chopped onion, shallots, and spices. Served with yoghurt sauce.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <!-- <img decoding=\"async\" src=\"YOUR_IMAGE_LINK_HERE.jpg\" alt=\"Kima Perikee\" class=\"menu-item-photo\"> -->\n        <div class=\"menu-header\"><span>Kima Perikee<\/span><span>$15.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani flat bread pan fried with beef minces, chopped onion, shallots, and spices. Served with yoghurt sauce.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <!-- <img decoding=\"async\" src=\"YOUR_IMAGE_LINK_HERE.jpg\" alt=\"Palak Perikee\" class=\"menu-item-photo\"> -->\n        <div class=\"menu-header\"><span>Palak Perikee<\/span><span>$11.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani flat bread pan fried with fresh spinach, chopped onion, shallots, and spices. Served with yoghurt sauce.<\/div>\n      <\/div>\n    <\/div>\n\n    <h3 class=\"menu-category-title\">Curries<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Kabuli Pallow Chicken<\/span><span>$30.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani rice slowly cooked flavoured with cumin and filled with chicken pieces topped with julienne caramelized carrots, sultanas, almonds and nuts. Served with salad.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Kabuli Pallow with Lamb<\/span><span>$32.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani rice slowly cooked flavoured with cumin and cardamon, filled with lamb pieces topped with julienne with julienne caramelized carrots, sultanas, almonds and nuts. Served with salad.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Kurooti<\/span><span>$28.90<\/span><\/div>\n        <div class=\"menu-desc\">Pieces of chicken gently massaged with yoghurt and an innovative blend with chef&#8217;s special spices.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Kurooti<\/span><span>$30.90<\/span><\/div>\n        <div class=\"menu-desc\">Pieces of lamb gently massaged with yoghurt and an innovative blend with chef&#8217;s special spices.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Kofta Pallow<\/span><span>$29.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani meatballs cooked with rich tomato-based sauce. Served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Curry<\/span><span>$29.90<\/span><\/div>\n        <div class=\"menu-desc\">Chicken pieces cooked in tomato-based sauce with herbs and spices. Served with naan bread.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Beef Curry<\/span><span>$31.90<\/span><\/div>\n        <div class=\"menu-desc\">Beef pieces cooked in tomato-based sauce with herbs and spices. Served with naan bread.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Curry<\/span><span>$33.90<\/span><\/div>\n        <div class=\"menu-desc\">Lamb pieces cooked in tomato-based sauce with herbs and spices. Served with naan bread.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Karahi<\/span><span>$30.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani dish cooked with boneless chicken, chef&#8217;s special spices, tomato based sauce finished with onion, yoghurt and capsicum. Served with naan bread, salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Beef Karahi<\/span><span>$32.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani dish cooked with cubes of beef, chef&#8217;s special spices and tomato based sauce finished with onion, yoghurt and capsicum. Served with naan bread, salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Karahi<\/span><span>$34.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani dish cooked with boneless lamb, chef&#8217;s special spices, tomato based sauce finished with onion, yoghurt and capsicum. Served with naan bread, salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Sabiz Pallow<\/span><span>$26.90<\/span><\/div>\n        <div class=\"menu-desc\">Boneless chicken cooked with spinach and mild spicy sauce. Served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Beef Sabiz Pallow<\/span><span>$28.90<\/span><\/div>\n        <div class=\"menu-desc\">Boneless beef cooked with spinach and mild spicy sauce. Served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Sabiz Pallow<\/span><span>$30.90<\/span><\/div>\n        <div class=\"menu-desc\">Boneless lamb cooked with spinach and mild spicy sauce. Served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Nakhut Korma Pallow<\/span><span>$26.90<\/span><\/div>\n        <div class=\"menu-desc\">Boneless chicken thigh fillet cooked with chickpeas in rich tomato-based sauce Seasoned with fresh herbs and spices. Served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Beef Nakhut Korma Pallow<\/span><span>$28.90<\/span><\/div>\n        <div class=\"menu-desc\">Cubes of beef cooked with chickpeas in rich tomato-based sauce gravy, seasoned with fresh herbs and spices. Served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Nakhut Korma Pallow<\/span><span>$30.90<\/span><\/div>\n        <div class=\"menu-desc\">Cubes of lamb cooked with chickpeas in rich tomato-based sauce gravy, seasoned with fresh herbs and spices. Served with rice.<\/div>\n      <\/div>\n    <\/div>\n\n    <h3 class=\"menu-category-title\">Vegetarian Curries<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Banjan Boranee<\/span><span>$25.90<\/span><\/div>\n        <div class=\"menu-desc\">Fried eggplant covered with tomato-based sauce, garnished with coriander. Served with yoghurt sauce.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Loobia Korma Pallow<\/span><span>$23.90<\/span><\/div>\n        <div class=\"menu-desc\">Chef&#8217;s specials korma sauce with red kidney beans, spices and herbs garnished with coriander. Served with rice, salad and chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Nakhut Korma Pallow<\/span><span>$23.90<\/span><\/div>\n        <div class=\"menu-desc\">Chickpeas cooked with special korma sauce and special spices garnished with coriander. Served with rice, salad and chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Daal Pallow<\/span><span>$23.90<\/span><\/div>\n        <div class=\"menu-desc\">Yellow lentils cooked with chef&#8217;s special sauce, garlic and spices. Served with rice, salad and chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Sabzi (Spinach)<\/span><span>$21.90<\/span><\/div>\n        <div class=\"menu-desc\">Fresh spinach slow cooked with onion, tomatoes, spring onion, garlic and cumin.<\/div>\n      <\/div>\n    <\/div>\n\n    <h3 class=\"menu-category-title\">Sides &#038; Drinks<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Rice<\/span><span>$8.50<\/span><\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Kabuli Rice<\/span><span>$9.50<\/span><\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Naan<\/span><span>$6.50<\/span><\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Garlic Naan<\/span><span>$7.50<\/span><\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Sauces<\/span><span>$4.50<\/span><\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Drinks<\/span><span>$3.99<\/span><\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Doogh<\/span><span>$14.90<\/span><\/div><\/div>\n    <\/div>\n  <\/div>\n\n  <!-- TAKEAWAY MENU -->\n  <div id=\"takeaway\" class=\"menu-section\">\n    <h3 class=\"menu-category-title\">Kababs<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Tikka Kabab<\/span><span>$28.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani Tikka with Lamb back strap pieces marinated with onion, garlic and herbs cooked in Tandoor. Served with rice\/nan, salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Seekh Kababs<\/span><span>$26.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani Seekh Kabab marinated lamb mince cooked in Tandoor. Served with rice\/nan salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Kababs<\/span><span>$26.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani Chicken Kabab marinated boneless pieces of chicken cooked in Tandoor. Served with rice\/nan, salad and chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Mixed Kababs<\/span><span>$35.90<\/span><\/div>\n        <div class=\"menu-desc\">A mixture of traditional Afghani Chicken, Seekh and Tikka Kabab marinated boneless pieces cooked in Tandoor. Served with rice\/nan, salad and vegetable chutney.<\/div>\n      <\/div>\n    <\/div>\n\n    <h3 class=\"menu-category-title\">Specialities<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Mantu (Beef-Dumplings)<\/span><span>$19.90<\/span><\/div>\n        <div class=\"menu-desc\">Afghani family favourite with ground beef, onions and spring onions filled dumplings topped with yoghurt sauce, yellow lentils in a tomato based sauce and garnished with ground chilli.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Kachaloo Perikee<\/span><span>$10.50<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani flat bread pan fried, filled with potato, chopped onion shallot, coriander and spices served with yoghurt sauce.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Kima Perikee<\/span><span>$13.50<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani flat bread pan fried, filled with beef mince, chopped onion shallot, coriander and spices served with yoghurt sauce.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Palak Perikee<\/span><span>$10.50<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani flat bread pan fried, filled with fresh spinach, chopped onion shallot, coriander and spices served with yoghurt sauce.<\/div>\n      <\/div>\n    <\/div>\n\n    <h3 class=\"menu-category-title\">Curries<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Nakhut Korma Pallow<\/span><span>$26.90<\/span><\/div>\n        <div class=\"menu-desc\">Lamb pieces cooked with chickpeas in rich tomato gravy, seasoned with fresh herbs and spices served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Kurooti<\/span><span>$24.90<\/span><\/div>\n        <div class=\"menu-desc\">Pieces of chicken cooked with yoghurt and as innovative blend with chef&#8217;s special spices and served with cream sauce.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Kurooti<\/span><span>$27.90<\/span><\/div>\n        <div class=\"menu-desc\">Pieces of lamb cooked with yoghurt and as innovative blend with chef&#8217;s special spices and cooked on a gentle flame finished with cream sauce.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Kofta Pallow<\/span><span>$25.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani meat balls cooked with rich tomato base sauce and served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Kabuli Pallow<\/span><span>$26.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani rice slowly cooked flavoured with cumin powder &#038; cardamom, filled with chicken pieces topped with a layer of Julian caramelized carrots, sultana and a mix of almond and sunflower seeds. Served with salad.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Kabuli Pallow with lamb pieces.<\/span><span>$28.90<\/span><\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Curry<\/span><span>$25.90<\/span><\/div>\n        <div class=\"menu-desc\">Chicken pieces cooked in tomato based sauce with herbs and spices. Served with Naan bread.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Beef Curry<\/span><span>$26.90<\/span><\/div>\n        <div class=\"menu-desc\">Beef pieces cooked in tomato based sauce with herbs and spices. Served with Naan bread.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Curry<\/span><span>$30.90<\/span><\/div>\n        <div class=\"menu-desc\">Lamb pieces cooked in tomato based sauce with herbs and spices. Served with Naan bread.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Karahi<\/span><span>$27.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani dish cooked with boneless chicken, chef&#8217;s special spices, tomato base sauce finished with onion, tomato and capsicum served with Naan bread, salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Beef Karahi<\/span><span>$29.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani dish cooked with beef cubes, chef&#8217;s special spices, tomato base sauce finished with onion, tomato and capsicum served with Naan bread, salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Karahi<\/span><span>$31.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani dish cooked with boneless lamb, chef&#8217;s special spices, tomato base sauce finished with onion, tomato and capsicum served with Naan bread, salad and vegetable chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Sabzi Pallow<\/span><span>$22.90<\/span><\/div>\n        <div class=\"menu-desc\">Chicken pieces cooked with garlic, ginger, tomato base sauce and mild spices then cooked with spinach, served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Beef Sabzi Pallow<\/span><span>$24.90<\/span><\/div>\n        <div class=\"menu-desc\">Beef cubes cooked with garlic, ginger, tomato base sauce and mild spices then cooked with spinach, served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Lamb Sabzi Pallow<\/span><span>$26.90<\/span><\/div>\n        <div class=\"menu-desc\">Lamb cubes with garlic, ginger, tomato base sauce and mild spices then cooked with spinach, served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Chicken Nakhut Korma Pallow<\/span><span>$22.90<\/span><\/div>\n        <div class=\"menu-desc\">Boneless chicken thigh fillet cooked with chickpeas in rich tomato gravy, seasoned with fresh herbs and spices, served with rice.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Beef Nakhut Korma Pallow<\/span><span>$24.90<\/span><\/div>\n        <div class=\"menu-desc\">Beef cubes cooked with chickpeas in rich tomato gravy, seasoned with fresh herbs and spices served with rice.<\/div>\n      <\/div>\n    <\/div>\n\n    <h3 class=\"menu-category-title\">Vegetarian Curries<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Banjan Boranee<\/span><span>$23.90<\/span><\/div>\n        <div class=\"menu-desc\">Traditional Afghani dish with fried eggplant covered with cooked tomato sauce and yoghurt sauce, garnished with mint.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Loobia Korma Pallow<\/span><span>$21.90<\/span><\/div>\n        <div class=\"menu-desc\">Chef special korma sauce with red kidney beans, mild spices and herbs garnished with coriander, served with rice, salad and chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Nakhut Korma Pallow<\/span><span>$21.90<\/span><\/div>\n        <div class=\"menu-desc\">Chickpea cooked with special korma sauce and medium spices garnished with coriander, served with rice, salad and chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Daal Pallow<\/span><span>$21.90<\/span><\/div>\n        <div class=\"menu-desc\">Yellow lentils cooked with chef&#8217;s special sauce, tempering of freshly pounded garlic masalas served with rice, salad and chutney.<\/div>\n      <\/div>\n      <div class=\"menu-item\">\n        <div class=\"menu-header\"><span>Sabzi (Spinach)<\/span><span>$21.90<\/span><\/div>\n        <div class=\"menu-desc\">Fresh spinach slow cooked with spring onion and a tempering of chopped garlic and cumin.<\/div>\n      <\/div>\n    <\/div>\n\n    <h3 class=\"menu-category-title\">Sides<\/h3>\n    <div class=\"menu-grid\">\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Naan (Bread)<\/span><span>$5.50<\/span><\/div><div class=\"menu-desc\">Traditional bread slow cooked by the chef.<\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Garlic Naan (Bread)<\/span><span>$6.50<\/span><\/div><div class=\"menu-desc\">Traditional bread slow cooked by the chef with fresh tasty garlic.<\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Rice<\/span><span>$7.50<\/span><\/div><div class=\"menu-desc\">Best quality Basmati rice cooked and topped with saffron rice and barberries.<\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Kabuli Rice<\/span><span>$8.50<\/span><\/div><div class=\"menu-desc\">Best quality Basmati rice cooked and topped with caramelized carrots, sultanas and a mix of almond and sunflower seeds.<\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Salad<\/span><span>$4.50<\/span><\/div><div class=\"menu-desc\">Diced fresh vegetables such as tomato, cucumber, onion, lettuce and a slice of lemon.<\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Yoghurt Sauce<\/span><span>$4.50<\/span><\/div><div class=\"menu-desc\">The chef&#8217;s special yoghurt sauce.<\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Chutney<\/span><span>$4.50<\/span><\/div><div class=\"menu-desc\">A spicy blend of flavors with a yoghurt base that lightens the taste buds.<\/div><\/div>\n      <div class=\"menu-item\"><div class=\"menu-header\"><span>Vegetable Chutney<\/span><span>$4.50<\/span><\/div><div class=\"menu-desc\">A spicy blend of flavors with fresh vegetables that lighten the taste buds.<\/div><\/div>\n    <\/div>\n  <\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Dine In Menu Takeaway Menu Kababs Tikka Kababs$32.90 Traditional Afghani tikka kababs with lamb back strap pieces marinated with onion, garlic and herbs cooked in tandoor. Served with a choice of rice or naan, salad and vegetable chutney. Seekh Kababs$30.90 Traditional Afghani seekh kababs marinated lamb mince cooked in tandoor. Served with a choice of [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/bamiyanrestaurantqld.com\/index.php?rest_route=\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bamiyanrestaurantqld.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bamiyanrestaurantqld.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bamiyanrestaurantqld.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bamiyanrestaurantqld.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2"}],"version-history":[{"count":5,"href":"https:\/\/bamiyanrestaurantqld.com\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":62,"href":"https:\/\/bamiyanrestaurantqld.com\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions\/62"}],"wp:attachment":[{"href":"https:\/\/bamiyanrestaurantqld.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}