chipotle.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Chipotle Menu</title>
  6. <link rel="shortcut icon" href="/csh/favicon.ico" type="image/x-icon"/>
  7. <link rel="stylesheet" type="text/css" href="/csh/stylesheet.css"/>
  8. </head>
  9. <body>
  10. <header>
  11. <p><a href="/csh"><img src="/csh/homeicon" alt="csh"/></a></p>
  12. </header>
  13. <h1>Chipotle</h1>
  14. <p>
  15. There are a few options I like to get at Chipotle. Usually, I get
  16. the veggie burrito or bowl. When I want to splurge, I get the
  17. Sofritas burrito.</p>
  18. <h2 id="veggieburrito"><a href="#veggieburrito">Veggie Burrito</a></h2>
  19. <ol>
  20. <li>Veggie burrito</li>
  21. <li>Double brown rice</li>
  22. <li>Double black beans</li>
  23. <li>Double pinto beans</li>
  24. <li><em>No fajitas</em></li>
  25. <li>All three salsas: hot, medium and mild</li>
  26. <li><em>No cheese or sour cream</em></li>
  27. <li>Corn</li>
  28. <li><abbr title="Guacamole">Guac</abbr> on the side</li>
  29. <li>Lettuce</li>
  30. <li>Double-wrap</li>
  31. </ol>
  32. <h2 id="veggiebowl"><a href="#veggiebowl">Veggie Bowl</a></h2>
  33. <ol>
  34. <li><em>Five</em> corn tortillas on the side</li>
  35. <li>Double black beans</li>
  36. <li>Double pinto beans</li>
  37. <li><em>No fajitas</em></li>
  38. <li>All three salsas: hot, medium and mild</li>
  39. <li><em>No cheese or sour cream</em></li>
  40. <li>Corn</li>
  41. <li><abbr title="Guacamole">Guac</abbr> on the side</li>
  42. <li>Lettuce</li>
  43. </ol>
  44. <h2 id="sofritasburrito"><a href="#sofritasburritos">Sofritas Burrito</a></h2>
  45. <ol>
  46. <li>Sofritas burrito</li>
  47. <li>Double brown rice</li>
  48. <li>Double black beans</li>
  49. <li>Double pinto beans</li>
  50. <li>Fajitas</li>
  51. <li>All three salsas: hot, medium and mild</li>
  52. <li><em>No cheese or sour cream</em></li>
  53. <li>Corn</li>
  54. <li><abbr title="Guacamole">Guac</abbr></li>
  55. <li>Lettuce</li>
  56. <li>Double-wrap</li>
  57. </ol>
  58. <hr/>
  59. <footer>
  60. <p>Last updated: 2017-11-11 00:16:51 CST.</p>
  61. <p>
  62. Copyright 2017 Caleb Herbert under the terms of the
  63. <a href="https://creativecommons.org/licenses/by/4.0/">Attribution
  64. 4.0 International</a> license.</p>
  65. </footer>
  66. </body>
  67. </html>