64 lines
2.2 KiB
HTML
64 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | Gun Wish List</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 | Gun Wish List</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>In no particular order...</p>
|
|
<p>• Ruger Mk. II
|
|
• <strong>Kimber (+ .22 LR conversion kit)</strong>
|
|
• Fiddly pistol (Makarov, H&K USP, Taurus 99?)
|
|
• <strong>Hunting/Target rifle (with scope; .223 rem, .243 rem, .308 win, .30-30, .30-06? Remington Model 700?)</strong>
|
|
• Surplus Rifle (AK, Mauser, Mosin-Nagant?)
|
|
• Plinking rifle (with scope? Marlin Model 60, Ruger 10/22, .17 HMR?)</p>
|
|
<p>Boldface = new :3</p>
|
|
<p>In other news, I filled a graph with herbs/flavors based on the temperature/humidity/color index I use for constructing dishes. I'll figure out some way to post it</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2008-06-24 06:37:31</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>
|