Fixed gitignore

This commit is contained in:
Tris Forster 2023-03-02 12:30:39 +11:00
parent f441940e8c
commit 6edc612ed6
4 changed files with 42 additions and 11 deletions

20
.gitignore vendored
View File

@ -1,13 +1,15 @@
__pycache__
*.pyc
db.sqlite3
*.sqlite3
credentials.json
credentials
local_settings.py
env
old
test.*
static
teststore
cache
local_storage
media
.coverage
/env
/data
/old
/static
/teststore
/cache
/local_storage
/media

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

View File

@ -0,0 +1,29 @@
document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = document.getElementById(el.dataset.target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
target.classList.toggle('is-hidden-touch');
});
});
// set all active links
const here = location.toString();
for (const el of document.getElementsByTagName('a')) {
if (el.href == here) {
el.classList.add('is-active');
}
}
});

View File

@ -23,8 +23,8 @@
<nav class="navbar" role="navigation">
<div class="navbar-brand has-text-primary">
<a class="navbar-item" href="/">
<span class="icon fancy is-size-2 imx-4"><i class="fas fa-random"></i></span>
<span class="fancy is-size-2 is-size-4-touch">Polyphonic</span>
<span class="icon fancy is-size-2 is-size-4-mobile mx-4"><i class="fas fa-random"></i></span>
<span class="fancy is-size-2 is-size-4-mobile">Polyphonic</span>
</a>
<span class="navbar-item is-hidden-mobile fancy is-size-5">Musical Ensemble Manager</span>