Made image-sized quadratic again, for the images to honor the aspect ratio. Will be cropped in thumbnails anyway.

This commit is contained in:
Marcus Scholz 2020-08-03 21:57:42 +02:00
parent e74bdd58d2
commit f69f137402

View File

@ -140,8 +140,8 @@ LOGOUT_REDIRECT_URL = 'home'
THUMBNAIL_ALIASES = {
'': {
'thumbnail': {'size': (390, 220), 'crop': True},
'hero': {'size': (700, 400), 'crop': True},
'large': {'size': (1920, 1080), 'crop': True},
'thumbnail': {'size': (300, 300), 'crop': False},
'hero': {'size': (700, 700), 'crop': False},
'large': {'size': (1920, 1920), 'crop': False},
},
}