57 lines
2.4 KiB
HTML
57 lines
2.4 KiB
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Zk | Bidnis.</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 | Bidnis.</h1>
|
||
|
</header>
|
||
|
<article class="content">
|
||
|
<p>Inspired by my friend John, I thought I'd look into starting up a little business project of my own. It started with wanting to follow along in his footsteps and do my own recording business (or at least take over a portion of <a href="http://audiointuition.com">his recording business</a> when he graduated), but soon branched out into the uninventively-named MJS Services. Recently, I got it into my crazy little head that I should go ahead and plan out each of the different parts of the business, so I cobbled together a <a href="http://mjs-svc.com/mjs-publishing_plan-clean.pdf">business plan</a> for the.. er.. publishing division. In LaTeX, no less :oP Oh well.</p>
|
||
|
<p>I still think I should make it a business cooperative with each score as a sub-company that people buy shares in instead of buying licenses of a product :D:D:D *dumb</p>
|
||
|
<span class="control">Expand all</span>
|
||
|
</article>
|
||
|
<footer>
|
||
|
<p>Page generated on 2008-02-23 22:18:46</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>
|