templates/about.html.twig line 1

Open in your IDE?
  1. <head>
  2.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  3.     <script src="js/CookpotHelper.js?v=2.0"></script>
  4.     <link rel="stylesheet" type="text/css" href="css/Layout.css">
  5.     <link rel="stylesheet" type="text/css" href="css/Home.css?v=2.5">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  8.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
  9.     
  10.     <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
  11.     <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
  12.     
  13.     {% include('header.html.twig') %}
  14. </head>
  15. <body style="margin:0px;background-color:#fcf2e6;">
  16.     <div class="container" style="margin-top:25%">
  17.         <div class="row">
  18.             <div class="col-sm"> 
  19.                 <h1>
  20.                     Discover recipes from the ingredients you have available! Drag the ingredients into the pot and discover
  21.                     new recipes!
  22.                 </h1>
  23.                 <br>
  24.                 <h1>
  25.                     At CooknChefs.com, we believe that every ingredient in your kitchen holds the potential for a 
  26.                     delicious meal. Our mission is to help you unlock that potential. Whether you've got a full fridge
  27.                     or a just handful of items, our innovative platform allows you to drag and drop these ingredients
  28.                     and discover mouth-watering recipes from around the globe.
  29.                 </h1>
  30.                 <br>
  31.                 <h1>
  32.                     Our site is more than just a collection of recipes—it's a community where creativity meets cuisine. 
  33.                     Join us in the joy of cooking and turn your everyday ingredients into extraordinary experiences!
  34.                 </h1>
  35.             </div>
  36.         </div>
  37.     </div>
  38. </body>
  39. <style>
  40.     .main-navbar {
  41.         display: none;
  42.     }
  43.     .mobile-main-navbar {
  44.         display: block;
  45.     }
  46.     @media (min-width: 651px) {
  47.         .main-navbar {
  48.             display: block;
  49.         }
  50.         
  51.         .mobile-main-navbar {
  52.             display: none;
  53.         }
  54.     }
  55. </style>