57 lines
2.6 KiB
HTML
57 lines
2.6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | Bikestuffs, again.</title>
|
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<header>
|
|
<h1>Zk | Bikestuffs, again.</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>So I made the drive down to Peloton today and picked up a pair of CrankBrothers Eggbeater SL pedals and a pair of around-town shoes. At first, though I liked a lot of the features of the pedals, I wasn't too impressed with some aspects when I used them with my road shoes. When I tried them with the new shoes, however, all of those problems disappeared. Reading some, it looks like there are <a href="http://www.blueskycycling.com/product3519_36_-Crank-Brothers-Egg-Beater-Road-Cleats.htm">different cleats</a> you can get to use with road shoes so that you don't have any of those problems. I'll see how they are in a month, but right now, they get an A (no +, since it'd be great if they worked just straight up with my road shoes). The shoes are nice, too, though nothing too special. A little tight now, but I'm sure the padding will break in nicely.</p>
|
|
<p>I'll be heading down to the shop again this weekend, maybe, to look into a few other little purchases</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2008-02-28 03:15:40</p>
|
|
</footer>
|
|
</main>
|
|
<script type="text/javascript">
|
|
document.querySelectorAll('li').forEach(el => {
|
|
if (el.querySelectorAll('li').length !== 0) {
|
|
el.classList.add('has-nested', 'closed');
|
|
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
|
|
}
|
|
});
|
|
document.querySelectorAll('.toc .has-nested').forEach(el => {
|
|
el.classList.remove('has-nested', 'closed');
|
|
});
|
|
document.querySelectorAll('li.has-nested').forEach(el => {
|
|
el.querySelector('.toggle').addEventListener('click', () => {
|
|
el.classList.toggle('closed');
|
|
});
|
|
});
|
|
let expanded = false;
|
|
document.querySelector('.control').addEventListener('click', (e) => {
|
|
expanded = !expanded;
|
|
if (expanded) {
|
|
e.target.innerText = 'Collapse all';
|
|
} else {
|
|
e.target.innerText = 'Expand all';
|
|
}
|
|
document.querySelectorAll('.has-nested').forEach((el) => {
|
|
if (expanded) {
|
|
el.classList.remove('closed');
|
|
} else {
|
|
el.classList.add('closed')
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|