Compare commits

...

3 Commits

Author SHA1 Message Date
j eff50be75f Merge branch 'master' into orestiada 2019-11-07 17:07:36 +01:00
j cb76d29f0b link logo/icon 2019-11-07 17:07:15 +01:00
j 70a8392793 load site css 2019-11-07 11:02:49 +01:00
2 changed files with 14 additions and 1 deletions

View File

@ -33,6 +33,19 @@ for root, folders, files in os.walk(join(base, 'static')):
os.makedirs(target_folder)
os.symlink(rel_src, target)
for img in ('logo.png', 'icon.png'):
f = join('/srv/pandora/static/png', img)
custom = join('/srv/pandora/static/png', img.replace('.png', '.%s.png' % name))
if os.path.exists(custom):
if not os.path.islink(f):
os.unlink(f)
else:
path = os.path.realpath(f)
if name not in path:
os.unlink(f)
if not os.path.exists(f):
os.symlink(os.path.basename(custom), f)
if overwrite:
os.chdir('/srv/pandora/static/js')
for filename, sitename in overwrite:

View File

@ -291,7 +291,7 @@ pandora.ui.home = function() {
if (loadedCSS) {
callback()
} else {
Ox.getFile('/static/css/home.css', function() {
Ox.getFile('/static/css/home.collectivecinema.css', function() {
loadedCSS = true
callback()
})