glossary.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {% extends "base_template.html" %}
  2. {% block head %}
  3. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
  4. <link rel="stylesheet" type="text/css" href="/static/glossary.css">
  5. {% endblock %}
  6. {% block body %}
  7. <div class="container">
  8. <h1>Glossary</h1>
  9. <dl>
  10. <dt>Adventure Cycling Assoc. (n.)</dt>
  11. <dd>a nonprofit based in Missoula, MT, that advocates for bicycle tourers</dd>
  12. <dt>bivy sack (n.)</dt>
  13. <dd>also, bivy. A minimal tent for a single sleeper. Enough coverage to lie down and... that's all. I
  14. brought it as a lighter alternative to a full blown tent. The size and shape of a sleeping bag. Really
  15. just an insulating layer around a sleeping bag</dd>
  16. <dt>bonk (v.)</dt>
  17. <dd>to neglect to eat the right amount at the right time and subsequently run entirely out of enery
  18. (usu.) when going up a hill</dd>
  19. <dt>lugged bike frame (n.)</dt>
  20. <dd>an apparently appealing feature of old bike frames. i was unaware of what this was until it was
  21. pointed out to me maybe a dozen times that my bike had it</dd>
  22. <dt>pork chop sandwich (n.)</dt>
  23. <dd>delicious meal invented in Montana</dd>
  24. <dt>recumbent bike (n.)</dt>
  25. <dd>a funky bike; favored by weird old dudes; its use in the TABR is not controversia</dd>
  26. <dt>tabr (n.)</dt>
  27. <dd>an annual race where a bunch of lunatics ride the TransAm trail as fast as they can, carrying
  28. little, hardly sleeping, finishing the route in as fast as 16 days</dd>
  29. <dt>TransAmerica Bicycle Trail (n.)</dt>
  30. <dd>a bike route from Astoria, OR, to Yorktown, VA, developed in 1976 by a bunch of hippies for the
  31. "bikecentennial"</dd>
  32. <dt>velomobile (n.)</dt>
  33. <dd>a funky bike; its use in the TABR is mildly controversial</dd>
  34. <dt>Wisconsin Dells, the (n.)</dt>
  35. <dd>Wisconsin Hells, the</dd>
  36. <dt>zero day (n.)</dt>
  37. <dd>when you put in <em>zero</em> miles for a day; sometimes for rest,
  38. sometimes to spend time in a fun place; usu. the former</dd>
  39. </dl>
  40. </div>
  41. {% endblock %}