Skip to content

Commit 5285c9e

Browse files
committed
Add in first day of original BBTXL
Also start to add some formatting, as well as an example of text and images side-by-side.
1 parent e391d01 commit 5285c9e

File tree

4 files changed

+42
-1
lines changed

4 files changed

+42
-1
lines changed

bbtxl.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" href="styles.css">
5+
</head>
6+
<body>
7+
<h1>Original BBTXL</h1>
8+
<p>The trip that started it all! Over 3 days we visited Dark Horse, Bell's, and ended at New Holland. It started in Ann Arbor on 2012/05/25 and ended in Holland on 2012/05/27. Instead of meticulously clicking point by point in an online mapping applications, the route cue sheets were written on graph paper, scanned, and printed.</p>
9+
<p>It was a simpler time.</p>
10+
11+
<h3>Day 1: Ann Arbor to Marshall</h3>
12+
<div class="flex">
13+
<div class="column">
14+
<p>We biked west, so these maps read right-to-left. The bottom map is the second half of the route for the first day.</p>
15+
</div>
16+
<div class="column">
17+
<img src="img/bbtxl2012_day1.png" alt="day 1 route"/>
18+
</div>
19+
</div>
20+
</body>
21+
</html>
22+

img/bbtxl2012_day1.png

492 KB
Loading

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h1>What is Bicycle Beer Time eXtra Large?</h1>
66
<p>For many of us, this was our first experience bike touring. We generally camp overnight (preferably somewhere with a shower or a fresh body of water) and seek out breweries as food stops.</p>
77
<p>It's hard to explain the magic of these trips. Imagine your day being reduced to biking with 15-20 of your friends, punctuated with good meals, ice cream stops, and (of course) craft beers.</p>
88
<p>This site documents these trips, and hopefully inspires you to plan your own trip!</p>
9-
<h3>(2012) BBTXL (Ann Arbor, MI to Holland, MI)</h3>
9+
<h3><a href="bbtxl.html">(2012) BBTXL (Ann Arbor, MI to Holland, MI)</a></h3>
1010
<h3><a href="mi.html">(2013) BBTXL: BLU MI (Ann Arbor, MI to Bellaire, MI)</a></h3>
1111
<h3><a href="fingerlakes.html">(2014) BBTXL: Finger Lakes (Jamestown, NY to Fair Haven, NY)</a></h3>
1212
<h3><a href="norcal.html">(2015) BBTXL: Nor Cal (Trinidad, CA to San Francisco, CA)</a></h3>

styles.css

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
body {
2+
margin: 3em;
3+
}
4+
5+
p {
6+
margin: 1em;
7+
}
8+
9+
h3 {
10+
padding-top: 1em;
11+
}
12+
13+
.flex {
14+
display: flex;
15+
}
16+
17+
.column {
18+
flex: 50%
19+
}

0 commit comments

Comments
 (0)