others,unsorted,fonts
This commit is contained in:
parent
31ff3aba22
commit
2813c8fb13
1 changed files with 15 additions and 4 deletions
19
build.py
19
build.py
|
@ -82,9 +82,9 @@ def main():
|
|||
<label for="tab/my/thesis">Thesis</label>
|
||||
<div>{tabs['thesis']}</div>
|
||||
<input type="radio" onclick="update(id)"
|
||||
name="tab/my" id="tab/my/unsorted" />
|
||||
<label for="tab/my/unsorted">Unsorted</label>
|
||||
<div>{tabs['unsorted']}</div>
|
||||
name="tab/my" id="tab/my/others" />
|
||||
<label for="tab/my/others">…</label>
|
||||
<div>{tabs['others']}</div>
|
||||
</div></div>
|
||||
<input type="radio" onclick="update(id)"
|
||||
name="tab" id="tab/books" />
|
||||
|
@ -135,6 +135,10 @@ def main():
|
|||
<label for="tab/videos/vegan">Vegan</label>
|
||||
<div>{tabs['vegan']}</div>
|
||||
</div></div>
|
||||
<input type="radio" onclick="update(id)"
|
||||
name="tab" id="tab/unsorted" />
|
||||
<label for="tab/unsorted">…</label>
|
||||
<div>{tabs['unsorted']}</div>
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
@ -665,6 +669,7 @@ tabs = {
|
|||
<li>categorize music</li>
|
||||
<li>fix dark switch</li>
|
||||
<li>implement search</li>
|
||||
<li>switch fonts</li>
|
||||
</ul>
|
||||
''',
|
||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
|
@ -718,7 +723,7 @@ tabs = {
|
|||
</ul>
|
||||
''',
|
||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
'unsorted': f'''\
|
||||
'others': f'''\
|
||||
<ul>
|
||||
<li><a href="https://bsky.app/profile/marc-beninca.bsky.social">Blue Sky</a></li>
|
||||
<li><a href="https://buymeacoffee.com/marc.beninca">Buy Me A Coffee</a></li>
|
||||
|
@ -754,6 +759,12 @@ tabs = {
|
|||
<li><a href="">KissBank</a></li>
|
||||
</ul>
|
||||
''',
|
||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
'unsorted': f'''\
|
||||
<ul>
|
||||
<li><a href="https://foss.events">FOSS Events</a></li>
|
||||
</ul>
|
||||
''',
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue