You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.2 KiB
HTML
61 lines
2.2 KiB
HTML
2 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>Workbook</title>
|
||
|
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/global.css') }}">
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/workbook.css') }}" />
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
|
||
|
|
||
|
<header>
|
||
|
<a href="{{url_for('home')}}" class="parent">Home</a>
|
||
|
<span class="path-slash">
|
||
|
/
|
||
|
</span>
|
||
|
<h2 class="title">Workbook</h2>
|
||
|
<div class="search">
|
||
|
<svg class="icon" width="31" height="33" viewBox="0 0 31 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||
|
<line x1="20.0607" y1="22.9393" x2="29.0607" y2="31.9393" stroke="currentColor" stroke-width="3"/>
|
||
|
<circle cx="13" cy="13" r="11.5" stroke="currentColor" stroke-width="3"/>
|
||
|
</svg>
|
||
|
<input type="text" name="search" id="search" />
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<ul class="instruments list">
|
||
|
<li class="card"><a href="new-instrument.html">
|
||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||
|
<line x1="25" y1="4.37114e-08" x2="25" y2="48" stroke="currentColor" stroke-width="3"/>
|
||
|
<line x1="48" y1="25" x2="-8.74228e-08" y2="25" stroke="currentColor" stroke-width="3"/>
|
||
|
</svg>
|
||
|
</a>
|
||
|
</li>
|
||
|
<li class="card"><a href="{{url_for('patches', instrument='all')}}">All</a></li>
|
||
|
|
||
|
<li class="card"><a href="{{url_for('patches', instrument='bastl-kastle-drum')}}">Bastl Kastle Drum</a></li>
|
||
|
<li class="card"><a href="{{url_for('patches', instrument='bastl-kastle-v1.5')}}">Bastl Kastle v1.5</a></li>
|
||
|
|
||
|
<li class="card"><a href="#microgranny">Bastl Microgranny 2</a></li>
|
||
|
<li class="card"><a href="#vellman.html">Vellman Signal Generator</a></li>
|
||
|
<li class="card"><a href="#microkorg.html">Microkorg</a></li>
|
||
|
<li class="card"><a href="#breadboard.html">Breadboard synth</a></li>
|
||
|
<li class="card"><a href="#coil.html">Coil</a></li>
|
||
|
<li class="card"><a href="{{url_for('patches', instrument='jian')}}">Jian</a></li>
|
||
|
|
||
|
|
||
|
</ul>
|
||
|
</main>
|
||
|
|
||
|
|
||
|
|
||
|
</body>
|
||
|
|
||
|
|
||
|
</html>
|