Fixed gitignore
This commit is contained in:
parent
f441940e8c
commit
6edc612ed6
20
.gitignore
vendored
20
.gitignore
vendored
@ -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
|
||||
|
||||
BIN
app/interface/static/interface/icon.png
Normal file
BIN
app/interface/static/interface/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 258 B |
29
app/interface/static/interface/js/interface.js
Normal file
29
app/interface/static/interface/js/interface.js
Normal 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');
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
@ -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>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user